@charset "UTF-8";


/*---------------------------------------------------------------*\
$body
\*---------------------------------------------------------------*/

body {
  background-color: #000;
  position: relative;
}

body:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  max-width: 480px;
  height: 200px;
  background-image: url('../img/ranking/background_top.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

main {
  width: calc(100% - 64px);
  margin: 140px auto 64px;
  max-width: 480px;
  position: relative;
  z-index: 1;
}

#menu_header {
  display: none;
}


/*---------------------------------------------------------------*\
$header
\*---------------------------------------------------------------*/

header {
  display: none !important;
}


/*---------------------------------------------------------------*\
$heading
\*---------------------------------------------------------------*/

#heading {
  gap: 8px;
}

#heading .sub_heading {
  font-size: 13px;
}

#heading .heading {
  font-size: 23px;
}

#heading .date {
  font-size: 11px;
}

#heading .description {
  font-size: 15px;
  margin: 16px 0 0 0;

}



/*---------------------------------------------------------------*\
$products
\*---------------------------------------------------------------*/

#services .content {
  position: relative;
  z-index: 5;
  margin: 64px auto 0;
  gap: clamp(16px, 3vw, 36px);
}

#services .each_product {
  position: relative;
  padding: 12px 12px 20px;
  justify-content: space-between;
  background: #000;
  border-radius: 20px;
  gap: 10px;
}

#services .each_product::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  /* border-width相当 */
  background: linear-gradient(180deg, #FF0078, #75FBFD);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

#services .profile_image {
  margin: 0 0 8px 0;
  border-radius: 14px;
}

#services .name_product {
  font-size: 13px;
}