@charset "UTF-8";
/*=========================
変数
=========================*/
:root {
  --fontsize-smallest: 1rem;
  --fontsize-small: 1.1rem;
  --fontsize-normal: 1.2rem;
  --fontsize-large: 1.6rem;
  --fontsize-largest: 2rem;
  --color-black: #2e2e2e;
  --color-white: #ffffff;
  --color-darkgray: #5c5c5c;
  --color-gray: #999999;
  --color-lightgray: #eeeeee;
  --mainslider-btn-width: 33px;
  --mainslider-btn-height: 43px;
  --side-margin: 0 20px;
}
@media (min-width: 600px) {
  :root {
    --fontsize-smallest: 1.2rem;
    --fontsize-small: 1.3rem;
    --fontsize-normal: 1.4rem;
    --fontsize-large: 2rem;
    --fontsize-largest: 2.8rem;
    --mainslider-btn-width: 54px;
    --mainslider-btn-height: 71px;
    --snapSlider-btn-width: 21px;
    --snapSlider-btn-height: 38px;
    --rankingSlider-btn-width: 10px;
    --rankingSlider-btn-height: 20px;
    --side-margin: 0 auto;
  }
}

/*=========================
ページ共通
=========================*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: var(--fontsize-normal);
  letter-spacing: 0.05em;
  color: var(--color-black);
  background: var(--color-white);
  font-feature-settings: "palt";
}

a {
  color: var(--color-black);
  text-decoration: none;
  transition: 0.9s;
}

a img {
  transition: 0.9s;
}

a:hover img {
  opacity: 0.7;
}

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

ul {
  list-style: none;
}

.font-han {
  font-family: source-han-sans-japanese, sans-serif;
  font-style: normal;
  letter-spacing: 0.15em;
}
.font-han--medium {
  font-weight: 500;
}

.view_timer {
  display: none;
}

/*---- section ----*/
.section {
  margin-bottom: 80px;
}
@media (min-width: 600px) {
  .section {
    margin-bottom: 200px;
  }
}
.section__ttl {
  font-size: var(--fontsize-largest);
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .section__ttl {
    margin-bottom: 50px;
  }
}
@media (min-width: 600px) {
  .section__inner {
    padding: 0 20px;
  }
}

/*レイアウト調整用*/
.side--m {
  margin: var(--side-margin);
}

.btn--arrow a {
  text-align: center;
  display: block;
  border: 1px solid var(--color-black);
  padding: 15px 0;
  background: url("../image/arrow_r.png") no-repeat center right 10px;
  background-size: 5px;
}
@media (min-width: 600px) {
  .btn--arrow a {
    padding: 20px 0;
    background-size: 8px;
  }
}

.btn--center {
  width: 70%;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .btn--center {
    width: 400px;
  }
}

.link--underline {
  text-decoration: underline;
}
.link--underline:hover {
  text-decoration: none;
}

/*スライダー表示前の崩れを軽減*/
.swiper-container {
  visibility: hidden;
}

.swiper-container.swiper-container-initialized {
  visibility: visible;
}

/*=========================
header
=========================*/
.header {
  position: sticky;
  top: 0;
  background: var(--color-white);
  display: flex;
  gap: 10px;
  padding: 15px 10px;
  z-index: 99;
}
@media (min-width: 600px) {
  .header {
    padding: 30px;
    gap: 20px;
  }
}

/*---- logo ----*/
.header-logo {
  line-height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-logo img {
  width: 40px;
}
@media (min-width: 600px) {
  .header-logo img {
    width: 75px;
  }
}

/*---- coupon ----*/
.header-coupon > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fontsize-small);
  border: 1px solid var(--color-black);
  border-radius: 10px;
  padding: 3px 8px;
}
.header-coupon > a::before {
  content: "";
  display: block;
  width: 18px;
  height: 11px;
  background: url("../image/icon_coupon_nor.png") no-repeat center;
  background-size: contain;
}

/*---- drawer ----*/
.drawer {
  display: flex;
  align-items: center;
}
.drawer-unshown {
  display: none;
}
.drawer #drawer-open {
  display: inline-block;
  width: 25px;
  height: 18px;
}
@media (min-width: 600px) {
  .drawer #drawer-open {
    width: 30px;
    height: 22px;
  }
}
.drawer #drawer-open:hover {
  cursor: pointer;
}
.drawer #drawer-open span,
.drawer #drawer-open span:before,
.drawer #drawer-open span:after {
  position: absolute;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: var(--color-black);
  display: block;
  content: "";
}
@media (min-width: 600px) {
  .drawer #drawer-open span,
  .drawer #drawer-open span:before,
  .drawer #drawer-open span:after {
    width: 30px;
  }
}
.drawer #drawer-open span::before {
  bottom: -8px;
}
@media (min-width: 600px) {
  .drawer #drawer-open span::before {
    bottom: -10px;
  }
}
.drawer #drawer-open span::after {
  bottom: -16px;
}
@media (min-width: 600px) {
  .drawer #drawer-open span::after {
    bottom: -20px;
  }
}
.drawer #drawer-close {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  background: var(--color-black);
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.drawer #drawer-close__btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: fixed;
  top: 5px;
  left: -60px;
  transition: 0.3s ease-in-out;
  z-index: 2;
}
@media (min-width: 600px) {
  .drawer #drawer-close__btn {
    top: 10px;
    width: 50px;
    height: 50px;
  }
}
.drawer #drawer-close__btn:hover {
  cursor: pointer;
}
.drawer #drawer-close__btn span:before,
.drawer #drawer-close__btn span:after {
  position: absolute;
  top: 19px;
  left: 7px;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: var(--color-black);
  display: block;
  content: "";
}
@media (min-width: 600px) {
  .drawer #drawer-close__btn span:before,
  .drawer #drawer-close__btn span:after {
    top: 30px;
    left: 10px;
    width: 40px;
  }
}
.drawer #drawer-close__btn span::before {
  bottom: -8px;
  transform: rotate(45deg);
}
.drawer #drawer-close__btn span::after {
  bottom: -8px;
  transform: rotate(-45deg);
}
.drawer #drawer-input:checked ~ #drawer-close {
  display: block;
  opacity: 0.5;
}
.drawer #drawer-input:checked ~ #drawer-close__btn {
  left: 5px;
}
@media (min-width: 600px) {
  .drawer #drawer-input:checked ~ #drawer-close__btn {
    left: 10px;
  }
}
.drawer #drawer-input:checked ~ .drawer__inner {
  transform: translateX(0%);
}

.drawer__inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 80vw;
  height: 100%;
  height: 100lvh;
  background: var(--color-white);
  transition: 0.3s ease-in-out;
  transform: translateX(-105%);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 70px 30px 20px;
  z-index: 1;
}
@media (min-width: 600px) {
  .drawer__inner {
    width: 500px;
    padding: 50px;
    gap: 50px;
  }
}
.drawer__inner-logo {
  width: 80px;
  height: 50px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .drawer__inner-logo {
    width: 170px;
    height: 105px;
  }
}

.drawer__inner-menu {
  display: grid;
  gap: 20px;
  font-size: var(--fontsize-large);
}
.drawer__inner-menu span {
  font-size: var(--fontsize-small);
  margin-left: 15px;
}
.drawer__inner-menu ul {
  display: grid;
  gap: 5px;
  margin-top: 5px;
}
.drawer__inner-menu ul li a {
  color: var(--color-gray);
  font-size: var(--fontsize-normal);
  display: flex;
  align-items: center;
  gap: 10px;
}
.drawer__inner-menu ul li a::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: var(--color-gray);
}
.drawer__inner-menu ul li a::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background: url("../image/newwindow.png") no-repeat center;
  background-size: contain;
}

.drawer__inner-sns {
  display: grid;
  grid-template-columns: repeat(auto-fill, 30px);
  column-gap: 10px;
}
@media (min-width: 600px) {
  .drawer__inner-sns {
    grid-template-columns: repeat(auto-fill, 35px);
  }
}

.drawer__inner-copy {
  margin: auto auto 0;
  width: 120px;
}
@media (min-width: 600px) {
  .drawer__inner-copy {
    width: 150px;
  }
}

.drawer-fixed {
  /*bodyのスクロール防止*/
  position: fixed;
  width: 100%;
  height: 100%;
}

/*=========================
main
=========================*/
/*---- mv ----*/
.mv {
  margin-bottom: 50px;
  background: #edefef;
}
@media (min-width: 600px) {
  .mv {
    margin-bottom: 100px;
  }
}
.mv img {
  display: block;
}
@media (min-width: 600px) {
  .mv img {
    max-width: 780px;
    margin: 0 auto;
  }
}

/*---- category ----*/
.category__list {
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 600px) {
  .category__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

/*---- new/re-item ----*/
.tab__list {
  display: grid;
  max-width: 1000px;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .tab__list {
    margin-bottom: 30px;
  }
}
.tab__list-item {
  color: var(--color-gray);
  text-align: center;
  cursor: pointer;
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 10px;
}
@media (min-width: 600px) {
  .tab__list-item {
    margin-bottom: 20px;
  }
}
.tab__list-item.is-active {
  color: var(--color-black);
  font-weight: bold;
  border-bottom: 2px solid var(--color-black);
}
.tab__contents {
  overflow: hidden;
  margin-bottom: 50px;
}
@media (min-width: 600px) {
  .tab__contents {
    margin-bottom: 80px;
  }
}
.tab__contents-item {
  visibility: hidden;
  height: 0;
}
.tab__contents-item .swiper-container {
  opacity: 0;
  transition: 0.5s;
}
.tab__contents-item.is-active {
  visibility: visible;
  height: auto;
}
.tab__contents-item.is-active .swiper-container {
  opacity: 1;
}

.item--img {
  margin-bottom: 5px;
}
.item--name {
  font-size: var(--fontsize-small);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 5px;
  flex-grow: 1;
}
.item--name span {
  color: var(--color-darkgray);
  font-size: var(--fontsize-smallest);
  display: block;
}
.item--price {
  font-weight: bold;
  line-height: 1.6;
}
.item--price--tax {
  font-size: 60%;
  margin-left: 3px;
}

.newitem .tab__list {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 599px) {
  .newitem-slider {
    padding: 0 20px;
  }
}
@media (min-width: 600px) {
  .newitem-slider {
    max-width: 1000px;
  }
}
.newitem .swiper-slide {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 10px;
  height: auto;
}
@media (min-width: 600px) {
  .newitem .swiper-slide {
    gap: 15px;
  }
}
.newitem .swiper-slide div {
  display: flex;
  flex-direction: column;
}

/*---- ranking ----*/
.ranking .tab__list {
  grid-template-columns: repeat(7, 1fr);
}
@media (min-width: 600px) {
  .ranking .tab__list {
    grid-template-columns: repeat(7, 1fr);
  }
}
.ranking .tab__contents-item {
  position: relative;
}
@media (min-width: 600px) {
  .ranking .tab__contents-item {
    max-width: 1100px;
    margin: 0 auto;
  }
}
.ranking--menu-slider .swiper-slide {
  line-height: 1.6;
}
@media (max-width: 599px) {
  .ranking-slider {
    padding: 0 20px;
  }
}
@media (min-width: 600px) {
  .ranking-slider {
    max-width: 1000px;
  }
}
.ranking-slider .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}
.ranking-slider .swiper-slide[class*=rank--] a {
  position: relative;
  display: block;
}
.ranking-slider .swiper-slide[class*=rank--] a::before {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  color: var(--color-white);
  background: #575554;
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.ranking-slider .swiper-slide.rank--1 a::before {
  content: "1";
  background: #b6974d;
}
.ranking-slider .swiper-slide.rank--2 a::before {
  content: "2";
  background: #a6a49f;
}
.ranking-slider .swiper-slide.rank--3 a::before {
  content: "3";
  background: #8f775f;
}
.ranking-slider .swiper-slide.rank--4 a::before {
  content: "4";
}
.ranking-slider .swiper-slide.rank--5 a::before {
  content: "5";
}
.ranking-slider .swiper-slide.rank--6 a::before {
  content: "6";
}
.ranking-slider .swiper-slide.rank--7 a::before {
  content: "7";
}
.ranking-slider .swiper-slide.rank--8 a::before {
  content: "8";
}
.ranking-slider .swiper-slide.rank--9 a::before {
  content: "9";
}
.ranking-slider .swiper-slide.rank--10 a::before {
  content: "10";
}

.slider-arrow--r,
.slider-arrow--l {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--snapSlider-btn-width);
  height: var(--snapSlider-btn-height);
}
@media (max-width: 599px) {
  .slider-arrow--r,
  .slider-arrow--l {
    display: none;
  }
}

.slider-arrow--r.swiper-button-disabled,
.slider-arrow--l.swiper-button-disabled {
  opacity: 0.2;
}

.slider-arrow--r {
  right: 0;
}

.slider-arrow--l {
  left: 0;
}

.slider-arrow--r:after,
.slider-arrow--l:after {
  content: "";
  display: block;
  width: var(--snapSlider-btn-width);
  height: var(--snapSlider-btn-height);
}

.slider-arrow--r:after {
  background: url("../image/arrow_cr_bk.png") no-repeat center;
  background-size: contain;
}

.slider-arrow--l:after {
  background: url("../image/arrow_cl_bk.png") no-repeat center;
  background-size: contain;
}

/*---- staffsnap ----*/
@media (max-width: 599px) {
  .staffsnap-slider {
    padding: 0 20px;
  }
}
@media (min-width: 600px) {
  .staffsnap-slider {
    max-width: 1000px;
  }
}
.staffsnap-slider__wrap {
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .staffsnap-slider__wrap {
    max-width: 1100px;
    margin: 0 auto 80px;
  }
}
.staffsnap .swiper-slide p {
  font-size: var(--fontsize-small);
  line-height: 2;
  margin-top: 5px;
}

/*---- feature ----*/
.feature__list {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .feature__list {
    max-width: 1000px;
    margin-bottom: 80px;
  }
}
.feature__list li {
  line-height: 0;
}
@media (min-width: 600px) {
  .feature__list li {
    max-width: 640px;
  }
}
.feature__list.list--range {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 599px) {
  .feature__list.list--range {
    justify-content: flex-start;
  }
}
@media (min-width: 600px) {
  .feature__list.list--range {
    grid-row-gap: 13px;
  }
}
.feature__list.list--range li {
  width: calc(50% - 5px);
}
@media (min-width: 600px) {
  .feature__list.list--range li {
    width: calc(25% - 10px);
  }
}

/*---- sns ----*/
.sns {
  margin: 120px 0;
}
@media (min-width: 600px) {
  .sns {
    margin: 300px 0;
  }
}
.sns__list {
  display: flex;
  justify-content: center;
  gap: 15px;
}
@media (min-width: 600px) {
  .sns__list {
    gap: 25px;
  }
}
.sns__list li {
  width: 30px;
}
@media (min-width: 600px) {
  .sns__list li {
    width: 40px;
  }
}

*[class*=sns] img {
  filter: grayscale(0.8);
}

/*=========================
footer
=========================*/
.footer-nav {
  margin-bottom: 50px;
}
@media (min-width: 600px) {
  .footer-nav {
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 20px;
  }
}
@media (max-width: 599px) {
  .footer-nav__list {
    border-top: 1px solid var(--color-black);
  }
}
@media (min-width: 600px) {
  .footer-nav__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
}
@media (max-width: 599px) {
  .footer-nav__list > li {
    border-bottom: 1px solid var(--color-black);
  }
}
.footer-nav__ttl {
  font-weight: bold;
  display: flex;
  align-items: center;
}
@media (max-width: 599px) {
  .footer-nav__ttl {
    justify-content: space-between;
    padding: 10px 20px;
  }
}
@media (min-width: 600px) {
  .footer-nav__ttl {
    gap: 10px;
    margin-bottom: 25px;
  }
}
@media (min-width: 600px) {
  .footer-nav__ttl::before {
    content: "";
    display: block;
    width: 3px;
    height: 20px;
    background: var(--color-black);
  }
}
@media (max-width: 599px) {
  .footer-nav__ttl::after {
    content: "";
    display: block;
    width: 13px;
    height: 7px;
    background: url("../image/arrow_u.png") no-repeat center;
    background-size: contain;
    transition: 0.1s;
  }
}
.footer-nav__ttl.is--open::after {
  transform: rotate(180deg);
}
.footer-nav__body {
  font-size: var(--fontsize-small);
}
@media (max-width: 599px) {
  .footer-nav__body {
    background: var(--color-lightgray);
    display: none;
    padding: 15px 20px;
  }
}
.footer-nav__inner__list {
  display: grid;
}
@media (max-width: 599px) {
  .footer-nav__inner__list {
    gap: 8px;
  }
}
.footer-nav__inner__list li a {
  display: block;
  padding: 5px 0;
}
@media (max-width: 599px) {
  .footer-nav__inner__list li a {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--color-white);
    padding: 10px;
  }
}
@media (max-width: 599px) {
  .footer-nav__inner__list li a::before {
    content: "";
    display: block;
    background: var(--color-black);
    height: 6.9282032303px;
    width: 5px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
}
@media (min-width: 600px) {
  .footer-nav__inner__list li a::before {
    content: "・";
  }
}
.footer-nav__note {
  margin-top: 15px;
}
@media (min-width: 600px) {
  .footer-nav__note {
    margin-top: 20px;
  }
}

.footer-utility {
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .footer-utility {
    max-width: 1000px;
    padding: 0 20px;
  }
}
.footer-utility__list {
  font-size: var(--fontsize-small);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 599px) {
  .footer-utility__list {
    justify-content: center;
  }
}
@media (min-width: 600px) {
  .footer-utility__list {
    gap: 20px;
  }
}
.footer-utility__list li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-utility__list li::before {
  content: "";
  display: block;
  background: var(--color-black);
  height: 6.9282032303px;
  width: 5px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (min-width: 600px) {
  .footer-utility__list li::before {
    height: 10.3923048454px;
    width: 8px;
  }
}

.footer-copy {
  font-size: var(--fontsize-small);
  text-align: center;
  display: block;
  padding: 10px;
}
@media (min-width: 600px) {
  .footer-copy {
    padding: 30px;
  }
}

/*=========================
concept
=========================*/
.concept .section__ttl--sub {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .concept .section__ttl--sub {
    margin-bottom: 30px;
  }
}
.concept--img {
  background: #f0e9e1;
  line-height: 0;
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 600px) {
  .concept--img {
    margin-bottom: 150px;
  }
}
.concept--img img {
  max-width: 780px;
}
.concept--txt {
  text-align: center;
  line-height: 2;
  margin-bottom: 50px;
}
@media (min-width: 600px) {
  .concept--txt {
    margin-bottom: 80px;
  }
}

.concept + .sns {
  margin: 50px 0 80px;
}
@media (min-width: 600px) {
  .concept + .sns {
    margin: 200px 0;
  }
}

/*=========================
ranking
=========================*/
.ranking-contents {
  margin-top: 20px;
}
@media (min-width: 600px) {
  .ranking-contents {
    margin-top: 40px;
  }
}

.ranking-contents__menu {
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .ranking-contents__menu {
    max-width: 1050px;
    margin: 0 auto 50px;
  }
}
@media (min-width: 600px) {
  .ranking-contents__menu-slider {
    max-width: 1000px;
    margin: 0 auto;
  }
}
.ranking-contents__menu .swiper-slide {
  color: var(--color-gray);
  text-align: center;
  line-height: 1.6;
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 10px;
  cursor: pointer;
}
.ranking-contents__menu .swiper-slide.is-active {
  color: var(--color-black);
  font-weight: bold;
  border-bottom: 2px solid var(--color-black);
}
.ranking-contents__menu .slider-arrow--r,
.ranking-contents__menu .slider-arrow--l {
  width: var(--rankingSlider-btn-width);
  height: var(--rankingSlider-btn-height);
}
.ranking-contents__menu .slider-arrow--r:after,
.ranking-contents__menu .slider-arrow--l:after {
  width: var(--rankingSlider-btn-width);
  height: var(--rankingSlider-btn-height);
}

.ranking-contents__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 50px;
}
@media (min-width: 600px) {
  .ranking-contents__list {
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 50px;
    margin-bottom: 150px;
  }
}
.ranking-contents__list li {
  position: relative;
}
@media (min-width: 600px) {
  .ranking-contents__list li {
    width: calc((100% - 90px) / 4);
  }
}
@media (min-width: 600px) {
  .ranking-contents__list li:nth-child(-n+6) {
    width: calc((100% - 60px) / 3);
  }
}
.ranking-contents__list li::before {
  font-size: var(--fontsize-small);
  color: var(--color-white);
  white-space: nowrap;
  width: 20px;
  height: 20px;
  background: #575554;
  border-radius: 100%;
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media (min-width: 600px) {
  .ranking-contents__list li::before {
    width: 30px;
    height: 30px;
  }
}
.ranking-contents__list li:nth-child(1)::before {
  content: "1";
}
.ranking-contents__list li:nth-child(2)::before {
  content: "2";
}
.ranking-contents__list li:nth-child(3)::before {
  content: "3";
}
.ranking-contents__list li:nth-child(4)::before {
  content: "4";
}
.ranking-contents__list li:nth-child(5)::before {
  content: "5";
}
.ranking-contents__list li:nth-child(6)::before {
  content: "6";
}
.ranking-contents__list li:nth-child(7)::before {
  content: "7";
}
.ranking-contents__list li:nth-child(8)::before {
  content: "8";
}
.ranking-contents__list li:nth-child(9)::before {
  content: "9";
}
.ranking-contents__list li:nth-child(10)::before {
  content: "10";
}
.ranking-contents__list li:nth-child(11)::before {
  content: "11";
}
.ranking-contents__list li:nth-child(12)::before {
  content: "12";
}
.ranking-contents__list li:nth-child(13)::before {
  content: "13";
}
.ranking-contents__list li:nth-child(14)::before {
  content: "14";
}
.ranking-contents__list li:nth-child(15)::before {
  content: "15";
}
.ranking-contents__list li:nth-child(16)::before {
  content: "16";
}
.ranking-contents__list li:nth-child(17)::before {
  content: "17";
}
.ranking-contents__list li:nth-child(18)::before {
  content: "18";
}
.ranking-contents__list li:nth-child(19)::before {
  content: "19";
}
.ranking-contents__list li:nth-child(20)::before {
  content: "20";
}
.ranking-contents__list li:nth-child(21)::before {
  content: "21";
}
.ranking-contents__list li:nth-child(22)::before {
  content: "22";
}
.ranking-contents__list li:nth-child(23)::before {
  content: "23";
}
.ranking-contents__list li:nth-child(24)::before {
  content: "24";
}
.ranking-contents__list li:nth-child(25)::before {
  content: "25";
}
.ranking-contents__list li:nth-child(26)::before {
  content: "26";
}
.ranking-contents__list li:nth-child(27)::before {
  content: "27";
}
.ranking-contents__list li:nth-child(28)::before {
  content: "28";
}
.ranking-contents__list li:nth-child(29)::before {
  content: "29";
}
.ranking-contents__list li:nth-child(30)::before {
  content: "30";
}
.ranking-contents__list li:nth-child(31)::before {
  content: "31";
}
.ranking-contents__list li:nth-child(32)::before {
  content: "32";
}
.ranking-contents__list li:nth-child(33)::before {
  content: "33";
}
.ranking-contents__list li:nth-child(34)::before {
  content: "34";
}
.ranking-contents__list li:nth-child(35)::before {
  content: "35";
}
.ranking-contents__list li:nth-child(36)::before {
  content: "36";
}
.ranking-contents__list li:nth-child(37)::before {
  content: "37";
}
.ranking-contents__list li:nth-child(38)::before {
  content: "38";
}
.ranking-contents__list li:nth-child(39)::before {
  content: "39";
}
.ranking-contents__list li:nth-child(40)::before {
  content: "40";
}
.ranking-contents__list li:nth-child(41)::before {
  content: "41";
}
.ranking-contents__list li:nth-child(42)::before {
  content: "42";
}
.ranking-contents__list li:nth-child(43)::before {
  content: "43";
}
.ranking-contents__list li:nth-child(44)::before {
  content: "44";
}
.ranking-contents__list li:nth-child(45)::before {
  content: "45";
}
.ranking-contents__list li:nth-child(46)::before {
  content: "46";
}
.ranking-contents__list li:nth-child(47)::before {
  content: "47";
}
.ranking-contents__list li:nth-child(48)::before {
  content: "48";
}
.ranking-contents__list li:nth-child(49)::before {
  content: "49";
}
.ranking-contents__list li:nth-child(50)::before {
  content: "50";
}
.ranking-contents__list li:nth-child(51)::before {
  content: "51";
}
.ranking-contents__list li:nth-child(52)::before {
  content: "52";
}
.ranking-contents__list li:nth-child(53)::before {
  content: "53";
}
.ranking-contents__list li:nth-child(54)::before {
  content: "54";
}
.ranking-contents__list li:nth-child(55)::before {
  content: "55";
}
.ranking-contents__list li:nth-child(56)::before {
  content: "56";
}
.ranking-contents__list li:nth-child(57)::before {
  content: "57";
}
.ranking-contents__list li:nth-child(58)::before {
  content: "58";
}
.ranking-contents__list li:nth-child(59)::before {
  content: "59";
}
.ranking-contents__list li:nth-child(60)::before {
  content: "60";
}
.ranking-contents__list li:nth-child(61)::before {
  content: "61";
}
.ranking-contents__list li:nth-child(62)::before {
  content: "62";
}
.ranking-contents__list li:nth-child(63)::before {
  content: "63";
}
.ranking-contents__list li:nth-child(64)::before {
  content: "64";
}
.ranking-contents__list li:nth-child(65)::before {
  content: "65";
}
.ranking-contents__list li:nth-child(66)::before {
  content: "66";
}
.ranking-contents__list li:nth-child(67)::before {
  content: "67";
}
.ranking-contents__list li:nth-child(68)::before {
  content: "68";
}
.ranking-contents__list li:nth-child(69)::before {
  content: "69";
}
.ranking-contents__list li:nth-child(70)::before {
  content: "70";
}
.ranking-contents__list li:nth-child(71)::before {
  content: "71";
}
.ranking-contents__list li:nth-child(72)::before {
  content: "72";
}
.ranking-contents__list li:nth-child(73)::before {
  content: "73";
}
.ranking-contents__list li:nth-child(74)::before {
  content: "74";
}
.ranking-contents__list li:nth-child(75)::before {
  content: "75";
}
.ranking-contents__list li:nth-child(76)::before {
  content: "76";
}
.ranking-contents__list li:nth-child(77)::before {
  content: "77";
}
.ranking-contents__list li:nth-child(78)::before {
  content: "78";
}
.ranking-contents__list li:nth-child(79)::before {
  content: "79";
}
.ranking-contents__list li:nth-child(80)::before {
  content: "80";
}
.ranking-contents__list li:nth-child(81)::before {
  content: "81";
}
.ranking-contents__list li:nth-child(82)::before {
  content: "82";
}
.ranking-contents__list li:nth-child(83)::before {
  content: "83";
}
.ranking-contents__list li:nth-child(84)::before {
  content: "84";
}
.ranking-contents__list li:nth-child(85)::before {
  content: "85";
}
.ranking-contents__list li:nth-child(86)::before {
  content: "86";
}
.ranking-contents__list li:nth-child(87)::before {
  content: "87";
}
.ranking-contents__list li:nth-child(88)::before {
  content: "88";
}
.ranking-contents__list li:nth-child(89)::before {
  content: "89";
}
.ranking-contents__list li:nth-child(90)::before {
  content: "90";
}
.ranking-contents__list li:nth-child(91)::before {
  content: "91";
}
.ranking-contents__list li:nth-child(92)::before {
  content: "92";
}
.ranking-contents__list li:nth-child(93)::before {
  content: "93";
}
.ranking-contents__list li:nth-child(94)::before {
  content: "94";
}
.ranking-contents__list li:nth-child(95)::before {
  content: "95";
}
.ranking-contents__list li:nth-child(96)::before {
  content: "96";
}
.ranking-contents__list li:nth-child(97)::before {
  content: "97";
}
.ranking-contents__list li:nth-child(98)::before {
  content: "98";
}
.ranking-contents__list li:nth-child(99)::before {
  content: "99";
}
.ranking-contents__list li:nth-child(100)::before {
  content: "100";
}
.ranking-contents__list li:nth-child(1)::before {
  background: #b6974d;
}
.ranking-contents__list li:nth-child(2)::before {
  background: #a6a49f;
}
.ranking-contents__list li:nth-child(3)::before {
  background: #8f775f;
}

/*=========================
フリップデスク非表示
=========================*/
#flipdesk_root {
  display: none;
}