@font-face {
  font-family: main;
  font-weight: 400;
  src: local(hiraginosans-w3);
}

@font-face {
  font-family: main;
  font-weight: 700;
  src: local(hiraginosans-w6);
}
body,
body * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: main, sans-serif;
  /* background: #f7f7f7; */
}
/* @media all and (min-width: 768px) {
  body {
    background: linear-gradient(#f0f2f5, rgba(240, 242, 245, 0.1));
  }
} */
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
.container {
  max-width: 990px;
  margin: 0 auto;
}
.bold {
  font-weight: 700;
}
header {
  background: #fff;
}
.supHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f7f8;
  width: 100%;
  padding: 0 10px;
  height: 32px;
}
.supHeader a {
  font-size: 13px;
  color: #0033cc;
}
.supHeader__right {
  display: flex;
  gap: 12px;
  align-items: center;
}
.searchInput {
  border: 1px solid #999;
  width: 192px;
  padding: 0 2px;
  height: 26px;
  display: flex;
  align-items: center;
  background: #fff;
  justify-content: space-between;
}
.searchInput input {
  border: none;
  outline: none;
  width: 40%;
}
.searchInput input::placeholder {
  color: #979797;
  font-size: 12px;
}
.searchButton {
  /* background-image: url(../index/search.png); */
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 26px 77px;
  border: 0 solid;
  cursor: pointer;
  font-family: initial;
  font-size: 12px;
  height: 26px;
  line-height: normal;
  padding: 0;
  position: relative;
  vertical-align: baseline;
  width: 26px;
  margin-left: -12px;
}
.boost {
  display: flex;
  position: relative;
  font-size: 12px !important;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding-left: 14px;
  height: 20px;
  padding-right: 4px;
}
.boost::before {
  /* content: url(../index/boost.svg); */
  position: absolute;
  left: 0;
  top: 2px;
}
.middleHeader {
  display: flex;
  align-items: center;
  padding: 12px 5px;
  gap: 10px;
}
.headerLogo img {
  height: 34px;
}
.headerLogo {
  padding-top: 3px;
}
.headerLogin {
  font-size: 13px;
  color: #333;
}
.headerLogin a {
  color: #03c;
}
.selling {
  display: flex;
  align-items: center;
  gap: 8px;
}
.selling a:last-child {
  display: flex;
}
.selling a:last-child::before {
  width: 16px;
  height: 16px;
  display: block;
  /* background-image: url(../index/shopping.png); */
  content: "";
  background-size: 16px 16px;
}
.headerNav {
  white-space: nowrap;
}
.headerNav__top {
  border-top: 1px solid #e1e1e1;
  /* background: #F7F7F7; */
  height: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navSearch {
  width: 316px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  background: #fff;
  margin: 0 12px;
  height: 28px;
}
.navSearch input {
  border: none;
  outline: none;
}
.navSearch input::placeholder {
  color: #979797;
  padding-left: 4px;
  font-size: 12px;
}
.navSearch a {
  padding: 0 8px;
  display: flex;
  align-items: center;
  border-left: 1px solid #e1e1e1;
}
.navPref {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 12px;
  height: 100%;
}
.navPref li {
  height: 100%;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-left: 1px solid #e1e1e1;
}
.headerNav__mid {
  background: linear-gradient(rgb(68, 115, 156), rgb(67, 111, 146)) rgb(68, 115, 156);
}
.headerNav__mid ul {
  height: 38px;
  display: flex;
  align-items: center;
}
.headerNav__mid ul li {
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  border-right: 1px solid rgba(58, 62, 73, 0.3);
  padding: 8px 20px;
}
.headerNav__bot {
  color: #4e5665;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 4px;
  padding-right: 16px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #e1e1e1;
}
.headerNav__bot ul {
  display: flex;
}
.headerNav__bot ul li:not(:last-child) a {
  border-right: 1px solid #e1e1e1;
}
.headerNav__bot ul li a {
  padding: 0 16px;
}
main {
  display: grid;
  grid-template-columns: 672px 1fr;
  /* background: #f7f7f7; */
}
article {
  /* background: #fff; */
  /* border-right: 1px solid #E1E1E1;
    border-left: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1; */
  padding: 16px;
}
article h1 {
  /* font-size: 32px;
  line-height: 1.3;
  letter-spacing: -1.1px; */
}
.articleMeta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  margin-bottom: 16px;
}
.metaLeft {
  display: flex;
  align-items: center;
  gap: 8px;
}
.metaLeft span {
  color: #949494;
  font-size: 12px;
}
.toComments {
  color: #3474ce;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.toComments img {
  position: relative;
  top: 2px;
  width: 18px;
  height: 18px;
}
.smileContainer {
  display: flex;
}
.smileContainer img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.smileContainer img:not(:first-child) {
  margin-left: -4px;
}
.smileContainer img:first-child {
  z-index: 3;
}
.smileContainer img:nth-child(2) {
  z-index: 2;
}
.metaMedia {
  display: flex;
  align-items: center;
  gap: 6px;
}
.metaMedia a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.metaMedia a:not(.x) img {
  width: 30px;
  height: 30px;
}
.x {
  background: #000;
}
.x img {
  width: 16px;
  height: 16px;
}
article > a img,
article video {
  width: 100%;
  margin-bottom: 16px;
}
article p a,
article h2 a,
h1 a {
  color: #0033cc;
}
article p {
  margin-bottom: 16px;
  /* line-height: 28.8px; */
}
article h2 {
  /* margin-bottom: 16px; */
  /* font-size: 20px;
    line-height: 24px; */
}
footer {
  margin-top: 16px;
}
.footerMain {
  padding: 12px;
  background: #4e555d;
}
.footerMedia {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 16px;
}
.mediaCard {
  background: #494e54;
  border: 1px solid #3c4147;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cardInfo h3 {
  color: #fff;
  font-size: 14px;
}
.cardInfo p {
  color: #dbdbdb;
  font-size: 12px;
}
.mediaCard img {
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
.footerNav ul {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
}
.footerNav ul li:not(:last-child) {
  border-right: 1px solid #3c4147;
}
.footerNav ul li {
  padding: 0 10px;
}
.subFooter {
  background: #fff;
}
.subFooter {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 20px;
}
.subFooterInner ul {
  display: flex;
  font-size: 12px;
  color: #0033cc;
  flex-wrap: wrap;
  white-space: nowrap;
  justify-content: center;
  column-gap: 4px;
}
.subFooterInner ul li:not(:last-child)::after {
  content: "-";
  color: #444444;
  padding: 0 2px;
}
.subFooterInner p {
  font-size: 12px;
  color: #333;
  text-align: center;
}
.headerButtons {
  display: none;
  gap: 8px;
  align-items: center;
}
.headerButtons img {
  width: 26px;
  height: 26px;
}
.bell img {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 774px) {
  .supHeader {
    display: none;
  }
  .headerNav {
    display: none;
  }
  .headerLogo img {
    width: 108px;
    height: 22px;
  }
  .headerLogin p,
  .selling {
    display: none;
  }
  .middleHeader {
    height: 44px;
    border-bottom: 1px solid #e1e1e1;
    justify-content: space-between;
  }
  .headerButtons {
    display: flex;
  }
  article h1 {
    /* font-size: 28px;
    line-height: 1.3; */
  }
  article p {
    /* font-size: 17px; */
    /* line-height: 1.5; */
  }
  main {
    grid-template-columns: 1fr;
  }
  article h2 {
    /* font-size: 18px; */
  }
  .metaRight {
    display: none;
  }
  .metaLeft {
    width: 100%;
    flex-direction: row-reverse;
  }
  .metaLeft > span {
    margin-left: auto;
  }
  article {
    padding: 8px;
  }
  .footerMain {
    display: none;
  }
}
.customJS-styles__activation-message {
  color: white;
  font-weight: 700;
  font-size: 16px;
  background: #073e86c2;
  padding: 10px;
  border-radius: 15px;
  display: flex;
  margin-bottom: 0px !important;
  margin-top: 0 !important;
}

.customJS-styles__icon {
  color: red;
  font-size: 35px;
  text-align: center;
  margin-right: 7px;
}
