@import url(./normalize.css);

:root {
  --mainColor: #6c58f4;
  --subColor: #ff005b;
  --darkSubColor: #e10662;
  --fontColor: #ffdd00;
  --maxWidth: 1200px;
  --subMaxWidth: 1084px;
  --infoColor: #0088ff;
  --sucColor: #8bc34a;
  --warnColor: #ff5722;
  --dangerColor: #f56c6c;
}

* {
  box-sizing: border-box;
}
html {
  font-family: 'PT Sans', sans-serif;
  line-height: 1.35;
}
body {
  background-color: #f7f5fb;
}
a {
  text-decoration: none;
}
img {
  vertical-align: bottom;
}
*::-webkit-scrollbar {
  width: 5px;
}
*::-webkit-scrollbar-track {
  background-color: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: #b9b9b9;
}

.top-bar {
  background-color: var(--mainColor);
  height: 50px;
  box-shadow: 0 10px 10px rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-bar img {
  cursor: pointer;
}

.page {
  max-width: var(--maxWidth);
  margin: 0 auto;
  padding-top: 1px;
  min-height: calc(100vh - 86px);
}

.common-btn {
  cursor: pointer;
  background-color: var(--subColor);
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  box-shadow: 3px 2px 5px rgba(0, 0, 0, 0.35);
  text-align: center;
}
.common-btn a {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  .common-btn {
    padding: 10px 30px;
  }
}
.common-btn:hover {
  background-color: #d20530;
  text-decoration: underline;
}
.common-btn:disabled {
  background-color: #b20040;
  cursor: not-allowed;
}
.common-btn:disabled:hover {
  background-color: #b20040;
  text-decoration: unset;
}
.common-btn2 {
  cursor: pointer;
  background-color: #1cb06d;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  box-shadow: 3px 2px 5px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 640px) {
  .common-btn2 {
    padding: 10px 30px;
  }
}
.common-btn2:hover {
  background-color: var(--mainColor);
}

.advert-wrap .advert p {
  font-size: 12px;
  text-align: center;
  color: #686868;
}
@media screen and (max-width: 640px) {
  .advert-wrap .advert p {
    margin: 5px 0;
  }
}
.advert-wrap .advert .ads-ins-wrap {
  height: 90px;
  min-height: 90px;
}
@media screen and (max-width: 640px) {
  .advert-wrap .advert .ads-ins-wrap {
    height: 280px;
    min-height: 280px;
  }
}
.advert-wrap .advert .ads-ins-wrap .adsbygoogle {
  width: 100%;
  display: inline-block;
  text-align: center;
}
.advert-wrap .advert .ads-ins-wrap .adsbygoogle a {
  display: none !important;
}
.advert-wrap .advert .ads-ins-wrap .adsbygoogle[data-ad-status='unfilled'] {
  height: 100%;
}
.advert-wrap .advert .ads-ins-wrap .adsbygoogle[data-ad-status='unfilled'] a {
  display: block !important;
}

.advert-wrap .advert .ads-ins-wrap .adsbygoogle[data-ad-status='unfilled'] a img {
  max-width: 728px;
}
.advert-wrap .advert .ads-ins-wrap .adsbygoogle[data-ad-status='unfilled'] > div {
  display: none !important;
}

.hide {
  display: none !important;
}

.footer-bar .link-list {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}
.footer-bar a {
  color: #fff;
  text-decoration: none;
  &:hover {
    text-decoration: underline;
  }
}
.footer-bar span {
  margin: 0 10px;
}

.col-1 {
  width: 4.16667%;
}
.col-2 {
  width: 8.33333%;
}
.col-3 {
  width: 12.5%;
}
.col-4 {
  width: 16.66667%;
}
.col-5 {
  width: 20.83333%;
}
.col-6 {
  width: 25%;
}
.col-7 {
  width: 29.16667%;
}
.col-8 {
  width: 33.33333%;
}
.col-9 {
  width: 37.5%;
}
.col-10 {
  width: 41.66667%;
}
.col-11 {
  width: 45.83333%;
}
.col-12 {
  width: 50%;
}
.col-13 {
  width: 54.16667%;
}
.col-14 {
  width: 58.33333%;
}
.col-15 {
  width: 62.5%;
}
.col-16 {
  width: 66.66667%;
}
.col-17 {
  width: 70.83333%;
}
.col-18 {
  width: 75%;
}
.col-19 {
  width: 79.16667%;
}
.col-20 {
  width: 83.33333%;
}
.col-21 {
  width: 87.5%;
}
.col-22 {
  width: 91.66667%;
}
.col-23 {
  width: 95.83333%;
}
.col-24 {
  width: 100%;
}

@media screen and (max-width: 640px) {
  .hide-on-mob {
    display: none !important;
  }
  .page {
    min-height: calc(100vh - 86px);
  }
  .you-may-like {
    max-width: 100vw;
    overflow: hidden;
  }
}
@media screen and (min-width: calc(640px + 1px)) {
  .hide-on-pc {
    display: none !important;
  }
}
