@charset "UTF-8";
:root {
  --container_size_md:800px;
  --container_size_lg:928px;
  --container_size_xl:1200px;
  --title-color:#001921;
  --text_shadow: 1px 1px 1px rgba(255, 255, 255, 1);
}

sup {
  font-size: 0.6em !important;
}

code {
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 2px;
  padding: 2px 4px;
}

blockquote {
  --bg_color:#F9F9F9;
  position: relative;
  background: var(--bg_color);
  padding: 2.5em 1.5em 2em 2em;
}
blockquote::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -10px;
  left: 0;
  width: 60px;
  aspect-ratio: 1;
  background: url(../img/icon-bq.svg) no-repeat;
  background-size: 100%;
}
blockquote cite {
  display: block;
  font-size: 0.8rem;
  padding: 10px;
  text-align: right;
  border-top: 1px solid #CCCCCC;
}
@media screen and (min-width: 768px) {
  blockquote {
    padding: 2.5em 2.5em 2em 3em;
  }
}

/* 共通タグスタイル
------------------------------- */
.post-body {
  -webkit-padding-before: clamp(10px, 1.8229166667vw, 24px);
          padding-block-start: clamp(10px, 1.8229166667vw, 24px);
  -webkit-padding-after: clamp(40px, 2.6041666667vw, 60px);
          padding-block-end: clamp(40px, 2.6041666667vw, 60px);
  background-color: #fff;
}
.post-body :where(h2) {
  position: relative;
  font-family: var(--title_font);
  margin-block: 2em 1em;
  padding-inline: 16px;
  font-size: clamp(1.75rem, 1.3970588235rem + 1.7647058824vw, 2.5rem);
  color: var(--title-color);
}
.post-body :where(h2)::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -30px;
  display: block;
  width: 70px;
  aspect-ratio: 1;
  -webkit-mask: url(../img/circle-ttl.svg) 50%/cover no-repeat;
  mask: url(../img/circle-ttl.svg) 50%/cover no-repeat;
  background-color: #00A2D9;
}
.post-body :where(h3, h4, h5, h6) {
  margin-block: 1.5em 1.5rem;
  position: relative;
}
.post-body :where(h3) {
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
  border-left: 1px solid var(--brand_coler);
}
.post-body :where(h3)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 8px;
  height: 16px;
  border-radius: 0% 100% 100% 0%/0% 50% 50% 100%;
  background-color: var(--brand_coler);
}
.post-body :where(p) {
  margin-block: 1.5rem;
  line-height: 1.65;
}
.post-body :where(a) {
  text-decoration: underline;
}
.post-body :where(a)[role=button] {
  text-decoration: none;
}
.post-body :where(img) {
  margin-block: 1.5rem;
  margin-inline: auto;
}
.post-body :where(figure) {
  max-width: 100%;
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
}
.post-body :where(figure) img {
  -webkit-margin-after: 0;
          margin-block-end: 0;
  min-width: 100%;
  height: auto;
}
.post-body :where(figcaption) {
  display: block;
  padding: 1rem;
  font-size: 14px;
  background-color: #F6F5F2;
}
.post-body .text-large {
  font-size: clamp(1.0625rem, 1.0330882353rem + 0.1470588235vw, 1.125rem);
  line-height: 2;
}
.post-body .group + .group {
  -webkit-margin-before: clamp(60px, 5.2083333333vw, 100px);
          margin-block-start: clamp(60px, 5.2083333333vw, 100px);
}
.post-body :where(ul) {
  list-style: disc;
  margin-block: 0.7rem 1.5rem;
  -webkit-margin-start: 2rem;
          margin-inline-start: 2rem;
}
.post-body :where(ul) li {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
}
.post-body :where(ol) {
  list-style: decimal;
  margin-block: 1.5rem;
  -webkit-margin-start: 2rem;
          margin-inline-start: 2rem;
}
.post-body :where(ol) li {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
}

.padding-bottom100 {
  -webkit-padding-after: clamp(3.75rem, 2.841rem + 4.55vw, 6.25rem);
          padding-block-end: clamp(3.75rem, 2.841rem + 4.55vw, 6.25rem);
}

/* パーツ
------------------------------- */
.map-block {
  display: grid;
  -webkit-padding-before: clamp(30px, 6.5104166667vw, 80px);
          padding-block-start: clamp(30px, 6.5104166667vw, 80px);
}
.map-block .block {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--brand_coler);
  border-right: 1px solid var(--brand_coler);
  border-bottom: 1px solid var(--brand_coler);
}
.map-block .block .ttl {
  font-family: "Noto Sans JP";
  font-size: 24px;
  margin-block: 1rem 0.5rem;
  color: var(--brand_coler);
}
.map-block .block .map-text {
  padding: 1rem 24px;
  height: 100%;
}
.map-block .block .map-text h3 {
  border: none;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}
.map-block .block .map-text h3::before {
  content: "";
  display: none;
}
.map-block .block .map-text p {
  font-size: 15px;
  margin-block: 0;
}
.map-block .block .map-text p span {
  display: inline-block;
  margin-right: 0.5rem;
}
.map-block .block .g-map {
  display: block;
  min-inline-size: 0;
  aspect-ratio: 16/9;
}
.map-block .block .g-map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .map-block {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

.block-wrap {
  container: block-col/inline-size;
  display: grid;
}

@container block-col (min-width: 600px) {
  .map-block .block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }
  .map-block .block .map-text {
    grid-area: 1/2/2/3;
  }
  .map-block .block .map-text p {
    font-size: 17px;
  }
  .map-block .block .g-map {
    grid-area: 1/1/2/2;
    aspect-ratio: 1;
  }
}
.my-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: center;
}
.my-gallery figure {
  display: grid;
  contain: strict;
  aspect-ratio: 1.618/1;
  max-width: 600px;
  border-radius: 30px;
}
.my-gallery figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  margin: 0;
}

.box-frame {
  container: box-frame/inline-size;
  border: 1px solid var(--brand_coler);
  padding: 1.5rem;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .box-frame {
    padding: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .wp-block-columns .box-frame {
    -webkit-margin-before: 1.5rem !important;
            margin-block-start: 1.5rem !important;
  }
}

.dl-list {
  display: grid;
}
.dl-list dt {
  display: flex;
  gap: 6px;
  align-items: center;
  font-weight: 500;
  padding-block: 1rem;
  padding-inline: 5px;
}
.dl-list dt::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--brand_coler);
}
.dl-list dd {
  border-bottom: 1px dotted var(--brand_coler);
  padding-block: 0 1rem;
  padding-inline: 5px;
}
.dl-list dd:last-child {
  border: 0;
}
.dl-list dd p {
  margin-block: 0;
}
.dl-list dd p + p {
  margin-top: 1rem;
}

@container box-frame (min-width: 600px) {
  .dl-list {
    grid-template-columns: auto 1fr;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .dl-list dd {
    padding-block: 1rem;
  }
  .dl-list dd:last-child {
    border-bottom: 1px dotted var(--brand_coler);
  }
}
.note {
  display: block;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.note::before {
  content: "※";
  padding-right: 0.2em;
}

.tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  cursor: pointer;
}
.tooltip:hover .text {
  visibility: visible;
}
.tooltip .text {
  position: absolute;
  visibility: hidden;
  width: 180px;
  background-color: #fff;
  border-radius: 6px;
  padding: 5px;
  z-index: 1;
  bottom: 100%;
  left: calc(100% - 16px);
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  white-space: normal !important;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
}
.tooltip::after {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1;
  background: url(../img/icon-help.png) no-repeat;
  background-size: 20px;
}

.tel-link-box {
  display: grid;
  align-items: center;
  padding: 20px;
  gap: 10px;
  border-radius: 10px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
}
.tel-link-box .block {
  text-align: center;
}
.tel-link-box .link-tel {
  --tel_color: #000;
  font-size: 36px !important;
  font-weight: 500;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
.tel-link-box .link-tel::before {
  content: "";
  width: 36px;
}
@media screen and (min-width: 768px) {
  .tel-link-box {
    grid-template-columns: 1fr 1fr;
    padding: 38px 66px;
  }
}

/* 飾りなしタグ：規約など */
.nostyle-block {
  max-inline-size: var(--container_size_md);
  margin-inline: auto;
}
.nostyle-block .wp-block-heading {
  padding-inline: 0;
  font-size: clamp(1.25rem, 1.0147058824rem + 1.1764705882vw, 1.75rem);
}
.nostyle-block .wp-block-heading::before {
  content: "";
  all: unset;
}

/* カスタームテンプレート用個別スタイル
------------------------------*/
#custom .fixed-block {
  position: relative;
  display: grid;
  background-image: url(../img/img_omoi.jpg);
  background-repeat: no-repeat;
  background-position: right -40px top;
  background-size: cover;
  min-height: 10vh;
}
#custom .fixed-block .inner {
  margin-block: 60px;
}
#custom .fixed-block .fixed-text {
  display: grid;
  gap: 10px;
  line-height: 2;
  padding: 1rem;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  text-shadow: var(--text_shadow);
}
#custom .fixed-block .fixed-text p span {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  #custom .fixed-block {
    background-position: center top;
  }
}
@media screen and (min-width: 1061px) {
  #custom .fixed-block .fixed-text {
    max-inline-size: 42%;
    background-color: rgba(255, 255, 255, 0);
  }
}

/* OEM／事業内容
------------------------------*/
.oem-navi {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: stretch;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  padding-inline: 200px;
  margin-inline: -200px;
  border-bottom: 1px solid var(--brand_coler);
  -webkit-padding-before: 10px;
          padding-block-start: 10px;
}
.oem-navi .navi-item {
  display: flex;
  align-items: center;
  border: 1px solid var(--brand_coler);
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  -webkit-margin-after: -1px;
          margin-block-end: -1px;
}
.oem-navi .navi-item.current a {
  background-color: var(--brand_coler);
  color: #fff;
}
.oem-navi .navi-item.current a::after {
  background-color: #fff;
  transform: rotate(45deg);
}
.oem-navi .navi-item.current a:hover {
  background-color: var(--brand_coler);
  color: #fff;
}
.oem-navi .navi-item.current a:hover::after {
  transform: rotate(45deg);
}
.oem-navi .navi-item a {
  position: relative;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  text-decoration: none;
  padding-block: 1rem;
  padding-inline: 1rem;
  color: var(--text_color);
  font-family: "Kaisei Opti", serif;
  font-size: clamp(1rem, 0.7647058824rem + 1.1764705882vw, 1.5rem);
  font-weight: 700;
}
.oem-navi .navi-item a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: #00A2D9;
  transform: rotate(-45deg);
}
.oem-navi .navi-item a:hover {
  background-color: #D9F1F9;
  color: var(--text_color);
  text-decoration: none;
}
.oem-navi .navi-item a:hover::after {
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .oem-navi {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .oem-navi .navi-item {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    max-width: 400px;
    border-radius: 30px 30px 0 0;
  }
  .oem-navi .navi-item a {
    padding-inline: 40px;
    border-radius: 30px 30px 0 0;
  }
}

.oem-item {
  all: unset;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: center;
}
@media screen and (min-width: 1061px) {
  .oem-item {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
}
.oem-item li {
  display: grid;
  align-items: center;
  background-repeat: no-repeat;
  aspect-ratio: 2/1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url(../img/img_apparel.jpg) lightgray 50%/cover no-repeat;
  border-radius: 20px;
  color: #fff;
}
.oem-item li:nth-child(2) {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%), url(../img/img_toy.jpg) lightgray 50%/cover no-repeat;
  color: #000;
}
.oem-item li:nth-child(3) {
  color: #000;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%), url(../img/img04.jpg) lightgray 50%/cover no-repeat;
}
.oem-item li:nth-child(4) {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url(../img/img_make.jpg) lightgray 50%/cover no-repeat;
}
.oem-item li span {
  display: grid;
  align-items: center;
  text-align: center;
  font-weight: 600;
}

.col-text-img-wrapper {
  container: col-wrapper/inline-size;
}

.col-text-img {
  display: flex;
  align-items: center;
  -moz-column-gap: 2.4vw;
       column-gap: 2.4vw;
}
.col-text-img.img-left .col-tetx {
  order: 2;
}
.col-text-img.img-left .col-img {
  order: 1;
}
.col-text-img .col-tetx {
  order: 1;
}
.col-text-img .col-tetx h4 {
  font-size: 1.125rem;
}
.col-text-img .col-tetx h4 span {
  display: block;
}
.col-text-img .col-tetx h4 span.en {
  color: var(--brand_coler);
  font-size: 180%;
}
.col-text-img .col-img {
  order: 2;
  flex-shrink: 0;
  aspect-ratio: 2/1;
  max-width: 60%;
}
.col-text-img .col-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

@container col-wrapper (max-width: 640px) {
  .col-text-img {
    flex-direction: column;
  }
  .col-text-img .col-tetx {
    order: 2;
  }
  .col-text-img .col-img {
    order: 1;
    min-width: 100%;
  }
}
dl.tuyomi-list {
  counter-reset: mycount;
}
dl.tuyomi-list dt {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  counter-increment: mycount;
  border-top: 1px solid var(--brand_coler);
  color: var(--brand_coler);
  font-family: "Kaisei Opti", serif;
  font-weight: 700;
  padding-inline: 5px;
  padding-block: 1.5rem 0;
  font-size: clamp(1.625rem, 1.5073529412rem + 0.5882352941vw, 1.875rem);
}
dl.tuyomi-list dt::before {
  content: counter(mycount, decimal-leading-zero);
  font-weight: 500;
  display: inline-flex;
  padding: 5px 24px 7px;
  align-items: center;
  font-size: 30px;
  line-height: 1;
  border: 1px solid var(--brand_coler);
  border-radius: 50px;
}
dl.tuyomi-list dd {
  padding-inline: 5px;
  padding-block: 1rem 2rem;
}
dl.tuyomi-list dd p {
  margin-block: 0.8rem !important;
}

.trademark-list {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.trademark-list li {
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.trademark-thumb {
  width: 150px;
}
.trademark-thumb img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.trademark-info strong,
.trademark-info span {
  display: inline-block;
}

dl.flow-block {
  --flow_color:#00A2D9;
  max-width: 800px;
  margin-inline: auto;
}
dl.flow-block dt {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border: 1px solid var(--flow_color);
  background-color: #fff;
  border-radius: 0 50px 50px 0;
  padding: 10px;
  font-size: clamp(1.5rem, 1.3823529412rem + 0.5882352941vw, 1.75rem);
  color: var(--flow_color);
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  dl.flow-block dt {
    padding: 10px 20px;
  }
}
dl.flow-block dt::before {
  content: "";
  flex-shrink: 0;
  width: 56px;
  aspect-ratio: 1;
  background: url(../img/icon-lightbulb.svg) no-repeat center/100%;
}
dl.flow-block dt.flow-2::before {
  background: url(../img/icon-factory.svg) no-repeat center/100%;
}
dl.flow-block dt.flow-3::before {
  background: url(../img/icon-globe.svg) no-repeat center/100%;
}
dl.flow-block dt.flow-4::before {
  background: url(../img/icon-boat.svg) no-repeat center/100%;
}
dl.flow-block dt.flow-5::before {
  background: url(../img/icon-package.svg) no-repeat center/100%;
}
dl.flow-block dd {
  border-left: 10px solid var(--flow_color);
  margin-left: clamp(24px, 2.734375vw, 45px);
  padding-block: 1rem;
  padding-inline: 2rem 0.5rem;
}
dl.flow-block dd strong {
  font-size: clamp(1.25rem, 1.1323529412rem + 0.5882352941vw, 1.5rem);
}
dl.flow-block dd:last-child {
  border: none;
}

.flow-block-col {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .flow-block-col {
    grid-template-columns: 1fr 1fr;
  }
}

.flow-block-box {
  --flow_color: #00A2D9;
  border: 1px solid var(--flow_color);
  background-color: #fff;
  border-radius: 0 30px 30px 0;
  padding: 20px;
}
.flow-block-box h3 {
  padding: 0;
  margin: 0;
  border: none;
}
.flow-block-box h3.ttl {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  font-size: clamp(1.5rem, 1.3823529412rem + 0.5882352941vw, 1.75rem);
  color: var(--flow_color);
  font-weight: 600;
}
.flow-block-box h3.ttl::before {
  content: "";
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  background: url(../img/icon-package.svg) no-repeat center/100%;
}
.flow-block-box ul {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

.img-kadomaru {
  border-radius: 30px;
  overflow: hidden;
}

/* WP・プラグイン関連
------------------------------*/
#post .wp-block-image img {
  border-radius: 30px;
}

.wp-block-media-text {
  margin: 0;
  padding: 0;
  width: 100%;
  gap: 2em;
  align-self: flex-start;
}
.wp-block-media-text .wp-block-media-text__content {
  padding: 0;
  margin: 0;
  vertical-align: top;
}

.wp-block-gallery {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .wp-block-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
    -moz-column-gap: clamp(24px, 1.5625vw, 36px);
         column-gap: clamp(24px, 1.5625vw, 36px);
    margin-inline: auto;
  }
  .wp-block-gallery figcaption {
    grid-area: 2/1/3/4;
    min-width: 100%;
  }
}

#toc_container {
  margin-block: clamp(40px, 2.6041666667vw, 60px);
  background: #F9F9F9;
  display: grid;
  gap: 24px;
  padding-inline: 16px;
  padding-block: 24px;
  margin-inline: -24px;
  min-width: 100%;
}
@media screen and (min-width: 768px) {
  #toc_container {
    padding-inline: 24px;
    margin-inline: auto;
  }
}

.toc_title {
  font-size: clamp(1.125rem, 1.0661764706rem + 0.2941176471vw, 1.25rem);
  border-left: 6px solid #0D1D31;
  margin: 0 !important;
  -webkit-padding-start: 10px;
          padding-inline-start: 10px;
  text-align: left;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toc_toggle {
  font-size: 14px;
  font-weight: 400; /* 太字解除 */
  display: grid;
  align-items: center;
}
.toc_toggle a {
  display: grid;
  width: 100%;
  height: 100%;
  padding: 5px 16px;
  border-radius: 50px;
  border: 1px solid #007AF3;
  background: #fff;
}
.toc_toggle a:hover {
  text-decoration: none !important;
  border: 1px solid #F37A00;
}

.toc_brackets {
  display: none; /* カッコを非表示 */
}

.toc_list,
.toc_list * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc_list {
  counter-reset: tocnum;
  background-color: #fff;
  padding: 1.5rem;
}
.toc_list > li {
  position: relative;
  -webkit-margin-start: 1.5rem;
          margin-inline-start: 1.5rem;
  text-indent: -1.5em;
  counter-increment: tocnum;
}
.toc_list > li::before {
  content: counter(tocnum) ".";
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
  font-weight: 500;
}
.toc_list > li + li {
  margin-top: 0.8em;
}
.toc_list > li > ul {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
  -webkit-margin-start: 0.5rem;
          margin-inline-start: 0.5rem;
}
.toc_list > li > ul > li {
  position: relative;
  text-indent: 0;
  list-style: disc;
}
.toc_list > li > ul > li::before {
  content: "";
  display: none;
  width: 0;
  height: 0;
}
.toc_list > li > ul > li + li {
  margin-top: 0.8em;
}
/*# sourceMappingURL=post.css.map */