:root {
  /*color main tone*/
  --cl-pink-soft: #ffa8cc;
  --cl-pink-deep: #ff6b9d;
  --cl-pink-deep-o4: rgba(255, 107, 156, 0.4);
  --cl-blue-soft: #a4c8f5;
  --cl-blue-deep: #667eea;
  --cl-blue-deep-o4: rgba(102, 126, 234, 0.4);

  /*font size*/
  --fz-base: clamp(13.5px, 3.2vw, 16px);
  --fz-h2-title: clamp(20px, 4.5vw, 28px);
  --fz-h3-title: clamp(14px, 4.3vw, 18px);
  --fz-num-text: clamp(14px, 2.1vw, 16px);
}

.fw_bold {
  font-weight: bold;
}
.ta_c {
  text-align: center;
}

/*==hero関連==*/
.section-hero {
  position: relative;
  width: 100%;
  height: clamp(240px, 60vw, 400px);
  min-height: 240px;
  background-image: url("../ViComm/woman/Image/A001/bg/bg_gplay.png"), linear-gradient(135deg, var(--cl-pink-deep), var(--cl-pink-soft));
  background-blend-mode: color-dodge;
  background-size: auto, cover;
  background-position: center;
  background-repeat: repeat, no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-bottom: 40px;
}
.section-hero nav ol {
  list-style: none;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(95, 95, 95, 0.2);
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: clamp(12px, 2.7vw, 14px);
  text-align: left;
  padding: 0 1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #444;
}
.section-hero nav li a {
  position: relative;
  color: #fff;
  text-shadow: 0 1px 2px rgb(0, 0, 0, 0.25);
}
.breadcrumb li:not(:first-of-type) {
  position: relative;
}
.breadcrumb li:not(:first-of-type)::before {
  content: ">";
  margin-right: 0.5em;
  color: #444;
}

.heroText {
  all: unset;
  color: #fff;
  padding-inline: 1em;
}
.heroText .main {
  display: block;
  font-family: var(--ff-rock);
  font-size: clamp(20px, 5.3vw, 32px);
  font-weight: bold;
  text-shadow: 2px 2px 4px rgb(0 0 0 / 80%);
  min-height: 1.5em;
}
.heroText .sub {
  display: block;
  font-family: var(--ff-kosugi);
  font-size: clamp(16px, 3.8vw, 22px);
  margin-top: 0.8em;
  letter-spacing: 0.8px;
  text-shadow: 0 0 3px rgb(0 0 0 / 40%);
  line-height: 1.3;
  min-height: 1em;
}
.heroText .keyword {
  color: #ffd700;
}

/* TOPカラーtheme別 */
.section-hero.theme-blue {
  background-image: url(../ViComm/woman/Image/A001/bg/bg_gplay.png), linear-gradient(135deg, var(--cl-blue-soft), var(--cl-blue-deep));
}
.section-hero.theme-blue nav ol {
  background: rgba(95, 95, 95, 0.2);
}
.section-hero.theme-blue .keyword {
  color: #ff7b99;
}
/******************************/

/*==リード文==*/
.section-lead {
  padding: 0 1em;
}

/*==記事==*/
/***main***/
.main-article {
  width: min(100%, 960px);
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem) 1em clamp(3rem, 6vw, 5rem);
}
[class^="section-"] + [class^="section-"] {
  margin: clamp(40px, 16vw, 80px) 0;
}
[class^="section-"] + [class^="section-"]:last-child {
  margin-bottom: 0;
}

[class^="body-"] {
}
[class^="body-"] p {
  font-size: var(--fz-base);
  line-height: 1.7;
  letter-spacing: 0.03em;
  min-height: 1em;
}
[class^="body-"] > *:not(:last-child) {
  margin-bottom: 2.5em;
}

[class^="body-"] [class^="block-"] > *:not(:last-child) {
  margin-bottom: 1em;
}

/***lead***/
.lead-box {
  padding: 1em;
  border-radius: 10px;
  margin: 1.5em 0;
}
.lead-box:first-child {
  margin-top: 0;
}
.lead-box > .lead-text {
  font-size: var(--fz-base);
}

/***note***/
.note-box {
  background: #fff;
  border-radius: 10px;
  padding: 1.5em 1em;
}
[class^="note-box-"] {
  background-image: linear-gradient(135deg, #fff5f5, #ffe5ec);
  background-size: 140px, cover;
  background-position: center;
  background-repeat: repeat, no-repeat;
  box-shadow: 2px 2px 3px 0px #bbb;
  content-visibility: auto;
  min-height: 120px;

  border-left: 5px solid #ff6b9d;
  border-radius: 0 10px 10px 0;
  padding: 1.5em 1em;
}
.note-box-nonadult {
  border-left: 5px solid #3498db;
}
.note-box-adult {
  border-left: 5px solid #9c27b0;
}
.note-box-fuzzy,
.note-box-advice {
  border-left: none;
  border-radius: 10px;
}

[class^="note-box"] + [class^="note-box"] {
  margin-top: 1.5em;
}
.lazy-bg[data-bg] {
  background-image: none;
}

[class^="note-box"] > *:not(:last-child) {
  margin-bottom: 10px;
}
[class^="note-box"] .check-list,
[class^="note-box"] .voice-list {
  list-style: none;
}
[class^="note-box"] .check-list li {
  font-size: var(--fz-base);
  text-shadow: 0 1px 2px rgba(255, 105, 155, 0.15);
  margin-bottom: 0.3em;
}
[class^="note-box"] .check-list li::before {
  content: "・";
}
[class^="note-box"] .check-list li:last-child {
  margin-bottom: 0;
}
[class^="note-box"] .check-list-flex {
  list-style: none;
}
[class^="note-box"] .check-list-flex li:last-of-type {
  margin-bottom: 0;
}
[class^="note-box"] .check-list-flex li {
  display: flex;
  font-size: clamp(14px, 3.7vw, 16px);
  text-shadow: 0 1px 2px rgba(255, 105, 155, 0.15);
  margin-bottom: 0.5em;
}
[class^="note-box"] .check-list-flex li:before {
  content: "・";
  font-weight: bold;
}
[class^="note-box"] .check-list-flex li p:first-of-type {
  position: relative;
  padding-right: 1em;
  white-space: nowrap;
}
[class^="note-box"] .check-list-flex li p:first-of-type:after {
  content: "-";
  position: absolute;
  right: 0.7em;
  transform: translateX(50%);
  font-weight: bold;
}
[class^="note-box"] .voice-item {
  width: fit-content;
  max-width: 95%;
  background: #ffffff;
  border-radius: 8px;
  padding: 0.8em 1em;
  margin: 1em;
  position: relative;
  font-family: var(--ff-yomogi);
  font-weight: bold;
  font-style: italic;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  color: #444;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[class^="note-box"] .voice-item::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 20px;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-bottom-color: #ffffff;
  transform: rotate(-45deg);
}
[class^="note-box"] .voice-item:nth-of-type(even) {
  margin-left: auto;
}
[class^="note-box"] .voice-item:nth-of-type(even):after {
  left: auto;
  right: 20px;
  transform: rotate(45deg);
}
.voice-item.active {
  opacity: 1;
  transform: translateY(0);
}
.voice-item:nth-of-type(1) {
  transition-delay: 0.2s;
}
.voice-item:nth-of-type(2) {
  transition-delay: 0.5s;
}

/***card***/
[class^="card-box-"] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.card-box-3 .card-item {
  flex: 0 0 calc((100% - 24px) / 3);
  max-width: calc((100% - 24px) / 3);

  border: none;
  box-shadow: 2px 2px 5px 1px #bbb;
  background: #fff;
  border-radius: 10px;
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.card-box-2 .card-item,
.card-box-3split .card-item,
.card-box-4 .card-item {
  width: max(230px, calc(50% - 6px));
  flex-grow: 1;
  background: #fff;
  border: 1px solid var(--cl-pink-deep);
  border-radius: 10px;
  padding: 1em;
  box-shadow: 0 2px 6px rgb(0 0 0 / 5%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
[class^="card-box-"] ul {
  list-style: none;
}
[class^="card-box-"] .card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
[class^="card-box-"] .card-icon [class^="icon-"] {
  width: 2em;
  height: 2em;
}
[class^="card-box-"] .income {
  font-weight: bold;
  color: #e74c3c;
}

/*card:3column⇒1column*/
@media screen and (max-width: 768px) {
  .card-box-3 .card-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/***table***/
[class^="table-warap-"] {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
[class^="comparison-"] {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
[class^="comparison-"] thead th:first-child,
[class^="comparison-"] tbody th {
  width: 7.5em;
  white-space: nowrap;
  padding: 0.8em;
}
[class^="comparison-"] thead th:not(:first-child),
[class^="comparison-"] tbody td {
  width: calc((100% - 7.5em) / 2);
  padding: 0.8em;
}
[class^="comparison-"] thead th {
  background: linear-gradient(135deg, var(--cl-pink-deep), var(--cl-pink-soft));
  color: #fff;
  font-size: clamp(13px, 2.5vw, 16px);
  font-weight: bold;
  text-align: center;
}
[class^="comparison-"].theme-blue thead th {
  background: linear-gradient(135deg, var(--cl-blue-deep), var(--cl-blue-soft));
}
[class^="comparison-"] tbody tr {
  background: #fff;
  color: #333;
  font-size: clamp(11px, 2.8vw, 14px);
  text-align: center;
}
[class^="comparison-"] tbody tr:nth-child(even) {
  background: #f8f9fa;
}
[class^="comparison-"] tbody th.row {
  font-weight: bold;
}

/***imgGrid***/
[class^="imgGrid-"] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
[class^="gitem-"] {
  position: relative;
  width: max(230px, calc(50% - 8px));
  flex-grow: 1;
  background: #fff;
  border-radius: 10px;
  padding: 1em;
  box-shadow: -3px -3px 5px -3px var(--cl-pink-soft), 0 4px 6px 2px rgba(227, 186, 203, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}
[class^="gitem-"]:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
[class^="imgGrid-"] [class*="-anonymous"]:before {
  background-image: url(../ViComm/woman/Image/A001/sp/nonuser/seo/ico_secret.png);
  background-repeat: no-repeat;
  background-size: 120px;
  background-position: center;
}
[class^="gitem-"] > * {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.15);
}
/*gitem bgimage*/
[class^="imgGrid-"] .gitem-merit-anonymous:before {
  background-image: url(../ViComm/woman/Image/A001/sp/nonuser/seo/ico_secret.png);
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: 4px 4px;
}
[class^="imgGrid-"] [class*="-support"]:before {
  background-image: url(../ViComm/woman/Image/A001/sp/nonuser/seo/ico_clock.png);
  background-repeat: no-repeat;
  background-size: 120px;
  background-position: center;
}
[class^="imgGrid-"] .gitem-merit-support:before {
  background-image: url(../ViComm/woman/Image/A001/sp/nonuser/seo/ico_clock.png);
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: 4px 4px;
}
[class^="imgGrid-"] [class*="-facefree"]:before {
  background-image: url(../ViComm/woman/Image/A001/sp/nonuser/seo/ico_woman.png);
  background-repeat: no-repeat;
  background-size: 120px;
  background-position: center;
}
[class^="imgGrid-"] [class*="-dailypay"]:before {
  background-image: url(../ViComm/woman/Image/A001/sp/nonuser/seo/ico_wallet.png);
  background-repeat: no-repeat;
  background-size: 120px;
  background-position: center;
}
[class^="imgGrid-"] [class*="-remote"]:before {
  background-image: url(../ViComm/woman/Image/A001/sp/nonuser/seo/ico_house.png);
  background-repeat: no-repeat;
  background-size: 120px;
  background-position: center;
}
[class^="imgGrid-"] .gitem-merit-remote:before {
  background-image: url(../ViComm/woman/Image/A001/sp/nonuser/seo/ico_house.png);
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: 4px 4px;
}
[class^="imgGrid-"] [class*="-meet"]:before {
  background-image: url(../ViComm/woman/Image/A001/sp/nonuser/seo/ico_place.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: center;
}
[class^="imgGrid-"] [class*="-security"]:before {
  background-image: url(../ViComm/woman/Image/A001/sp/nonuser/seo/ico_security.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: center;
}
[class^="imgGrid-"] [class*="-easystart"]:before {
  background-image: url(../ViComm/woman/Image/A001/sp/nonuser/seo/ico_pc.png);
  background-repeat: no-repeat;
  background-size: 120px;
  background-position: center;
}
[class^="imgGrid-"] .gitem-merit-easystart:before {
  background-image: url(../ViComm/woman/Image/A001/sp/nonuser/seo/ico_pc.png);
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: 4px 4px;
}
[class^="imgGrid-"] [class*="-manual"]:before {
  background-image: url(../ViComm/woman/Image/A001/sp/nonuser/seo/ico_manual.png);
  background-repeat: no-repeat;
  background-size: 120px;
  background-position: center;
}
[class^="imgGrid-"] [class*="-advice"]:before {
  background-image: url(../ViComm/woman/Image/A001/sp/nonuser/seo/ico_lightbulb.png);
  background-repeat: no-repeat;
  background-size: 70px;
  background-position: center;
}

/***title***/
h2.title {
  all: unset;
  font-family: var(--ff-kosugi);
  width: 100%;
  display: inline-block;
  font-size: var(--fz-h2-title);
  font-weight: bold;
  color: var(--cl-pink-deep);
  margin-bottom: 30px;
  border-bottom: 3px solid var(--cl-pink-deep);
  padding-bottom: 10px;
}
h2.title:not(:first-child) {
  margin-top: 30px;
}
h2.title.theme-blue {
  color: var(--cl-blue-deep);
  border-bottom: 3px solid var(--cl-blue-deep);
}
h2.title-lead,
h3.title-lead {
  all: unset;
  font-family: var(--ff-kosugi);
  width: 100%;
  display: inline-block;
  font-size: var(--fz-h2-title);
  font-weight: bold;
  color: var(--cl-pink-deep);
  text-align: center;
  margin-bottom: 0.5em;
}

h3.card-title {
  font-size: var(--fz-h3-title);
  color: #ff6b9d;
}
h3.card-title-num {
  font-size: var(--fz-num-text);
  letter-spacing: -0.02em;
  color: #ff6b9d;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
h4.card-title {
  font-size: var(--fz-base);
  font-weight: bold;
}
h3.card-title-num .num {
  background: var(--cl-pink-deep);
  width: 1.5em;
  height: 1.5em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  align-self: flex-start;
  color: #fff;
  border-radius: 100%;
  box-shadow: 1px 1px 3px rgb(0 0 0 / 25%);
  text-shadow: 1px 1px 2px #ccc;
}

h3.note-title {
  all: unset;
  display: flex;
  align-items: center;
  gap: 0.25em;
  font-family: var(--ff-kosugi);
  font-weight: bold;
  color: #ff6b9d;
  font-size: clamp(16px, 4.2vw, 18px);
  margin-bottom: 0.5em;
}
.note-box-nonadult h3.note-title {
  color: #3498db;
}
.note-box-adult h3.note-title {
  color: #9c27b0;
}
.note-box-fuzzy h3.note-title {
  justify-content: center;
  color: #3a4f66;
}
.note-box-advice h3.note-title {
  justify-content: center;
}
h3.sub-title {
  color: var(--cl-blue-deep);
  font-family: "M PLUS 1";
  font-weight: 900;
  font-size: clamp(21px, 3.1vw, 27px);
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 0.5em;
}
h3[class^="heading-"] {
  text-align: center;
  font-size: clamp(16px, 3.1vw, 24px);
  margin: clamp(20px, 6vw, 40px) 0;
}
h3[class^="heading-"] .point {
  display: inline-block;
  color: var(--cl-pink-deep);
  font-family: "M PLUS 1";
  font-weight: 900;
  font-size: 115%;
  letter-spacing: 0.08em;
}

[class^="gitem-"] h3.title {
  position: relative;
  font-size: clamp(18px, 2.8vw, 22px);
  color: #333;
  text-shadow: 0 0 3px #fff;
  z-index: 1;
}
h3[class^="circle-title-"] {
  all: unset;
  display: flex;
  align-items: center;
  font-family: var(--ff-kosugi);
  font-weight: bold;
  font-size: clamp(16px, 4.2vw, 18px);
  position: relative;
  z-index: 2;
  padding-left: 0.7em;
  letter-spacing: 0.05em;
  text-shadow: 1px 0 0 #ffffff, 0 1px 0 #ffffff, -1px 0 0 #ffffff, 0 -1px 0 #ffffff, 1px -1px 0px #ffffff, 1px 1px 0px #ffffff, -1px 1px 0px #ffffff, -1px -1px 0px #ffffff;
}
h3[class^="circle-title-"]:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  width: 1.8em;
  height: 1.8em;
  border-radius: 50%;
  z-index: -1;
}
h3.circle-title-pink:before {
  background: var(--cl-pink-deep);
}

/***svgIcon***/
[class^="icon-"] {
  display: inline-block;
  vertical-align: middle;
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

/***box decoration***/
.lead-box.deco-frame-blue {
  box-shadow: 8px 8px 0px -2px var(--cl-blue-soft), -3px -3px 0px 6px var(--cl-blue-deep);
}
.lead-box.deco-frame-blue02 {
  box-shadow: 8px 8px 0px -2px var(--cl-blue-soft), -6px -6px 0px 3px #c7dfff;
}

.card-item.deco-bg_pattern-blue {
  border: none;
  background: url(/User/ViComm/woman/Image/A001/bg/bg_softNoise.png), #a3c7f4;
  background-blend-mode: overlay;
  box-shadow: 2px 2px 5px 1px rgb(0 0 0 / 20%);
}
.card-item.deco-bg-pink {
  border: none;
  background: linear-gradient(45deg, var(--cl-pink-soft), var(--cl-pink-deep));
  box-shadow: 2px 2px 5px 1px rgb(0 0 0 / 20%);
}
.card-item.deco-frame-blue {
  background: none;
  box-shadow: 7px 6px 0px -1px rgb(102 125 234);
  border: 2px #667dea solid;
  border-radius: 10px;
  background: none;
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

[class^="gitem-"].deco-bg-blue {
  box-shadow: -3px -3px 5px -3px var(--cl-blue-soft), 0 4px 6px 2px rgb(186 200 227 / 40%);
}
[class^="gitem-"].deco-frame-blue {
  box-shadow: -5px -5px 0px -3px var(--cl-blue-soft), 0 4px 6px 2px rgb(186 200 227 / 40%);
}

.note-box.deco-highlight_box-blue {
  background: linear-gradient(45deg, #a4c8f5, #667dea);
  position: relative;
  overflow: hidden;
}
.note-box.deco-highlight_box-blue:before {
  content: "";
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(20px);
}
.note-box.deco-highlight_box-blue p {
  position: relative;
  z-index: 2;

  color: #fff;
  text-align: center;
  line-height: 1.5;
  text-shadow: 0 0 2px rgb(0 0 0 / 30%);
  margin-bottom: 0;
}
.note-box.deco-highlight_box-blue p span {
  display: inline-block;
  font-size: 115%;
  font-weight: bold;
  letter-spacing: -0.05em;
  margin-top: 10px;

  color: var(--cl-pink-deep);
  text-shadow: 0 0 2px rgb(0 0 0 / 20%), 0 0 2px rgb(255 255 255);
}
.note-text.deco-highlight_text-pink {
  color: var(--cl-pink-deep);
  font-weight: bold;
}

/***title decoration***/
h3.title.deco-title-line_pink:before {
  content: "";
  position: absolute;
  background: linear-gradient(20deg, var(--cl-pink-soft), transparent 80%);
  width: calc(100% + 0.6em);
  height: 0.8em;
  border-radius: 5px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
h3.title.deco-title-line_blue:before {
  content: "";
  position: absolute;
  background: linear-gradient(20deg, var(--cl-blue-soft), transparent 80%);
  width: calc(100% + 0.6em);
  height: 0.8em;
  border-radius: 5px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
h4.card-title.deco-title-pink {
  color: var(--cl-pink-deep);
}

/***uservoice***/
[class^="uservoice-type"] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
[class^="uservoice-type"] .uservoice-castImage {
  position: relative;
  width: 55px;
  height: 55px;
  margin-inline: auto;
  background: radial-gradient(circle, #a4c8f5, #667eea 110%);
  border-radius: 50%;
  overflow: hidden;
  clip-path: inset(-40% 0 0 0);
}
.uservoice-typeA .uservoice-castImage {
  background: radial-gradient(circle, #a4c8f5, #667eea 110%);
}
.uservoice-typeB .uservoice-castImage {
  background: radial-gradient(circle, #ff92cb, #ff003d 110%);
}
.uservoice-typeC .uservoice-castImage {
  background: radial-gradient(circle, #fff9c4, #fbc02d 110%);
}
[class^="uservoice-type"] .uservoice-castImage img {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: auto;
}
.uservoice-castProfile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.uservoice-castProfile .cast-name {
  color: #fff;
  font-size: clamp(12px, 1.3vw, 13px);
  letter-spacing: -0.03em;
  font-weight: bold;
}
.uservoice-castProfile .monthly-reward {
  color: #fff;
  font-size: clamp(10px, 1.3vw, 13px);
  line-height: 1.3;
}
.work-card-uservoice .uservoice-comment {
  color: #fff;
  font-size: clamp(14px, 1.5vw, 15px);
  letter-spacing: 0.01em;
}

/***星評価***/
.star-rating {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  color: #ccc;
  font-family: "Arial", "Meiryo", sans-serif;
}
.star-rating .stars-base {
  letter-spacing: -3px;
}
.star-rating .stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  color: gold;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: -3px;
  width: 0;
}

/***ページ単位***/
[data-page="over30"] .income-case-amount {
  color: var(--cl-pink-deep);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: bold;
}
[data-page="over30"] .income-case-period {
  font-weight: bold;
}
[data-page="over30"] .income-case-comment {
  font-size: clamp(11px, 1.5vw, 13px);
}

[data-page="tel_lady"] .section-reward ul {
  padding-left: 2.5em;
}
