@charset "UTF-8";

/* ========================================================
# ベース設定
======================================================== */
:root {
  /* カラー */
  --Text: #494949;
  --Text_blue: #1a0dab;
  --Main: #d5eae3;
  --Sub: #ffd3df;
  --Accent: #d84067;
  --Back: #fff5e7;
  --gray: #adadad;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Noto Sans JP Bold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Noto Sans JP Medium.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Noto Sans JP Regular.woff") format("woff");
  font-display: swap;
}

body {
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: var(--Text);
}

a,
button {
  color: inherit;
  transition: all 0.3s;
}

strong {
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

@media (any-hover: hover) {
  a:hover,
  button:hover {
    opacity: 0.6;
  }
}

/* ========================================================
# ユーティリティ
======================================================== */
.forPC {
  display: none;
}

.forSP {
  display: block;
}

.color-red {
  color: var(--Accent);
}

.notes {
  display: block;
  font-size: 10px;
  margin-top: 4px;
  color: gray;
  font-weight: normal;
}

/* ========================================================
# レイアウト
======================================================== */
/* デザイン幅 */
.wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

/* インナー幅 */
.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.inner--sm {
  max-width: 375px;
}

/* セクション間の余白 */
.layout-section {
  margin-top: 32px;
}

/* ========================================================
# 共通パーツ
======================================================== */
/* 二重丸 */
.verygood {
  display: block;
  width: 38px;
  height: 38px;
  background: url(../img/ico_verygood.svg) no-repeat center center / contain;
  margin: 0 auto;
}

/* 丸 */
.good {
  display: block;
  width: 38px;
  height: 38px;
  background: url(../img/ico_good.svg) no-repeat center center / contain;
  margin: 0 auto;
}

.notgood {
  display: block;
  width: 38px;
  height: 38px;
  background: url(../img/ico_notgood.svg) no-repeat center center / contain;
  margin: 0 auto;
}

/* バツ */
.bad {
  display: block;
  width: 38px;
  height: 38px;
  background: url(../img/ico_bad.svg) no-repeat center center / contain;
  margin: 0 auto;
}

/* ========================================================
# コンポーネント ボタン
======================================================== */
.btn {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: var(--Accent);
  padding: 23px;
  border-radius: 100vmax;
  min-width: 335px;
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: none;
}

.btn::before {
  content: "";
}

.btn::after {
  content: "";
  display: block;
  width: 24px;
  height: auto;
  aspect-ratio: 1;
  mask: url(../img/ico_arrow.svg) no-repeat center center / contain;
  -webkit-mask: url(../img/ico_arrow.svg) no-repeat center center / contain;
  background-color: #fff;
  rotate: -90deg;
  justify-self: flex-end;
}

.btn.btn--green {
  background-color: #8ac8b3;
  color: var(--Text);
}

.btn.btn--green::after {
  background-color: var(--Text);
}

/* ========================================================
# コンポーネント ボタン
======================================================== */
.btn2 {
  display: inline-block;
  padding: 10px;
  background-color: var(--Accent);
  border-radius: 100vmax;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: bold;
  width: 96%;
}

.btn2.btn2--white {
  background-color: #fff;
  color: var(--Accent);
  border: 1px solid var(--Accent);
}

.btn2.btn2--arrow {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  font-size: 12px;
  padding: 6px;
}

.btn2.btn2--arrow::after {
  content: "";
  display: block;
  width: 18px;
  height: auto;
  aspect-ratio: 1;
  mask: url(../img/ico_arrow.svg) no-repeat center center / contain;
  background-color: #fff;
  rotate: -90deg;
}

.btn2.btn2--white.btn2--arrow::after {
  background-color: var(--Accent);
  rotate: 0deg;
}

/* サブボタン */
.btnSub {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  background-color: #fff;
  padding: 10px;
  margin-top: 16px;
  border-radius: 100vmax;
  min-width: 260px;
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid var(--Accent);
  color: var(--Accent);
}

.btnSub::before {
  content: "";
}

.btnSub::after {
  content: "";
  display: block;
  width: 24px;
  height: auto;
  aspect-ratio: 1;
  mask: url(../img/ico_arrow.svg) no-repeat center center / contain;
  background-color: var(--Accent);
  rotate: -90deg;
  justify-self: flex-end;
}

/* ========================================================
# 共通パーツ form
======================================================== */
.form {
}

.form__wrapper {
  display: grid;
  gap: 10px;
}

.form__ttl {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.03em;
  display: flex;
  justify-content: space-between;
}

.form__ttlSub {
  color: var(--Accent);
}

.form__desc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 12px;
  margin-top: 4px;
}

.form__label input,
.form__label2 input {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.form__label {
  border: 1px solid var(--Text);
  border-radius: 4px;
  padding: 10px 2px 10px 10px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: center;
  position: relative;
  transition: all 0.3s;
}

.form__txt,
.form__txt2 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
}

.form__txt.form__txt--sm {
  font-size: 12px;
}

.form__txt2 {
  display: block;
  margin-top: 6px;
}

.form__label:has(input[type="radio"])::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #ffd3df;
  border-radius: 50%;
  transition: all 0.3s;
}

.form__label:has(input[type="checkbox"])::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #ffd3df;
  transition: all 0.3s;
}

.form__label:has(input[type="radio"]:checked),
.form__label:has(input[type="checkbox"]:checked),
.form__label2:has(input[type="checkbox"]:checked) {
  background-color: var(--Sub);
}

.form__label:has(input[type="radio"]:checked)::before,
.form__label:has(input[type="checkbox"]:checked)::before {
  background-color: #fff;
}

.form__label:has(input[type="radio"])::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 14px;
  translate: 0 -50%;
  background-color: var(--Accent);
  opacity: 0;
  transition: all 0.3s;
}

.form__label:has(input[type="checkbox"])::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 13px;
  translate: 0 -50%;
  background: url(../img/ico_check.svg) no-repeat center center / contain;
  opacity: 0;
  transition: all 0.3s;
}

.form__label:has(input[type="radio"]:checked)::after,
.form__label:has(input[type="checkbox"]:checked)::after {
  opacity: 1;
}

.form__label2 {
  border: 1px solid var(--Text);
  border-radius: 4px;
  padding: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.form__label2 img {
  width: 37px;
  height: 46px;
  object-fit: contain;
}

.form__label2.form__label2--all img {
  width: 32px;
  height: 32px;
}

.form__btn {
  margin-top: 24px;
  text-align: center;
}

/* ========================================================
# セクション ヘッダー
======================================================== */
.header {
  padding: 10px 5px;
}

.header__inner {
  position: relative;
}

.header__logo {
  width: 94px;
  display: block;
}

.header__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ========================================================
# セクション mv
======================================================== */
.mv__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

h1.mv + small {
  font-size: 10px;
}

.mv__wrap {
  display: flex;
  gap: 4px;
  max-width: 660px;
  margin-inline: auto;
}

.mv__wrap small {
  font-size: 9px;
}

/* ========================================================
# セクション about
======================================================== */
.about__lead {
  text-align: center;
}

.about__lead span {
  display: inline-block;
  position: relative;
  padding-inline: 15px;
  font-size: 18px;
  font-weight: bold;
}

.about__lead span::before {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 2px;
  height: 16px;
  background-color: var(--Text);
  content: "";
  rotate: -20deg;
}

.about__lead span::after {
  position: absolute;
  bottom: 2px;
  right: 0;
  width: 2px;
  height: 16px;
  background-color: var(--Text);
  content: "";
  rotate: 20deg;
}

.about__subTtl {
  margin-top: 24px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  text-decoration: underline;
}

.about__txt {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #494949;
  margin-top: 8px;
  padding: 0 20px;
  font-weight: normal;
}

.about__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about__img2 {
  margin-top: 24px;
}

.about__ttl {
  margin-top: 24px;
}

/* ========================================================
# セクション pickup
======================================================== */
.pickup {
  margin-top: 14px;
}

.pickup__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ========================================================
# セクション nikibi
======================================================== */
.nikibi {
  margin-top: 24px;
}

.nikibi__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* .nikibi__txt{
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #494949;
  margin-top: 8px;
  padding: 0 20px;
  font-weight: normal;
} */

/* ========================================================
# セクション point
======================================================== */
.point {
  position: relative;
  /* margin-top: 54px; */
}

.point > .point__accordion {
  margin-left: 20px;
  margin-right: 20px;
}

.point__txt::after {
  content: "";
  display: block;
  width: 40px;
  height: 23px;
  background-color: #fb645a;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  margin: 20px auto;
  /* position: absolute;
  top: -15px;
  left: 50%;
  translate: -50% -100%; */
}

.point__txt {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #494949;
  /* margin-top: 8px; */
  margin-top: 20px;
  padding: 0 20px;
  font-weight: normal;
  position: relative;
}

/* アコーディオンコンテンツ */
.point__contents {
  /* display: none; */
  height: 200px;
  overflow: hidden;
  position: relative;
  padding-bottom: 110px;
}

.point__contents.open {
  height: auto;
}

.point__mask {
  display: block;
  width: 100%;
  height: 160px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.point__mask.open {
  height: 0;
}

.point__items {
  display: grid;
  gap: 18px;
}

.point__text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.point__text.top {
  margin-top: -6px;
}

.underline {
  background: linear-gradient(transparent 60%, #f6e0dc 60%);
}

.underline_wh {
  background: linear-gradient(transparent 60%, #fff 60%);
}

.point__accordion {
  margin-top: 16px;
  text-align: center;
  border: 1px solid var(--Text);
  border-radius: 4px;
  padding: 20px 22px;
  min-width: 335px;
  background-color: #fff;
}

.point__accordion--more {
  position: absolute;
  bottom: 30px;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
}

.point__content {
  display: none;
  padding-top: 16px;
}

.point__btn {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  border-radius: 100vmax;
  width: fit-content;
  margin: 0 auto;
  display: inline-grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  text-align: center;
  background-color: transparent;
  border: none;
  padding: 0;
  width: 100%;
  cursor: pointer;
}

.point__btn::after {
  content: "";
  display: block;
  width: 24px;
  height: auto;
  aspect-ratio: 1;
  background: url(../img/ico_arrow.svg) no-repeat center center / contain;
  transition: rotate 0.3s;
}

.point__btn.open::after {
  rotate: 180deg;
}

.point__listItem {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-align: left;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px;
}

.point__listItem::before {
  content: "・";
  display: block;
}

.point__tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  justify-items: center;
  align-items: end;
  gap: 6px;
  border-bottom: 1px solid #8ac8b3;
  padding-inline: 10px;
}

.point__tab {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  border-top: 1px solid #8ac8b3;
  border-bottom: none;
  border-left: 1px solid #8ac8b3;
  border-right: 1px solid #8ac8b3;
  border-radius: 4px 4px 0 0;
  width: 100%;
  padding: 4px 2px 3px;
  background-color: #8ac8b3;
  cursor: pointer;
}

.point__tab:hover {
  opacity: 1;
}

.point__tab.is-active {
  background-color: #fff;
}

.point__tab img {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}

.point__tab.is-active img {
  width: 35px;
  height: 35px;
}

.point__tab span {
  color: #fff;
  font-size: 11px;
  line-height: 1;
  text-align: center;
}

.point__tab.is-active span {
  color: var(--Text);
  font-weight: bold;
}

.point__tabContents {
  margin-top: 10px;
  padding: 15px 30px;
  background: url(../img/ct_point_tab_back.png.webp) no-repeat center center /
    cover;
}

.point__tabContent {
  display: none;
}

.point__tabContent.is-active {
  display: block;
}

.point__tabList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.point__tabItem {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 15px;
  align-items: center;
}

.point__tabItem img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.point_ttl_text {
  font-size: 14px;
  text-decoration: underline;
  color: var(--Text_blue);
  font-weight: bold;
}

.point_item {
  padding: 9px;
  background-color: color-mix(in srgb, var(--Back) 80%, transparent);
  border-radius: 50%;
  margin: 0 auto;
}

.point_item img {
  width: 100px;
  height: auto;
}

.point_text {
  font-size: 14px;
}

.point__tabBody {
}

.point__tabTtl {
  border: 1px solid var(--Text);
  padding: 5px 12px;
  background-color: #fff;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.03em;
}

.point__tabTtl--accent {
  background-color: #d5eae3;
}

.point__tabSubList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin-top: 10px;
  padding-left: 8px;
}

.point__tabSubItem {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.point__tabSubItem::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  background: url(../img/ico_dot.svg) no-repeat center center / cover;
  content: "";
}

.point__tabSubItem .strong {
  font-weight: bold;
}

.point__tabSubItem .sm {
  font-size: 12px;
}

/* ========================================================
# セクション hikaku
======================================================== */
.hikaku__wrap {
  margin-top: 12px;
  position: relative;
}

.hikaku__txt {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-top: 10px;
}

.hikaku__table {
  display: grid;
  grid-template-columns: 46px repeat(3, 1fr);
}

.hikaku__tableHead,
.hikaku__tableBody {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
}

.hikaku05 .hikaku__tableHead,
.hikaku05 .hikaku__tableBody {
  grid-row: span 8;
}

.hikaku__tableTtl {
  background-color: var(--Main);
  display: grid;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1.3;
  border-bottom: 1px solid #5b5b5b;
  border-left: 1px solid #5b5b5b;
  padding: 12px 6px;
  text-align: center;
}

.hikaku__tableTtl:first-child {
  border-radius: 4px 0 0 0;
  border-top: 1px solid #5b5b5b;
}

.hikaku__tableTtl:last-child {
  border-radius: 0 0 0 4px;
}

.hikaku__tableCel {
  border-left: 1px solid #5b5b5b;
  border-bottom: 1px solid #5b5b5b;
  padding: 6px 2px;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
}

.hikaku__tableCel:first-child {
  border-top: 1px solid #5b5b5b;
}

.hikaku__table > div:nth-child(2) {
  background-color: var(--Back);
}

.hikaku__tableBody:last-child .hikaku__tableCel {
  border-right: 1px solid #5b5b5b;
}

.hikaku__tableBody:last-child .hikaku__tableCel:first-child {
  border-radius: 0 4px 0 0;
}

.hikaku__tableBody:last-child .hikaku__tableCel:last-child {
  border-radius: 0 0 4px 0;
}

.hikaku__tableBody:nth-child(1 of .hikaku__tableBody)
  .hikaku__tableCel:first-child::before,
.hikaku__tableBody:nth-child(2 of .hikaku__tableBody)
  .hikaku__tableCel:first-child::before,
.hikaku__tableBody:nth-child(3 of .hikaku__tableBody)
  .hikaku__tableCel:first-child::before {
  content: "";
  display: block;
  width: 28px;
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto;
}

.hikaku__tableBody:nth-child(1 of .hikaku__tableBody)
  .hikaku__tableCel:first-child::before {
  background: url(../img/ico_ranking_1.svg) no-repeat center center / contain;
}

.hikaku__tableBody:nth-child(2 of .hikaku__tableBody)
  .hikaku__tableCel:first-child::before {
  background: url(../img/ico_ranking_2.svg) no-repeat center center / contain;
}

.hikaku__tableBody:nth-child(3 of .hikaku__tableBody)
  .hikaku__tableCel:first-child::before {
  background: url(../img/ico_ranking_3.svg) no-repeat center center / contain;
}

.hikaku__tableCel--left {
  text-align: left;
}

.hikaku__tableCel--center {
  display: grid;
  place-items: center;
}

.hikaku__bnr {
  display: block;
}

.hikaku__bnr img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.hikaku__link {
  margin-top: 2px;
  display: inline-block;
  color: var(--Text_blue);
  font-weight: bold;
  font-size: 12px;
  line-height: 1.3;
}

.hikaku__link.single {
  line-height: 28px;
}

.hikaku__logo {
  height: 25px;
  object-fit: fill;
  width: calc(100% - 23px);
  margin-inline: auto;
}

.hikaku__tableBtn {
  margin-top: 4px;
}

.hikaku__table + small {
  font-size: 10px;
  display: block;
  margin-top: 4px;
}

.hikaku__table small {
  font-size: 10px;
}

/* ========================================================
# セクション hikaku3
======================================================== */
.hikaku3__inner {
  padding-right: 0;
  padding-left: 0;
}

.hikaku3__ttl {
  text-align: center;
  font-size: 18px;
  padding: 0 20px;
}

.hikaku3__wrap {
  margin-top: 4px;
  position: relative;
  overflow-x: scroll;
  padding-right: 20px;
}

.hikaku3__table {
  display: grid;
  grid-template-columns: 1fr 96px 190px 1fr;
  white-space: nowrap;
  min-width: 540px;
}

.hikaku3__tableHead,
.hikaku3__tableBody {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 4;
}

.hikaku3__tableTtl {
  background-color: var(--Main);
  display: grid;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1.3;
  border-bottom: 1px solid #5b5b5b;
  border-left: 1px solid #5b5b5b;
  border-top: 1px solid #5b5b5b;
  padding: 12px 6px;
}

.hikaku3__tableTtl:first-child {
  border-radius: 4px 0 0 0;
  border-top: 1px solid #5b5b5b;
}

.hikaku3__tableTtl:last-child {
  border-right: 1px solid #5b5b5b;
  border-radius: 0 4px 0 0;
}

.hikaku3__tableCel {
  border-left: 1px solid #5b5b5b;
  border-bottom: 1px solid #5b5b5b;
  padding: 3px 2px;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
}

.hikaku3__tableCel:last-child {
  border-right: 1px solid #5b5b5b;
}

body
  > div.wrapper
  > section.hikaku3.layout-section
  > div
  > div
  > div
  > div:nth-child(2) {
  background-color: var(--Back);
}

.hikaku3__tableBody:last-child .hikaku3__tableCel:first-child {
  border-radius: 0 0 0 4px;
}

.hikaku3__tableBody:last-child .hikaku3__tableCel:last-child {
  border-radius: 0 0 4px 0;
}

.hikaku3__tableBody:nth-child(1 of .hikaku__tableBody)
  .hikaku3__tableCel:first-child::before,
.hikaku3__tableBody:nth-child(2 of .hikaku__tableBody)
  .hikaku3__tableCel:first-child::before,
.hikaku3__tableBody:nth-child(3 of .hikaku__tableBody)
  .hikaku3__tableCel:first-child::before {
  content: "";
  display: block;
  width: 28px;
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto;
}

.hikaku3__tableBody:nth-child(1 of .hikaku__tableBody)
  .hikaku3__tableCel:first-child::before {
  background: url(../img/ico_ranking_1.svg) no-repeat center center / contain;
}

.hikaku3__tableBody:nth-child(2 of .hikaku__tableBody)
  .hikaku3__tableCel:first-child::before {
  background: url(../img/ico_ranking_2.svg) no-repeat center center / contain;
}

.hikaku3__tableBody:nth-child(3 of .hikaku__tableBody)
  .hikaku3__tableCel:first-child::before {
  background: url(../img/ico_ranking_3.svg) no-repeat center center / contain;
}

.hikaku3__tableCel--left {
  text-align: left;
}

.hikaku3__tableCel--center {
  display: grid;
  place-items: center;
}

.hikaku3__tableCel--center:has(.hikaku3__tableBtn) {
  justify-items: stretch;
  align-content: center;
}

.hikaku3__tableTxt {
  /* min-height: 90px; */
  padding-bottom: 5px;
  font-weight: bold;
}

.hikaku3__img {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.hikaku3__link {
  margin-top: 2px;
  display: inline-block;
  color: var(--Text_blue);
  font-weight: bold;
  font-size: 12px;
  line-height: 1.3;
}

.hikaku3__link.single {
  line-height: 28px;
}

.hikaku3__tableBtn {
  margin-top: 4px;
  margin-left: 4px;
  margin-right: 4px;
}

.hikaku3__tableBtn + .hikaku3__tableBtn {
  margin-top: 8px;
}

.hikaku3__table + small {
  font-size: 10px;
  display: block;
  margin-top: 4px;
}

.hikaku3__table small {
  font-size: 10px;
}

.hikaku3__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding-left: 2px;
  padding-right: 2px;
}

.hikaku3__tagLabel {
  display: block;
  background-color: var(--Main);
  padding: 4px 8px;
  border-radius: 100vmax;
  font-size: 10px;
  line-height: 1.3;
  font-weight: bold;
}

.hikaku3 .positioningMap__caution {
  padding: 0 14px 18px 14px;
}

/* ========================================================
# セクション search
======================================================== */
.search__inner {
  margin-top: 2px;
}

/* ========================================================
# セクション ranking
======================================================== */
.ranking__best3 {
  margin-top: 12px;
}

/* 各案件 */
.ranking__item {
  position: relative;
}

.ranking__item:nth-child(n + 2) {
  margin-top: 34px;
}

.ranking__item small {
  font-size: 10px;
}

/* ヘッダー */
.ranking__head {
  background-color: var(--Main);
  margin-top: 34px;
}

#ranking1 > div.ranking__head {
  margin-top: 0;
}

.ranking__headInner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 21px;
  align-items: center;
  padding: 8px 20px 8px 15px;
}

.ranking__headWrap {
  display: flex;
  align-items: center;
}

.ranking__headWrap::after {
  content: "";
  display: block;
  width: 24px;
  height: auto;
  aspect-ratio: 1;
  background: url(../img/ico_arrow.svg) no-repeat center center / contain;
  rotate: -90deg;
  flex-shrink: 0;
  margin-left: auto;
}

.ranking__link {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  text-decoration: underline;
}

.ranking__label {
  width: 64px;
  height: auto;
  aspect-ratio: 1;
}

#ranking1 > div.ranking__head > div > div.ranking__label,
.result .shop-box:nth-child(1) .ranking__label {
  background: url(../img/ico_ranking_1.svg) no-repeat center center / contain;
}

#ranking2 > div.ranking__head > div > div.ranking__label,
.result .shop-box:nth-child(2) .ranking__label {
  background: url(../img/ico_ranking_2.svg) no-repeat center center / contain;
}

#ranking3 > div.ranking__head > div > div.ranking__label,
.result .shop-box:nth-child(3) .ranking__label {
  background: url(../img/ico_ranking_3.svg) no-repeat center center / contain;
}

.ranking__img {
  display: block;
  margin: 20px auto 0;
}

.ranking__official_wrap {
  text-align: right;
}

.ranking__official {
  color: var(--Text_blue);
  font-weight: bold;
  text-align: right;
  text-decoration: underline;
  margin-top: 6px;
  display: inline;
  position: relative;
}

.ranking__official::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--Main);
  border-right: 0;
  left: -1.3em;
  top: 50%;
  transform: translateY(-50%);
}

.ranking__official.forPC {
  display: none;
}

/* 表 */
.ranking__body {
  margin-top: 18px;
}

.ranking__table {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #5b5b5b;
}

.ranking__tableRow {
  display: grid;
  grid-template-columns: 96px 1fr;
}

.ranking__tableRow:last-child .ranking__tableHead,
.ranking__tableRow:last-child .ranking__tableData {
  border-bottom: none;
}

.ranking__tableHead {
  background-color: var(--Main);
  font-size: 12px;
  line-height: 1.3;
  display: grid;
  align-items: center;
  border-bottom: 1px solid #5b5b5b;
  border-right: 1px solid #5b5b5b;
  padding: 11px 8px;
}

.ranking__tableData {
  padding: 10px 12px;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  border-bottom: 1px solid #5b5b5b;
}

.ranking__annotation {
  font-size: 11px;
  display: block;
  line-height: 1.2;
  margin-top: 6px;
}

/* タグ */
.ranking__tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 4px;
  margin-top: 10px;
}

.ranking__tag {
  display: inline-block;
  font-size: 10px;
  line-height: 1.3;
  padding: 4px 12px;
  border-radius: 100vmax;
  background-color: var(--Main);
}

.ranking__tag.ranking__tag--gray {
  background-color: #e4e4e4;
  color: #adadad;
}

/* タグリストの下部　チェック */
.ranking__list {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.ranking__listTitle {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #494949;
  position: relative;
  padding-left: 26px;
}

.ranking__listTitle::before {
  position: absolute;
  content: "";
  display: block;
  width: 24px;
  height: auto;
  aspect-ratio: 1;
  background: url(../img/ico_check_green.svg) no-repeat center center / contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ranking__listText {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #494949;
  margin-top: 8px;
}

.ranking__listAttention {
  margin-top: 6px;
  display: block;
}

.ranking__listImg {
  display: block;
  margin: 0 auto;
  width: 72%;
  border: 1px solid #ccc;
}

.ranking__bnr {
  margin-top: 22px;
  display: block;
}

.review__wrap {
  margin-top: 30px;
}

.review__ttl {
  text-align: left;
  font-weight: bold;
  border-left: solid 5px var(--Main);
  font-size: 16px;
  padding: 4px 0 4px 6px;
}

.review__inside {
  margin-top: 20px;
}

.review__box {
  padding: 8px;
  border: solid 1px var(--gray);
}

.review__box:not(:first-of-type) {
  margin-top: 10px;
}

.review__top {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  align-items: start;
}

.review__top--lg {
  grid-template-columns: 75px 1fr;
  align-items: center;
}

.review__type {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.review__icon {
  width: 50px;
  height: auto;
}

.review__head {
  font-size: 14px;
  font-weight: bold;
}

.review__stars {
  color: #ffd500;
  font-size: 14px;
}

.review__stars__black {
  font-size: 14px;
}

.review__stars__black,
.taiken__stars__black {
  color: #bababa;
  color: var(--gray);
}

.taiken__stars {
  color: #ffd500;
  font-size: 20px;
}

.taiken__stars__black {
  font-size: 20px;
}

.review__txt {
  font-size: 14px;
  margin-top: 4px;
}

.review__info {
  font-size: 12px;
  margin-top: 6px;
}

.review__info--right {
  text-align: right;
}

.review__moreBtn {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  width: fit-content;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  text-align: center;
  border: 1px solid var(--Text);
  border-radius: 4px;
  padding: 14px 16px;
  min-width: 335px;
  background-color: transparent;
}

.review__moreBtn::after {
  content: "";
  display: block;
  width: 24px;
  height: auto;
  aspect-ratio: 1;
  background: url(../img/ico_arrow.svg) no-repeat center center / contain;
  transition: rotate 0.3s;
}

.review__moreBtn.is-open::after {
  rotate: 180deg;
}

.taiken__wrap {
  margin-top: 50px;
}

.taiken__ttl {
  font-size: 16px;
  font-weight: bold;
}

.taiken__stars__wrap {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 20px;
}

.taiken__lists {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.taiken__img {
  width: 100px;
  height: 100px;
}

.taiken__body-ttl {
  font-size: 14px;
  font-weight: bold;
}

.taiken__lists:not(:first-of-type) {
  margin-top: 18px;
}

.taiken__body {
  margin-top: 4px;
}

.taiken__body-txt {
  margin-top: 4px;
  font-size: 14px;
}

.taiken__link__wrap {
  text-align: right;
  margin-top: 20px;
}

.taiken__link {
  color: var(--Text_blue);
  font-weight: bold;
  text-align: right;
  text-decoration: underline;
  margin-top: 6px;
  display: inline;
  position: relative;
}

.review__more {
  margin-top: 20px;
  display: none;
}

.ranking__btn {
  margin-top: 17px;
  text-align: center;
}

.ranking__btnText {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

/* 6位以下を見るボタン */
.ranking__moreBtn {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  width: fit-content;
  margin: 33px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  text-align: center;
  border: 1px solid var(--Text);
  border-radius: 4px;
  padding: 20px 22px;
  min-width: 335px;
  background-color: transparent;
}

.ranking__moreBtn::after {
  content: "";
  display: block;
  width: 24px;
  height: auto;
  aspect-ratio: 1;
  background: url(../img/ico_arrow.svg) no-repeat center center / contain;
  transition: rotate 0.3s;
}

.ranking__moreBtn.is-open::after {
  rotate: 180deg;
}

/* 6位以下 */
.ranking__other {
  display: none;
}

.ranking__other .ranking__label,
.result
  .shop-box:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3))
  .ranking__label {
  width: auto;
  height: 64px;
  aspect-ratio: initial;
  display: flex;
  gap: 5px;
}

.ranking__other .ranking__label::before,
.result
  .shop-box:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3))
  .ranking__label::before {
  content: "";
  display: block;
  width: 6px;
  height: 100%;
  background-color: #fff;
}

.ranking__other .ranking__label::after,
.result
  .shop-box:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3))
  .ranking__label::after {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background-color: #fff;
}

/* 検索結果のとき */
.ranking--result .ranking__label {
  display: none;
}

.ranking--result .ranking__headInner {
  min-height: 80px;
  grid-template-columns: 1fr;
}

/* ========================================================
# セクション matome
======================================================== */
.matome {
  background-color: var(--Back);
  padding-bottom: 26px;
}

.matome__text {
  margin-top: 33px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.matome__bnr {
  display: block;
  margin-top: 12px;
}

.matome__bnr img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.matome__cta {
  margin-top: 20px;
  text-align: center;
}

.matome__btn {
  margin-top: 19px;
  text-align: center;
}

/* CV */
.matome--cv {
  padding-top: 26px;
  margin-top: 15px;
}

.matome--cv .matome__text {
  margin-top: 0;
}

/* ========================================================
# セクション　hikaku2
======================================================== */
.hikaku2__table {
  border: 1px solid var(--Text);
  border-radius: 4px;
  overflow: hidden;
}

.hikaku2__tableHead {
}

.hikaku2__tableHead,
.hikaku2__tableItem {
  display: grid;
  border-bottom: 1px solid var(--Text);
  grid-template-columns: repeat(3, 1fr);
}

.hikaku2__tableTtl {
  padding: 10px 12px;
  background-color: var(--Main);
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.3;
}

.hikaku2__tableTtl,
.hikaku2__tableCel {
  border-left: 1px solid var(--Text);
}

.hikaku2__tableTtl:first-child,
.hikaku2__tableCel:first-child {
  border-left: none;
}

.hikaku2__tableItem:last-child {
  border-bottom: none;
}

.hikaku2__tableCel {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.3;
  align-content: center;
}

.hikaku2__tableCel--ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hikaku2__tableCel--price {
  align-content: center;
}

/* ========================================================
# セクション フッター
======================================================== */
.footer {
  background-color: var(--Main);
  padding: 32px 0 30px;
  margin-top: 60px;
}

.footer__inner {
  padding: 0 26px;
}

.footer__list {
  display: grid;
  gap: 32px;
}

.footer__item {
}

.footer__title {
  font-size: 14px;
  line-height: 1.2;
}

.footer__subList {
  grid-template-columns: 1fr;
  gap: 14px;
}

.footer__subList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

.footer__subItem {
}

.footer__subLink {
  font-size: 14px;
  line-height: 1.2;
  font-weight: bold;
}

.footer__bottomList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 37px;
}

.footer__bottomItem:nth-child(n + 2)::before {
  content: " ／ ";
  display: inline-block;
  line-height: 1;
  margin: 0 3px;
}

.footer__bottomItem {
  font-size: 14px;
  line-height: 1.2;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__copy {
  display: block;
  text-align: center;
  font-size: 10px;
  line-height: 1.2;
  margin-top: 16px;
}

/* ========================================================
# セクション pankuzu
======================================================== */
.pankuzu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  padding: 12px 0;
  overflow-x: scroll;
}

.shohyo .pankuzu ul {
  flex-wrap: nowrap;
  white-space: nowrap;
  padding: 6px 0;
}

.pankuzu ul a {
  color: var(--Text_blue);
  text-decoration: underline;
}

/* ========================================================
# セクション article
======================================================== */
/* h1見出し */
.article header {
  padding: 12px 6px;
  background-color: var(--Main);
}

.article h1 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
  max-width: 700px;
  margin: 0 auto;
}

.shohyo .article h1 {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
  max-width: 700px;
  margin: 0 auto;
}

/* h2見出し */
.article h2 {
  position: relative;
  margin: 30px 0px 20px;
}

.article h2::before,
.article h2::after {
  content: "";
  width: 1px;
  height: calc(100% - 16px);
  background-color: var(--Text);
  position: absolute;
  top: 8px;
}

.article h2::before {
  left: 2px;
}

.article h2::after {
  right: 2px;
}

.article h2 > span {
  display: block;
  padding: 2px;
}

.article h2 > span > span {
  display: block;
  padding: 5px;
}

.article h2 > span::before,
.article h2 > span::after,
.article h2 > span > span::before,
.article h2 > span > span::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border: 1px solid var(--Text);
  border-radius: 50%;
  position: absolute;
}

.article h2 > span::before {
  top: 0;
  left: 0;
}

.article h2 > span::after {
  bottom: 0;
  left: 0;
}

.article h2 > span > span::before {
  top: 0;
  right: 0;
}

.article h2 > span > span::after {
  bottom: 0;
  right: 0;
}

.article h2 > span > span > span {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--Text);
  border-radius: 4px;
}

.article h2 > span > span > span::before,
.article h2 > span > span > span::after {
  content: "";
  display: block;
  width: calc(100% - 16px);
  height: 1px;
  background-color: var(--Text);
  position: absolute;
  left: 8px;
}

.article h2 > span > span > span::before {
  top: 2px;
}

.article h2 > span > span > span::after {
  bottom: 2px;
}

/* h3見出し */
.article h3 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
  padding: 12px 0;
  border-top: 1px solid var(--Text);
  border-bottom: 1px solid var(--Text);
  margin: 30px 0px 20px;
}

.shohyo .article h3 {
  font-size: 15px;
  margin: 36px 0px 20px;
}

/* 順序リスト */
.article ol {
  display: grid;
  gap: 16px;
  padding-left: 0;
  margin: 30px 0px 20px;
}

.article ol li {
  padding-left: 41px;
  padding-top: 2px;
  counter-increment: num;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}

.article ol li::before {
  content: counter(num);
  position: absolute;
  top: 5px;
  left: 11px;
  z-index: 1;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

.article ol li::after {
  content: "";
  width: 32px;
  height: 24px;
  background-color: var(--Main);
  transform: skewX(-10deg);
  position: absolute;
  top: 0;
  left: 0;
}

/* 強調 */
.article strong {
  color: var(--Accent);
  font-weight: bold;
}

.article strong.underline {
  color: var(--Text);
  text-decoration: underline;
  text-decoration-color: var(--Accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.shohyo .article strong.underline {
  color: unset;
  text-decoration: unset;
}

/* 順序なしリスト */
.article ul {
  margin: 60px 0px 20px;
  padding: 24px 34px;
  border: 1px solid var(--Text);
  border-radius: 4px;
  position: relative;
  display: grid;
  gap: 16px;
}

.article ul::before {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background-color: #fff;
  position: absolute;
  top: -2px;
  left: 50%;
  translate: -50% 0;
}

.article ul::after {
  content: "";
  display: block;
  width: 95px;
  height: 41px;
  background: url(../img/ico_point.svg) no-repeat center center / contain;
  position: absolute;
  top: -33px;
  left: 50%;
  translate: -50% 0;
}

.article ul li {
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}

.article ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid var(--Text);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
  background-color: var(--Accent);
}

/* テキスト */
.article p {
  font-size: 14px;
  line-height: 1.5;
  margin: 10px 0;
}

.shohyo .article p {
  font-size: 13px;
  line-height: 1.7;
  margin: 10px 0;
}

.check-title {
  font-size: 14px;
  margin: 14px auto 10px;
  position: relative;
  padding-left: 24px;
}

.check-title:before {
  position: absolute;
  content: "";
  background: url(../img/check_icon.svg) no-repeat center;
  background-size: 100%;
  width: 18px;
  height: 18px;
  color: var(--Main);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

table.feature_matome {
  padding: 10px;
  vertical-align: middle;
  border: 1px solid #ccc;
  line-height: 1.2;
  border-collapse: collapse;
  margin-top: 10px;
  width: 100%;
}

table.feature_matome th {
  background-color: var(--Main);
  padding: 14px 10px;
  font-weight: normal;
  text-align: center;
  font-size: 12px;
}

table.feature_matome td {
  padding: 14px 10px;
  text-align: center;
  font-size: 12px;
}

table.feature_matome th + th,
table.feature_matome td + td {
  border-left: solid 1px #ccc;
}

table.feature_matome tr + tr {
  border-top: solid 1px #ccc;
}

table.feature_matome th:last-of-type {
  width: 50%;
  box-sizing: border-box;
}

.merit_box {
  border: 1px solid #ffa5a5;
  padding: 15px;
  margin: 20px auto 0;
}

.merit_box .title span {
  margin-left: -15px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  background-color: #ffa5a5;
  padding: 14px 20px 11px 57px;
  background-image: url(../img/stripe_back.png);
  background-size: 13px 34px;
  background-repeat: repeat-y;
  position: relative;
}

.merit_box .title span:before {
  content: " ";
  width: 25px;
  height: 25px;
  background-image: url(../img/icon_maru.png);
  background-size: 25px 25px;
  display: inline-block;
  position: absolute;
  left: 25px;
  top: 50%;
  margin-top: -12px;
  margin-right: 10px;
}

.merit_box dl {
  margin-top: 14px;
}

.merit_box dl dd {
  padding-left: 15px;
  position: relative;
  color: #4a4a4a;
  font-size: 13px;
}

.merit_box dl dd:before {
  content: "・";
  color: #ffc392;
  position: absolute;
  left: 0;
  top: 0;
}

.demerit_box {
  border: 1px solid #aaa;
  padding: 15px;
  margin: 20px auto 0;
}

.merit_box .title,
.demerit_box .title {
  font-size: 13px;
}

.demerit_box dl {
  margin-top: 14px;
}

.demerit_box .title span {
  margin-left: -15px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  background-color: #aaa;
  padding: 14px 20px 11px 57px;
  background-image: url(../img/stripe_back.png);
  background-size: 13px 34px;
  background-repeat: repeat-y;
  position: relative;
}

.demerit_box .title span:before {
  content: " ";
  width: 25px;
  height: 25px;
  background-image: url(../img/icon_sankaku.png);
  background-size: 25px 25px;
  display: inline-block;
  position: absolute;
  left: 25px;
  top: 50%;
  margin-top: -12px;
  margin-right: 10px;
}

.demerit_box dl dd {
  padding-left: 15px;
  position: relative;
  color: #4a4a4a;
  font-size: 13px;
}

.demerit_box dl dd:before {
  content: "・";
  color: #aaa;
  position: absolute;
  left: 0;
  top: 0;
}

.simple_waku_box {
  border: 1px solid #aaa;
  padding: 15px;
  margin: 20px auto;
}

.simple_waku_box .title {
  font-weight: bold;
  font-size: 14px;
}

.simple_waku_box dl {
  margin-top: 10px;
}

.simple_waku_box dl dd {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.simple_waku_box dl dd:not(:first-of-type) {
  margin-top: 10px;
}

.simple_waku_box dl dd:before {
  content: "・";
  color: #4a4a4a;
  position: absolute;
  left: 0;
  top: 0px;
}

.cosme_matome_box {
  background-repeat: no-repeat;
  background-image: url(../img/matome_border_left_top.png),
    url(../img/matome_border_right_top.png),
    url(../img/matome_border_left_bottom.png),
    url(../img/matome_border_right_bottom.png),
    url(../img/matome_border_yoko.png), url(../img/matome_border_tate.png),
    url(../img/matome_border_yoko.png), url(../img/matome_border_tate.png);
  background-size: 25px 25px, 25px 25px, 25px 25px, 25px 25px,
    calc(100% - 70px) 1px, 1px calc(100% - 70px), calc(100% - 70px) 1px,
    1px calc(100% - 70px);
  background-position: left top, right top, left bottom, right bottom,
    top center, center left, bottom center, center right;
  padding: 5px;
  margin: 30px 0 20px;
  box-sizing: border-box;
}

.cosme_matome_inner {
  padding: 35px 20px 20px 20px;
  background-color: rgba(103, 179, 180, 0.08);
  border: 1px dashed #67b3b4;
  box-sizing: border-box;
}

.cosme_matome_title {
  font-size: 16px;
  text-align: center;
  font-weight: normal;
  position: relative;
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.cosme_matome_title::before {
  content: "";
  width: 100px;
  height: 50px;
  background: url(../img/cosme_parts_matome.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -58px;
  left: 50%;
  margin-left: -50px;
}

.cosme_matome_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 9em;
  height: 1px;
  margin-left: -4.5em;
  background: #67b3b4;
}

.cosme_matome_text {
  line-height: 35px;
  background-image: url(../img/matome_line_bg.png);
  background-size: 32px 30px;
}

.shohyo .cosme_matome_text p {
  line-height: 29px;
  font-size: 13px;
}

.b {
  font-weight: bold;
}

.line {
  background: linear-gradient(transparent 70%, #fff6c2 0);
  font-weight: 700;
  padding: 2px 3px;
}

.rococo_kekka_parts {
  margin: 30px auto;
  position: relative;
}

.rococo_kekka_parts:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 16px 16px 0;
  border-style: solid;
  border-color: #fff #fff transparent transparent;
  background: transparent;
  display: block;
  width: 0;
  z-index: 5;
}

.rococo_kekka_parts:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-width: 16px 0 0 16px;
  border-style: solid;
  border-color: transparent transparent #fff #fff;
  background: transparent;
  display: block;
  width: 0;
  z-index: 5;
}

.rococo_kekka_parts .inner {
  background-color: #b5d9d8;
  padding: 25px;
}

.rococo_kekka_parts .inner:before {
  content: " ";
  width: 1px;
  height: 40px;
  border-right: 1px solid #539a98;
  position: absolute;
  bottom: -12px;
  left: 7px;
  margin-top: -15px;
  color: #dedede;
  transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  z-index: 10;
}

.rococo_kekka_parts .inner:after {
  content: " ";
  height: 40px;
  border-right: 1px solid #539a98;
  position: absolute;
  right: 8px;
  top: 3px;
  margin-top: -15px;
  color: #dedede;
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  z-index: 10;
  -ms-transform: rotate(-45deg);
}

.rococo_kekka_parts .inner .title {
  font-size: 16px;
  color: #fff;
  margin: -5px -10px 25px;
}

.rococo_kekka_parts .inner .txt {
  background-color: #fff;
  padding: 15px;
  border: 1px dotted #b5d9d8;
  outline: 10px solid #fff;
}

.single_contents p {
  line-height: 1.8em;
  margin-bottom: 20px;
}

.shohyo__link {
  color: var(--Text_blue);
  font-weight: bold;
  text-align: right;
  text-decoration: underline;
  margin-top: 6px;
  display: block;
}

.shohyo__btn {
  text-align: center;
  margin-top: 20px;
}

.shohyo .article h4 {
  position: relative;
  font-size: 15px;
  font-weight: bolder;
  padding: 8px 0 8px 20px;
  margin: 14px 0 0;
  background-image: url(../img/rococo_stripe_bg_2x.png);
  background-repeat: repeat-y;
  background-size: 9px 4.364px;
  background-position: left top;
}

.shohyo .article__inner {
  margin-top: 30px;
}

/* ========================================================
# セクション result
======================================================== */
.result__condition {
  border: 1px solid #aeaeae;
  padding: 18px 40px;
  border-radius: 8px;
  display: grid;
  gap: 8px;
}

.result__conditionItem {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 8px;
}

.result__conditionTtl {
  font-size: 12px;
  line-height: 1.5;
  color: var(--Accent);
  margin-top: 2px;
}

.result__conditionList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result__conditionTag {
  font-size: 10px;
  line-height: 1.3;
  padding: 4px 12px;
  border-radius: 100vmax;
  background-color: var(--Main);
}

.result__wrapper {
  margin-top: 20px;
}

.result .shop-box:not(:first-of-type) {
  margin-top: 26px;
}

.result .ranking__img {
  margin-top: 0;
}

.result
  .ranking__bnr:not(.ranking__bnr__1, .ranking__bnr__2, .ranking__bnr__3) {
  display: none;
}

/* ========================================================
ステマ対策
=========================================================*/
.adTxt {
  text-align: right;
  max-width: 100%;
  padding: 2px 0px 2px 6px;
  margin: 4px auto 6px;
  position: absolute;
  content: "";
  right: 0;
  top: -7px;
}

.adTxt span {
  font-size: 14px;
  font-weight: bold;
  border: 1px solid var(--Text);
  /* 枠色 変数名がTextでない場合は変更 */
  padding: 2px 14px;
  background-color: #fff;
}

/* ========================================================
# セクション 男子ニキビ
======================================================== */
.mens-here {
  padding: 20px;
}

.mens-here__box {
  border-radius: 4px;
  border: 2px solid #3f7aeb;
}

.mens-here__ttl {
  padding: 3px;
  background-color: #3f7aeb;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-align: center;
}

.mens-here__ttl span {
  position: relative;
  padding-left: 22px;
}

.mens-here__ttl span::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(../img/ico_lightbulb.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.mens-here__wrap {
  padding: 10px;
  background-color: #eef4f8;
}

.mens-here__body {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  padding: 10px 26px 10px 10px;
  background-color: #fff;
}

.mens-here__body img {
  aspect-ratio: 82 / 57;
  width: calc(82 / 273 * 100%);
  height: 100%;
  object-fit: cover;
}

.mens-here__content {
  width: calc(180 / 273 * 100%);
  height: 100%;
}

.mens-here__txt {
  font-size: 13px;
  line-height: 1.5;
}

.mens-here__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border-radius: 4px;
  width: 19px;
  height: calc(100% - 20px);
  background-color: #8ac8b3;
}

.mens-here__btn img {
  width: 16px;
  height: 16px;
  object-fit: cover;
}

.mens-here__link {
  display: block;
  margin-top: 6px;
  color: var(--Text_blue);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-align: right;
}

/* ========================================================
# 2025/03/07 メンズ比較表上
======================================================== */
.hikaku__arrow {
  content: "";
  display: block;
  width: 40px;
  height: 23px;
  background-color: #fb645a;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  margin: 10px auto 30px;
}

/* ========================================================
# 2025/03/12 セクション 思春期ニキビ
======================================================== */
.mens-here.wash .mens-here__wrap {
  background-color: #fdece3;
}

.mens-here.wash .mens-here__ttl {
  background-color: #fb645a;
}

.mens-here.wash .mens-here__box {
  border: 2px solid #fb645a;
}

/* ========================================================
# 2025/05/02 調整用クラス
======================================================== */
/* マージン */
.mgt4 {
  margin-top: 4px !important;
}

.mgt8 {
  margin-top: 8px !important;
}

.mgt12 {
  margin-top: 12px !important;
}

.mgt16 {
  margin-top: 16px !important;
}

.mgt20 {
  margin-top: 20px !important;
}

.mgt24 {
  margin-top: 24px !important;
}

.mgt32 {
  margin-top: 32px !important;
}

.mgt40 {
  margin-top: 40px !important;
}

.mgb4 {
  margin-bottom: 4px !important;
}

.mgb8 {
  margin-bottom: 8px !important;
}

.mgb12 {
  margin-bottom: 12px !important;
}

.mgb16 {
  margin-bottom: 16px !important;
}

.mgb20 {
  margin-bottom: 20px !important;
}

.mgb24 {
  margin-bottom: 24px !important;
}

.mgb32 {
  margin-bottom: 32px !important;
}

.mgb40 {
  margin-bottom: 40px !important;
}

.mgl4 {
  margin-left: 4px !important;
}

.mgl8 {
  margin-left: 8px !important;
}

.mgl12 {
  margin-left: 12px !important;
}

.mgl16 {
  margin-left: 16px !important;
}

.mgl20 {
  margin-left: 20px !important;
}

.mgl24 {
  margin-left: 24px !important;
}

.mgl32 {
  margin-left: 32px !important;
}

.mgl40 {
  margin-left: 40px !important;
}

.mgr4 {
  margin-right: 4px !important;
}

.mgr8 {
  margin-right: 8px !important;
}

.mgr12 {
  margin-right: 12px !important;
}

.mgr16 {
  margin-right: 16px !important;
}

.mgr20 {
  margin-right: 20px !important;
}

.mgr24 {
  margin-right: 24px !important;
}

.mgr32 {
  margin-right: 32px !important;
}

.mgr40 {
  margin-right: 40px !important;
}

.mgy4 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.mgy8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.mgy12 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.mgy16 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.mgy20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.mgy24 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.mgy32 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.mgy40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.mgx4 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.mgx8 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.mgx12 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

.mgx16 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.mgx20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.mgx24 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.mgx32 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.mgx40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

/* パディング */
.pdt4 {
  padding-top: 4px !important;
}

.pdt8 {
  padding-top: 8px !important;
}

.pdt12 {
  padding-top: 12px !important;
}

.pdt16 {
  padding-top: 16px !important;
}

.pdt20 {
  padding-top: 20px !important;
}

.pdt24 {
  padding-top: 24px !important;
}

.pdt32 {
  padding-top: 32px !important;
}

.pdt40 {
  padding-top: 40px !important;
}

.pdb4 {
  padding-bottom: 4px !important;
}

.pdb8 {
  padding-bottom: 8px !important;
}

.pdb12 {
  padding-bottom: 12px !important;
}

.pdb16 {
  padding-bottom: 16px !important;
}

.pdb20 {
  padding-bottom: 20px !important;
}

.pdb24 {
  padding-bottom: 24px !important;
}

.pdb32 {
  padding-bottom: 32px !important;
}

.pdb40 {
  padding-bottom: 40px !important;
}

.pdl4 {
  padding-left: 4px !important;
}

.pdl8 {
  padding-left: 8px !important;
}

.pdl12 {
  padding-left: 12px !important;
}

.pdl16 {
  padding-left: 16px !important;
}

.pdl20 {
  padding-left: 20px !important;
}

.pdl24 {
  padding-left: 24px !important;
}

.pdl32 {
  padding-left: 32px !important;
}

.pdl40 {
  padding-left: 40px !important;
}

.pdr4 {
  padding-right: 4px !important;
}

.pdr8 {
  padding-right: 8px !important;
}

.pdr12 {
  padding-right: 12px !important;
}

.pdr16 {
  padding-right: 16px !important;
}

.pdr20 {
  padding-right: 20px !important;
}

.pdr24 {
  padding-right: 24px !important;
}

.pdr32 {
  padding-right: 32px !important;
}

.pdr40 {
  padding-right: 40px !important;
}

.pdy4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.pdy8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.pdy12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.pdy16 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.pdy20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.pdy24 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.pdy32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.pdy40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.pdx4 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.pdx8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.pdx12 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.pdx16 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.pdx20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.pdx24 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.pdx32 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.pdx40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* マージン（0） */
.mgt0 {
  margin-top: 0 !important;
}

.mgb0 {
  margin-bottom: 0 !important;
}

.mgl0 {
  margin-left: 0 !important;
}

.mgr0 {
  margin-right: 0 !important;
}

.mgy0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mgx0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* パディング（0） */
.pdt0 {
  padding-top: 0 !important;
}

.pdb0 {
  padding-bottom: 0 !important;
}

.pdl0 {
  padding-left: 0 !important;
}

.pdr0 {
  padding-right: 0 !important;
}

.pdy0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pdx0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ========================================================
# 2025/05/08 セクション aboutLotion
======================================================== */
.aboutLotion {
  margin-top: 20px;
}

.aboutLotion__head {
  padding: 0 20px;
}

.aboutLotion__txt {
  margin-top: 8px;
  color: #494949;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-weight: normal;
}

.aboutLotion__wrap {
  padding-inline: 20px;
}

.aboutLotion .article ul {
  margin: 48px 0 20px;
  padding: 24px;
}

.aboutLotion__bottom {
  margin-top: 20px;
  padding: 0 20px;
}

.aboutLotion__lead {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-align: center;
}

/* ========================================================
# 2025/05/08 成分比較表
======================================================== */
.hikakuIngredient {
  margin-top: 14px;
}

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

.hikakuIngredient__wrap {
  margin-top: 12px;
  overflow: auto;
}

.hikakuIngredient__table {
  margin-inline: auto;
  border: 1px solid var(--Text);
  border-collapse: collapse;
  width: 710px;
  table-layout: fixed;
}

.hikakuIngredient__table-head {
  position: sticky;
  left: 0;
  border: 1px solid var(--Text);
  padding: 4px 2px;
  width: 45px;
  background-color: var(--Back);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  vertical-align: middle;
}

.hikakuIngredient__table-data {
  border: 1px solid var(--Text);
  padding: 8px 2px;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  vertical-align: middle;
}

.hikakuIngredient__table-row--top .hikakuIngredient__table-data {
  vertical-align: top;
}

.hikakuIngredient__table-row--first .hikakuIngredient__table-data {
  font-weight: bold;
}

.hikakuIngredient__table-row--first
  .hikakuIngredient__table-data:nth-of-type(1) {
  background-color: #e7f6ef;
}

.hikakuIngredient__table-row--first
  .hikakuIngredient__table-data:nth-of-type(2) {
  background-color: #e7f6ef;
}

.hikakuIngredient__table-row--first
  .hikakuIngredient__table-data:nth-of-type(3) {
  background-color: #f0f2eb;
}

.hikakuIngredient__table-row--first
  .hikakuIngredient__table-data:nth-of-type(4) {
  background-color: #f0f2eb;
}

.hikakuIngredient__table-row--first
  .hikakuIngredient__table-data:nth-of-type(5) {
  background-color: #f0f2eb;
}

.hikakuIngredient__table-row--first
  .hikakuIngredient__table-data:nth-of-type(6) {
  background-color: #ffe9e4;
}

.hikakuIngredient__table-row--first
  .hikakuIngredient__table-data:nth-of-type(7) {
  background-color: #ffd6d2;
}

.hikakuIngredient__table-data span {
  display: block;
  font-size: 10px;
}

.hikakuIngredient__table tr:nth-child(3) td span {
  display: block;
  font-size: 12px;
}

.hikakuIngredient__table tr:nth-child(4) td span {
  text-align: center;
  padding: 8px 2px;
  font-size: 12px;
  line-height: 1.3;
  vertical-align: middle;
}

.hikakuIngredient__table-data img {
  display: block;
  margin-inline: auto;
  width: 83px;
  height: auto;
}

.hikakuIngredient__table-img-link img {
  width: 100%;
}

.hikakuIngredient__table-graph {
  border: 1px solid var(--Text);
  padding: 6px 2px;
}

.hikakuIngredient__table-graph img {
  display: block;
  margin: auto;
  width: 600px;
  height: auto;
}

.hikakuIngredient__table-link {
  color: var(--Text_blue);
  font-size: 12px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

.hikakuIngredient__attention {
  margin-top: 8px;
  padding-inline: 5px;
  font-size: 10px;
  text-align: left;
}

.hikakuIngredient__table .dr-ci_box {
  margin-top: 3px;
}

.hikakuIngredient__table tr:nth-child(5) td:nth-child(7) a img {
  margin-top: 10px;
}

/* ========================================================
# 2025/05/08 ポジショニングマップ
======================================================== */
.positioningMap {
  margin: 32px auto 0;
}

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

.positioningMap__caution {
  padding: 0 20px 12px;
  font-size: 10px;
  text-align: left;
}

.positioningMap__inner {
  position: relative;
  padding: 0;
}

.positioningMap__bg {
  position: relative;
}

.positioningMap__bg-img {
  width: 100%;
}

.positioningMap__txt {
  position: absolute;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

.positioningMap__txt--01 {
  top: 0;
  left: 34.3%;
}

.positioningMap__txt--01 sup {
  font-size: 5px;
  color: gray;
}

.positioningMap__txt--02 {
  top: 48%;
  right: 1%;
}

.positioningMap__label {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background-color: #8ac8b3;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

.positioningMap__label--01 {
  top: 20px;
  left: 45%;
}

.positioningMap__label--02 {
  background-color: var(--gray);
  bottom: 10px;
  left: 44.8%;
}

.positioningMap__label--03 {
  background-color: var(--gray);
  top: 53.5%;
  left: 0;
}

.positioningMap__label--04 {
  background-color: var(--Accent);
  top: 53.5%;
  right: 0;
}

.positioningMap__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  border-radius: 2px;
  /* background-color: #fff; */
  /* border: 1px solid var(--gray); */
  /* box-shadow: 0 3px 0 rgba(70, 70, 70, 0.5); */
  padding: 2px 6px 6px;
  width: max(110px, 20%);
  z-index: 1;
}

.positioningMap__item-logo {
  width: 15vw;
  height: auto;
  object-fit: contain;
}

.positioningMap__item--01 > img {
  width: 20vw;
}

.positioningMap__item--01 {
  top: 9.5%;
  right: 0%;
}

.positioningMap__item--01::after {
  display: inline-block;
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 52px;
  height: 32px;
  background: url(../img/ico_crown.svg) no-repeat center / contain;
  aspect-ratio: 1;
  content: "";
}

.positioningMap__item--01::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: max(100px, 17vw);
  background-color: var(--Back);
  aspect-ratio: 1;
  content: "";
  z-index: -1;
}

.positioningMap__item--02 {
  top: 18%;
  left: 18%;
}

.positioningMap__item--03 {
  top: 30%;
  right: 14%;
}

.positioningMap__item--04 {
  top: 16%;
  left: 6%;
}

.positioningMap__item--05 {
  bottom: 46%;
  left: 29%;
}

.positioningMap__item--06 {
  top: 28%;
  left: 22%;
  width: 120px;
}

.positioningMap__item-ttl {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

.positioningMap__item-ttl::after {
  content: "";
  display: inline-block;
  margin-left: 2px;
  margin-bottom: -3px;
  width: 16px;
  aspect-ratio: 1 / 1;
  background: url(../img/ico_arrow_blue.svg) center center / contain no-repeat;
}

.positioningMap__item-ttl-link {
  display: block;
  color: rgb(26, 13, 171);
  text-decoration: underline;
  transition: 0.3s;
  transform: scale(1);
}

.positioningMap__item-ttl-link:hover {
  transform: scale(1.05);
  opacity: 1;
}

.positioningMap__item-ttl--lg {
  font-size: 14px;
}

.positioningMap .read-more {
  margin: 2px 0;
  padding-bottom: 0;
  font-size: 11px;
}

/* ========================================================
# 20250709 aboutAging
======================================================== */
.aboutAging__wrap {
  position: relative;
  z-index: 1;
}

/* .aboutAging .arrow-bg {
  position: relative;
  background: linear-gradient(to bottom, #f1faff 0%, #f1faff 36.6%, #fff 36.6%, #fff 100%);
} */

/* .aboutAging .arrow-bg::after {
  content: "";
  position: absolute;
  top: 36.4%;
  border-width: 142px 50vw 0 50vw;
  border-style: solid;
  border-color: #F1FAFF transparent transparent transparent;
} */

.aboutAging__txt {
  padding: 20px 20px 0 20px;
  font-size: 14px;
}

/* ========================================================
# 20250724 miniRank
======================================================== */
.miniRank {
  background: #f1f2eb;
  padding-top: 16px;
}

.miniRank__ttl {
  display: inline-block;
  background-color: #8ac8b3;
  margin-bottom: 12px;
  padding: 5px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  border-radius: 4px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.miniRank__ttl::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 6px solid #8ac8b3;
}

.miniRank__tags {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 5px 0;
}

.miniRank__tags button {
  background: #fff;
  padding: 3px 10px;
  margin: 0;
  color: #787878;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #787878;
  border-radius: 20px;
  box-shadow: 2px 3px 2px 0px #adadad;
  cursor: pointer;
  white-space: nowrap;
}

.miniRank__tags button.active {
  background: var(--Accent);
  color: #fff;
  border: none;
  box-shadow: none;
}

.miniRank__wrap {
  display: none;
  position: static;
  opacity: 0;
  transition: opacity 1s;
  pointer-events: none;
}

.miniRank__wrap.is-visible {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.miniRank__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, auto);
  gap: 6px;
  margin: 0 15px;
  padding: 14px 0 16px;
  border-radius: 10px;
}

.miniRank__item {
  /* display: contents; */
}

/* .miniRank__item > a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  background-color: #fff;
  padding: 10px 5px;
  height: 100%;
  border-radius: 4px;
  box-shadow: #bcc4c2 1px 1px 4px;
} */

.miniRank__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  background-color: #fff;
  padding: 10px 5px;
  height: 100%;
  border-radius: 4px;
  box-shadow: #bcc4c2 1px 1px 4px;
}

.miniRank__head {
  position: relative;
  display: inline-block;
}

.miniRank__head::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  width: 32px;
  height: 32px;
  z-index: 10;
}

/* .miniRank__list > .miniRank__item:nth-child(1) a > .miniRank__head::before {
  background: url(../img/ct_minirank_01.svg) no-repeat center/contain;
}

.miniRank__list > .miniRank__item:nth-child(2) a > .miniRank__head::before {
  background: url(../img/ct_minirank_02.svg) no-repeat center/contain;
}

.miniRank__list > .miniRank__item:nth-child(3) a > .miniRank__head::before {
  background: url(../img/ct_minirank_03.svg) no-repeat center/contain;
} */
.miniRank__list > .miniRank__item:nth-child(1) > .miniRank__head::before {
  background: url(../img/ct_minirank_01.svg) no-repeat center/contain;
}

.miniRank__list > .miniRank__item:nth-child(2) > .miniRank__head::before {
  background: url(../img/ct_minirank_02.svg) no-repeat center/contain;
}

.miniRank__list > .miniRank__item:nth-child(3) > .miniRank__head::before {
  background: url(../img/ct_minirank_03.svg) no-repeat center/contain;
}

.miniRank__bnr {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background-color: #f1f2eb;
  border-radius: 50%;
  z-index: 1;
}

.miniRank__list .miniRank__item:first-child .miniRank__bnr {
  background-color: #fff5e7;
}

.miniRank__item-ttl {
  display: block;
  text-align: center;
  color: #0a50a1;
  font-weight: bold;
  font-size: 12px;
  text-decoration: underline;
}

.miniRank__item-price {
  font-size: 10px;
  text-align: center;
}

.miniRank__item-catch {
  font-size: 10px;
  background-color: var(--Main);
  margin-top: 4px;
  text-align: center;
  border-radius: 2px;
}

.miniRank__item-txt {
  font-size: 12px;
  line-height: 1.3;
}

/* ========================================================
# 20250725 nav
======================================================== */
.nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.nav__wrap {
  display: none;
  transition: height 0.3s ease;
}

.nav__box.active .nav__wrap {
  display: block;
}

.nav__box {
  border-radius: 4px;
  border: 1px solid var(--Main);
}

.nav__ttl {
  padding: 5px;
  background-color: var(--Main);
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.03em;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.nav__box.active .nav__ttl {
  border-radius: 4px 4px 0 0;
}

.nav__ttl::after {
  content: "";
  mask: url(../img/ico_arrow.svg) no-repeat center center / contain;
  background-color: var(--Text);
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.nav__box.active .nav__ttl::after {
  transform: translateY(-50%) rotate(180deg);
}

.nav__ttl span {
  position: relative;
  padding-left: 22px;
}

.nav__ttl span::before {
  content: "";
  background-image: url(../img/ico_lightbulb.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.nav__wrap {
  padding: 10px 10px 0 10px;
  background-color: var(--Back);
  border-radius: 0 0 4px 4px;
}

.nav__wrap:last-of-type {
  padding-bottom: 10px;
}

.nav__body {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  padding: 10px 26px 10px 10px;
  background-color: #fff;
}

.nav__body img {
  aspect-ratio: 120 / 83;
  width: calc(30.2%);
  height: 100%;
  object-fit: cover;
}

.nav__subTtl {
  font-size: 13px;
  line-height: 1.5;
  color: var(--Text_blue);
  font-weight: bold;
  text-decoration: underline;
}

.nav__txt {
  font-size: 12px;
  line-height: 1.5;
}

.nav__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border-radius: 4px;
  width: 19px;
  height: calc(100% - 20px);
  background-color: #8ac8b3;
}

.nav__btn img {
  width: 16px;
  height: 16px;
  object-fit: cover;
}

/* ========================================================
# 20250822 50代
# 20250905 基礎化粧品比較表全体に変更
======================================================== */

.hikaku3__tags__wrapper {
  padding: 13px 0 0 0;
  display: grid;
  align-items: center;
  min-height: 90px;
}

.hikaku--kiso.hikaku .hikaku__tableModify {
  display: grid;
  grid-template-rows: 55px 1fr;
  padding-top: 10px;
}

.hikaku--kiso.hikaku .hikaku__tableCel--center {
  place-items: normal;
  align-items: center;
}

.hikaku--kiso.hikaku .inner {
  overflow-x: scroll;
  padding-left: 0;
}

.hikaku--kiso.hikaku .hikaku__wrap {
  width: 562px;
}

.hikaku--kiso.hikaku .hikaku__logo {
  width: calc(90% - 23px);
  height: 40px;
}

.hikaku--kiso.hikaku .hikaku__tableHead {
  position: sticky;
  left: 0;
}

/* ========================================================
# 20250822 教育コンテンツ差し替え
======================================================== */
.kansouKyouiku {
  margin-top: 14px;
  max-width: 1000px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 14px;
  margin-left: auto;
  margin-right: auto;
  --grid: 20px;
  /* マス目の大きさ */
  --line: rgba(0, 0, 0, 0.06);
  /* 線の色（薄め） */
  background:
    /* 横線 */ repeating-linear-gradient(
      0deg,
      transparent 0 calc(var(--grid) - 1px),
      var(--line) calc(var(--grid) - 1px) var(--grid)
    ),
    /* 縦線 */
      repeating-linear-gradient(
        90deg,
        transparent 0 calc(var(--grid) - 1px),
        var(--line) calc(var(--grid) - 1px) var(--grid)
      );
  background-color: #fff;
  /* 台紙の色 */
}

.kansou-ttl {
  margin-top: 12px;
  background-color: #d5eae3;
  color: #494949;
  border: 1px solid #494949;
  text-align: center;
  padding: 10px 0 10px 0;
  font-weight: bold;
}

.kansou-kyouiku-contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 12px 10px;
}

.kansou-txt-ttl {
  font-size: 14px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 18px;
}

.kansou-txt-ttl::after {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #494949;
  border-radius: 50px;
  background-color: #d84067;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  width: 6px;
  height: 6px;
}

.kansou-content {
  font-size: 12px;
}

.kansou-content span {
  font-weight: bold;
}

.kansou-text {
  padding-left: 10px;
}

.kansou-text2 {
  margin-top: 8px;
}

.kansou-osusume-contents {
  border: 1px solid #afafaf;
  border-radius: 4px;
  padding: 10px;
  background-color: #fff;
}

.kansou-osusume {
  margin-top: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.kansou-orbis img,
.kansou-decencia img,
.kansou-doctorc img,
.kansou-norganic img,
.kansou-maihada img {
  position: relative;
  width: 100px;
  height: auto;
  margin: 0 auto;
  z-index: 1;
}

.kansou-orbis p,
.kansou-decencia p,
.kansou-doctorc p,
.kansou-norganic p,
.kansou-maihada p {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

.kansou-orbis,
.kansou-decencia,
.kansou-doctorc,
.kansou-norganic,
.kansou-maihada {
  position: relative;
}

.kansou-orbis::after,
.kansou-decencia::after,
.kansou-doctorc::after,
.kansou-norganic::after,
.kansou-maihada::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  background-color: #f1f2eb;
  border-radius: 50px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.kansou-ttl2 {
  margin-top: 24px;
  background-color: #ffe9e4;
}

.ranking__tag2 {
  display: inline-block;
  font-size: 10px;
  line-height: 1.3;
  padding: 4px 12px;
  border-radius: 100vmax;
  background-color: #ffe9e4;
}

.kansou-img {
  margin: 0 auto;
}

.kansou-img img {
  display: block;
  margin: 0 auto;
}

/* ========================================================
# 20250827　大人の肌悩みにおすすめ表　改修
======================================================== */

.hikakuIngredient__table-row:nth-child(2) .hikakuIngredient__table-data {
  vertical-align: top;
}

.hikakuIngredient__table tr:nth-child(4) td {
  padding-top: 8px;
  padding-bottom: 0px;
}

.read-more {
  display: inline-block;
  padding-bottom: 8px;
  color: var(--Text_blue);
  font-weight: bold;
  font-size: 12px;
  line-height: 1.3;
  text-decoration: underline;
}

.hikakuIngredient__table-row .hikaku-osusume {
  width: 80%;
  height: auto;
}

.hikakuIngredient__table-row--first .hikakuTable-osusume1 {
  background-color: #e7f6ef;
}

.hikakuIngredient__table-row--first .hikakuTable-osusume2 {
  background-color: #e7f6ef;
}

/* より詳細度の高いセレクタで上書き */
.hikakuIngredient__table-row--first
  .hikakuIngredient__table-data.hikakuTable-osusume3:nth-of-type(3) {
  background-color: #e7f6ef;
}

.hikakuIngredient__table-row--first
  .hikakuIngredient__table-data.hikakuTable-osusume4:nth-of-type(5),
.hikakuIngredient__table-row--first
  .hikakuIngredient__table-data.hikakuTable-osusume4:nth-of-type(6),
.hikakuIngredient__table-row--first
  .hikakuIngredient__table-data.hikakuTable-osusume4:nth-of-type(7) {
  background-color: #f0f2eb;
}

.hikakuTable-osusume1,
.hikakuTable-osusume2,
.hikakuTable-osusume3 {
  position: relative;
  text-align: center;
  padding-top: 8px;
}

.hikakuTable-osusume1::after,
.hikakuTable-osusume2::after,
.hikakuTable-osusume3::after {
  content: "";
  background-repeat: no-repeat;
  position: absolute;
  width: 72px;
  height: 72px;
  overflow: visible;
  top: 11%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  background-image: url(../img/ct_ingredient_osusume.svg);
}

.hikakuIngredient__wrap_age {
  margin-top: 27px;
}

/* ========================================================
  20250828 MV年挿入
  ======================================================== */
.mv {
  position: relative;
}

.year__name-wrap {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15%;
  height: 15px;
  top: 2.3%;
  left: 1.3%;
}

.year__number {
  font-size: 0.6rem;
  color: #494949;
}

/* ========================================================
20250908 カテゴリー
======================================================== */
.category {
  padding: 0 20px;
}
.category__ttl img {
  width: 100%;
  height: auto;
}
.category__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 15px;
  margin-top: 8px;
}
.category__list--hidden {
  display: none;
}
.category__item-link {
  display: block;
  position: relative;
}
.category__item-link img {
  width: 100%;
  height: auto;
}
.category__item-txt {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 15px;
  translate: 0 -50%;
  color: #535353;
  font-family: "Kosugi", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.category__btn {
  display: inline-block;
  position: relative;
  margin-top: 8px;
  border: 1px solid var(--Text);
  border-radius: 4px;
  width: 100%;
  background-color: #fff;
  padding: 4px 45px;
  font-family: "Kosugi", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  appearance: none;
}
.category__btn::after {
  position: absolute;
  top: 50%;
  right: 24px;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  background: url(../img/ico_arrow.svg) no-repeat center center / contain;
  content: "";
  transition: all 0.3s;
}
.category__btn.is-open::after {
  rotate: 180deg;
}

/* ========================================================
202509017 比較表スクロールテキスト
======================================================== */

.hikaku--kiso .hikaku__ttl {
  position: relative;
}

.hikaku--kiso .hikaku__ttl::after {
  content: "スクロールできます→";
  position: absolute;
  bottom: -11px;
  right: 5px;
  font-size: 10px;
  color: gray;
  font-weight: normal;
}
@media screen and (min-width: 769px) {
  .hikaku--kiso .hikaku__ttl::after {
    content: none;
  }
}
