@charset "UTF-8";

/* ========================================================
ベース設定
=========================================================*/
:root {
  /* カラー */
  --Text: #555555;
  --Text2: #2a2a2a;
  --Text_blue: #1a0dab;
  --Main: #6fc6f8;
  --Sub: #109de3;
  --Back: #f5f5f5;
  --CTA: #eb446c;
  --Gray: #d8d8d8;
  --Gray2: #f5f5f5;
  /* 文字サイズ */
  --FontSizeSP: 10px;
  /* 375px 〜 768px */
  --FontSizeSP2: 4.2666666667vw;
  /* 〜　374px */
}

@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;
}

@font-face {
  font-family: "Zen Maru";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Zen_Maru_Medium.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Zen Maru";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/Zen_Maru_Bold.woff") format("woff");
  font-display: swap;
}

html {
  font-family: "Noto Sans JP";
  line-height: 1.5;
  color: var(--Text);
  font-size: var(--FontSizeSP);
}

body {
  font-family: "Noto Sans JP";
  font-size: 1.5rem;
  background-color: #fff;
  color: var(--Text);
  padding: 0;
  margin: 0;
  line-height: 1.5;
  box-sizing: border-box;
  word-break: break-word;
  /* break-wordは非推奨のため、word-breakを使用 */
  font-feature-settings: "palt";
}

.forPC {
  display: none;
}

.forSP {
  display: block;
}

a {
  font-weight: bold;
  text-decoration: underline;
  color: var(--Text_blue);
  transition: all ease 0.3s;
}

a:hover {
  opacity: 0.6;
  text-decoration: none;
}

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

/* ========================================================
共通
=========================================================*/
.accent {
  color: var(--CTA);
}
.bold {
  font-weight: bold;
}
.pink {
  color: var(--CTA);
  font-weight: bold;
}
.dashline {
  border-bottom: 1px dashed var(--CTA);
}
.marker {
  background: linear-gradient(transparent 60%, var(--Yellow) 60%);
}

/* ボタン */
.btn1 {
  display: inline-block;
  position: relative;
  max-width: 300px;
  width: 100%;
  border-bottom: 4px solid #a7092f;
  border-radius: 40px;
  padding: 10px 30px;
  background: linear-gradient(to bottom, #f18aa3, #dd2752);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}
.btn1::after {
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  width: 16px;
  height: 16px;
  background-image: url(../img/cm_ico_arrow_right_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  transition: all 0.3s;
}
.btn1--sm {
  padding: 6px 16px;
  font-size: 14px;
}
.btn1--sm::after {
  width: 13px;
  height: 13px;
  right: 4px;
}

.btn2 {
  display: inline-block;
  position: relative;
  max-width: 300px;
  width: 100%;
  border: 1px solid var(--Gray);
  border-radius: 40px;
  padding: 6px 16px;
  background-color: var(--Gray2);
  color: var(--Text);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}
.btn2::after {
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  width: 16px;
  height: 16px;
  background-image: url(../img/cm_ico_arrow_bottom_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  transition: all 0.3s;
}
.btn2--sm {
  font-size: 11px;
  font-weight: 400;
  padding: 4px 14px 4px 8px;
}
.btn2--sm::after {
  width: 13px;
  height: 13px;
  right: 2px;
}

.btn3 {
  display: inline-block;
  position: relative;
  max-width: 300px;
  width: 100%;
  border-bottom: 4px solid var(--Sub);
  border-radius: 40px;
  padding: 13px 30px;
  background: linear-gradient(to bottom, #a7dfff, #45b4f4);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.4em;
  text-align: center;
  text-decoration: none;
}
.btn3::after {
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  width: 16px;
  height: 16px;
  background-image: url(../img/cm_ico_arrow_right_02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

/* ========================================================
ヘッダー
========================================================*/
.header {
  display: flex;
  align-items: center;
  position: relative;
  height: 36px;
  padding: 5px;
}
.header__logo {
  width: 150px;
}
.header__logo-link {
  display: block;
}
.header__logo img {
  width: 100%;
  height: auto;
}

/* ステマ対策 */
.adTxt {
  position: absolute;
  top: 7px;
  right: 6px;
  z-index: 2;
  max-width: 100%;
  content: "";
  text-align: right;
}
.result_page .adTxt {
  padding-top: 4px;
}
.adTxt span {
  font-size: 14px;
  font-weight: bold;
  border: 1px solid var(--Text);
  /* 枠色 変数名がTextでない場合は変更 */
  padding: 0 6px;
  background-color: #fff;
}

/* ========================================================
MV
========================================================*/
.mv {
  position: relative;
}
.mv__img {
  width: 100%;
  height: auto;
}
.mv__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 14%;
  right: 16%;
  width: calc(110 / 375 * 100vw);
  height: calc(26 / 375 * 100vw);
}
.mv__area {
  font-size: calc(16 / 375 * 100vw);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

/* ========================================================
悩み
========================================================*/
.nayami {
  padding-block: 8px 12px;
}
.nayami__ttl img {
  width: 100%;
  height: auto;
}

/* ========================================================
徹底調査
========================================================*/
.survey {
  padding-bottom: 8px;
  background-image: url(../img/bg_stripe.png.webp);
  background-repeat: repeat;
  background-size: 12px 12px;
}
.survey__ttl {
  width: 100%;
  height: auto;
}
.survey__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding-inline: 4px;
}
.survey__img {
  width: 100%;
  height: auto;
}
.survey__btn {
  display: block;
  margin: 6px auto;
  max-width: none;
  width: calc(100% - 30px);
  padding: 14px 16px;
}
.survey__btn.is-open::after {
  transform: rotate(180deg);
}
.survey__other {
  display: none;
  padding-inline: 4px;
}

/* ========================================================
評判
========================================================*/
.hyouban {
  padding-top: 24px;
}
.hyouban__ttl img {
  width: 100%;
  height: auto;
}
.hyouban__main {
  padding: 10px 10px 14px;
  background: linear-gradient(
    to bottom,
    #fff 0%,
    #fff 8%,
    #e2eefd 8%,
    #e2eefd 100%
  );
}
.hyouban__list {
  display: grid;
  grid-template-columns: 38% repeat(2, 1fr);
  align-items: end;
  gap: 8px;
}
.hyouban__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  border-radius: 4px;
  padding: 10px 4px 6px;
  background-color: #fff;
}
.hyouban__item:first-child {
  border: 2px solid var(--CTA);
  padding: 10px 7px 6px;
  min-height: 246px;
}
.hyouban__item:first-child::before {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 27px;
  height: 27px;
  background-image: url(../img/ico_mini_popular.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  z-index: 2;
}
.hyouban__item:nth-child(2),
.hyouban__item:nth-child(3) {
  height: 220px;
}
.hyouban__logo {
  display: block;
}
.hyouban__logo img {
  width: 100%;
  object-fit: contain;
}
.hyouban__item:first-child .hyouban__logo img {
  height: 30px;
}
.hyouban__item:nth-child(2) .hyouban__logo img {
  height: 22px;
}
.hyouban__item:nth-child(3) .hyouban__logo img {
  height: 22px;
}
.hyouban__star {
  display: block;
  margin-top: 5px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hyouban__sub-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 14px;
}
.hyouban__sub-item {
}
.hyouban__sub-item-ttl {
  border-radius: 2px;
  padding: 2px;
  background-color: var(--Gray2);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.hyouban__sub-item-txt {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}
.hyouban__sub-item-txt .line {
  text-decoration: line-through;
}
.hyouban__sub-item-txt .sm {
  font-size: 11px;
}
.hyouban__btns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  justify-items: center;
  margin-top: 6px;
}
.hyouban__item:first-child .btn2 {
  padding: 4px 14px 4px 8px;
}

/* ========================================================
施術方法
========================================================*/
.method {
  padding-top: 12px;
}
.method__inner {
  padding-inline: 10px;
}
.method__ttl img {
  width: 100%;
  height: auto;
}
.method__list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 12px;
}
.method__item {
  border: 1px solid var(--Text);
  border-radius: 4px;
}
.method__item-ttl {
  position: relative;
  padding: 11px 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
.method__item-ttl::before {
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  width: 14px;
  height: 2px;
  background-color: var(--Text);
  content: "";
}
.method__item-ttl::after {
  position: absolute;
  top: 50%;
  right: 26px;
  translate: 0 -50%;
  width: 2px;
  height: 14px;
  background-color: var(--Text);
  content: "";
  transition: all 0.3s;
}
.method__item-ttl.is-open::after {
  opacity: 0;
}
.method__item-txt {
  display: none;
  margin-top: 5px;
  padding: 0 20px 16px 20px;
  font-size: 13px;
  line-height: 1.7;
}
.method__txt {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
}

/* ========================================================
ポジショニングマップ
========================================================*/
.positioningmap {
  padding-top: 24px;
}
.positioningmap__ttl img {
  width: 100%;
  height: auto;
}
.positioningmap__wrap {
  position: relative;
  margin-top: 12px;
  padding-top: calc(43 / 375 * 100vw);
  padding-right: calc(50 / 375 * 100vw);
  padding-bottom: calc(26 / 375 * 100vw);
  padding-left: calc(27 / 375 * 100vw);
  background: repeating-linear-gradient(
      90deg,
      var(--Back),
      var(--Back) 1px,
      transparent 1px,
      transparent 32px
    ),
    repeating-linear-gradient(
      0deg,
      var(--Back),
      var(--Back) 1px,
      #fff 1px,
      #fff 32px
    );
}
.positioningmap__map {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.positioningmap__type {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: calc(32 / 375 * 100vw);
  height: calc(32 / 375 * 100vw);
  border-radius: 50%;
  background-color: var(--Sub);
  color: #fff;
  font-size: calc(16 / 375 * 100vw);
  font-weight: bold;
  line-height: 1;
}
.positioningmap__type.first {
  top: 0;
  left: 44.5%;
}
.positioningmap__type.second {
  bottom: 0;
  left: 44.5%;
}
.positioningmap__type.third {
  top: 52%;
  right: calc(12 / 375 * 100vw);
}
.positioningmap__txt {
  position: absolute;
  top: 48.5%;
  right: calc(10 / 375 * 100vw);
  width: fit-content;
  color: var(--Sub);
  font-size: calc(10 / 375 * 100vw);
  font-weight: bold;
  line-height: 1;
}
.positioningmap__lead {
  position: absolute;
  top: 5%;
  right: calc(27 / 375 * 100vw);
  font-size: calc(12 / 375 * 100vw);
  line-height: 1.3;
  text-align: center;
}
.positioningmap__lead span {
  position: relative;
  display: inline-block;
  padding-inline: 13px;
}
.positioningmap__lead span::before {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: var(--Text);
  rotate: 70deg;
  content: "";
}
.positioningmap__lead span::after {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 20px;
  height: 1px;
  background-color: var(--Text);
  rotate: -70deg;
  content: "";
}
.positioningmap__link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  border-top: 1px solid var(--Main);
  border-bottom: 4px solid var(--Main);
  border-left: 1px solid var(--Main);
  border-right: 1px solid var(--Main);
  border-radius: 4px;
  width: calc(80 / 375 * 100vw);
  height: calc(45 / 375 * 100vw);
  padding: 4px;
  background-color: #fff;
}
.positioningmap__link.first {
  top: 14%;
  right: calc(50 / 375 * 100vw);
  border-top: 2px solid var(--CTA);
  border-bottom: 5px solid var(--CTA);
  border-left: 2px solid var(--CTA);
  border-right: 2px solid var(--CTA);
  width: calc(88 / 375 * 100vw);
  height: calc(75 / 375 * 100vw);
}
.positioningmap__link.second {
  top: 40%;
  right: calc(98 / 375 * 100vw);
}
.positioningmap__link.third {
  top: 40%;
  left: calc(85 / 375 * 100vw);
}
.positioningmap__link.fourth {
  top: 79%;
  right: calc(75 / 375 * 100vw);
}
.positioningmap__link.fifth {
  top: 25%;
  left: calc(85 / 375 * 100vw);
}
.positioningmap__link img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ========================================================
比較
========================================================*/
.hikaku {
  padding-top: 24px;
}
.hikaku__ttl img {
  width: 100%;
  height: auto;
}
.hikaku__table-wrap {
  margin-top: 14px;
}
.hikaku__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid var(--Gray);
}
.hikaku__table-row:nth-child(n + 2) {
  border-top: 1px dashed var(--Gray);
}
.hikaku__table-ttl {
  width: 54px;
  padding: 8px 2px;
  background-color: var(--Gray2);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
}
.hikaku__table-data {
  width: calc((100% - 54px) / 3);
  padding: 8px 5px;
  text-align: center;
}
.hikaku__table-data:first-of-type {
  border-left: 2px solid var(--CTA);
  border-right: 2px solid var(--CTA);
}
.hikaku__table-row:first-child .hikaku__table-data:first-of-type {
  border-top: 2px solid var(--CTA);
}
.hikaku__table-row:last-child .hikaku__table-data:first-of-type {
  border-bottom: 2px solid var(--CTA);
}
.hikaku__table-data:nth-of-type(n + 2) {
  border-left: 1px solid var(--Gray);
}
.hikaku__table-row:first-child .hikaku__table-data {
  vertical-align: top;
}
.hikaku__table-logo {
  display: flex;
  margin-inline: auto;
  width: 80px;
  height: 30px;
}
.hikaku__table-logo img {
  object-fit: contain;
}
.hikaku__table-link {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--Text_blue);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  min-height: 36px;
  text-align: center;
}
.hikaku__table-ico {
  display: block;
  margin-inline: auto;
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.hikaku__table-type {
  margin-top: 2px;
  border-radius: 4px;
  padding: 2px;
  background-color: #e2eefd;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.hikaku__table-txt {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.5;
}

/* ========================================================
キャンペーン
========================================================*/
.campaign {
  margin-top: 20px;
}
.campaign__inner {
  padding-inline: 24px;
}
.campaign__content {
  border: 1px solid var(--Main);
  border-radius: 4px;
  padding-block: 8px 14px;
  background-color: #eff3f9;
}
.campaign-ttl img {
  width: 100%;
  height: auto;
}
.campaign-txt {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}
.campaign-txt .price {
  display: inline-block;
  padding: 0 2px;
  background-color: var(--CTA);
  color: #fff;
  font-weight: bold;
}
.campaign-bnr {
  display: block;
  margin: 12px auto 0;
  max-width: 265px;
  width: 100%;
}
.campaign-bnr img {
  width: 100%;
  height: auto;
}

/* ========================================================
ランキング
=======================================================*/
.ranking {
  padding-bottom: 20px;
  background: linear-gradient(to right, #b5d3f7, #e1e8f0);
}
.ranking__ttl img {
  width: 100%;
  height: auto;
}
.ranking__inner {
  padding-inline: 10px;
}
.ranking__contents {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 12px;
}
.ranking__content {
  position: relative;
  border-radius: 4px;
  padding: 14px;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(97, 113, 123, 0.25);
}
.ranking__content--first::before,
.result__ranking .ranking__content:first-child::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  background-image: url(../img/cont_ico_osusume.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  z-index: 2;
}
.ranking__head {
  border-left: 9px solid var(--Main);
  padding: 2px 0 2px 12px;
}
.ranking__lead {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}
.ranking__name {
  display: block;
  margin-top: 4px;
  color: var(--Text_blue);
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
.ranking__bnr {
  display: block;
  margin-top: 14px;
}
.ranking__bnr img {
  width: 100%;
  height: auto;
}
.ranking__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  margin-top: 12px;
}
.ranking__tag {
  border: 1px solid var(--Gray);
  border-radius: 30px;
  padding: 3px 6px 5px;
  color: var(--Gray);
  font-size: 11px;
  line-height: 1;
}
.ranking__tag.on {
  border: 1px solid var(--Sub);
  color: var(--Sub);
}
.ranking__feature {
  margin-top: 14px;
}
.ranking__feature-ttl {
  border-radius: 4px;
  padding: 10px;
  background-color: var(--Main);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
.ranking__feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}
.ranking__feature-item {
}
.ranking__feature-item-head {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: start;
}
.ranking__feature-item-point {
  width: 40px;
  height: auto;
  object-fit: contain;
}
.ranking__feature-item-ttl {
  margin-top: -2px;
  color: var(--Sub);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.ranking__feature-item-body {
  margin-top: 12px;
}
.ranking__feature-item-img {
  width: 100%;
  height: auto;
}
.ranking__feature-item-txt {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}
.ranking__feature-item-btn {
  margin-top: 24px;
  text-align: center;
}
.ranking__case {
  margin-top: 20px;
}
.ranking__case-ttl {
  border-radius: 4px;
  padding: 10px;
  background-color: var(--Sub);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
.ranking__case-wrapper {
  position: relative;
}
.ranking__swiper {
  margin-top: 16px;
  width: 100%;
}
.ranking__swiper .swiper-slide {
  width: 100% !important;
}
.ranking__case-wrapper .swiper-pagination {
  bottom: -25px !important;
}
.ranking__case-wrapper .swiper-pagination-bullet {
  background-color: #e2eefd !important;
  opacity: 1 !important;
}
.ranking__case-wrapper .swiper-pagination-bullet-active {
  background-color: var(--Main) !important;
}
.ranking__case-quotation {
  margin-top: 30px;
  text-align: right;
}
.ranking__case-quotation a {
  font-weight: 400;
}
.ranking__voice {
  margin-top: 20px;
}
.ranking__voice-ttl {
  border-radius: 4px;
  padding: 10px;
  background-color: var(--Main);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
.ranking__voice-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
}
.ranking__voice-item {
  border-radius: 4px;
  padding: 10px 15px;
  background-color: var(--Gray2);
}
.ranking__voice-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
}
.ranking__voice-icon {
  width: 56px;
  height: auto;
  object-fit: contain;
}
.ranking__voice-item-ttl {
  color: var(--Sub);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
}
.ranking__voice-item-type {
  display: inline-block;
  margin-top: 8px;
  border: 1px solid var(--Sub);
  border-radius: 30px;
  padding: 2px 6px 4px;
  color: var(--Sub);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
}
.ranking__voice-item-txt {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
}
.ranking__detail {
  margin-top: 20px;
}
.ranking__detail-ttl {
  border-radius: 4px;
  padding: 10px;
  background-color: var(--Sub);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
.ranking__detail-list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 6px;
}
.ranking__detail-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  border-bottom: 1px dashed var(--Gray);
  padding-block: 12px;
}
.ranking__detail-item-ttl {
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.ranking__detail-item-txt {
  padding-inline: 14px 8px;
  font-size: 12px;
  line-height: 1.3;
}
.ranking__shops {
  border: 1px solid var(--Gray);
  border-radius: 4px;
  margin-top: 20px;
  overflow: hidden;
}
.ranking__shops-ttl {
  position: relative;
  padding: 8px;
  background-color: var(--Gray2);
  font-size: 17px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
.ranking__shops-ttl::before {
  position: absolute;
  top: 50%;
  right: 6px;
  translate: 0 -50%;
  width: 15px;
  height: 2px;
  background-color: var(--Text);
  content: "";
}
.ranking__shops-ttl::after {
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  width: 2px;
  height: 15px;
  background-color: var(--Text);
  content: "";
  transition: opacity 0.3s;
}
.ranking__shops-ttl.is-open::after {
  opacity: 0;
}
.ranking__shops-contents {
  display: none;
  padding: 4px 16px 16px;
}
.ranking__shops-content {
  border-bottom: 1px dashed var(--Gray);
  padding-block: 12px;
}
.ranking__shops-area {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.ranking__shops-area::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--Gray);
  content: "";
}
.ranking__shops-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 12px;
}
.ranking__shops-link {
  color: var(--Text_blue);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.ranking__campaign {
  margin-top: 20px;
  border: 1px solid var(--Main);
  border-radius: 4px;
  padding-block: 8px 14px;
  background-color: #EFF3F9;
}
.ranking__campaign-ttl img {
  width: 100%;
  height: auto;
}
.ranking__campaign-txt {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}
.ranking__campaign-txt .price {
  display: inline-block;
  padding: 0 2px;
  background-color: var(--CTA);
  color: #fff;
  font-weight: bold;
}
.ranking__campaign-bnr {
  display: block;
  margin: 12px auto 0;
  max-width: 265px;
  width: 100%;
}
.ranking__campaign-bnr img {
  width: 100%;
  height: auto;
}
.ranking__cta {
  position: relative;
  margin-top: 32px;
  border: 1px dashed var(--CTA);
  border-radius: 4px;
  padding: 26px 15px 15px;
}
.ranking__content:not(:first-child) .ranking__cta {
  border: 1px dashed var(--Sub);
}
.ranking__other .ranking__cta {
  border: 1px dashed var(--Sub);
}
.ranking__cta-ttl {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  padding: 2px 10px;
  width: fit-content;
  background-color: #fff;
  color: var(--CTA);
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}
.ranking__content:not(:first-child) .ranking__cta-ttl {
  color: var(--Sub);
}
.ranking__other .ranking__cta-ttl {
  color: var(--Sub);
}
.ranking__cta-logo {
  display: block;
  margin-inline: auto;
  width: 145px;
}
.ranking__cta-btn {
  margin-top: 12px;
  text-align: center;
}
.ranking__more {
  display: block;
  position: relative;
  margin-top: 24px;
  border: 1px solid var(--Text);
  border-radius: 40px;
  width: 100%;
  padding: 18px 30px;
  background-color: var(--Gray2);
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.ranking__more::after {
  position: absolute;
  top: 50%;
  right: 18px;
  translate: 0 -50%;
  width: 16px;
  height: 16px;
  background-image: url(../img/cm_ico_arrow_bottom_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
  content: "";
}
.ranking__more.is-open::after {
  rotate: 180deg;
}
.ranking__other {
  display: none;
  margin-top: 24px;
}
.ranking__other[style*="display: block"] {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* ========================================================
QA
=======================================================*/
.qa {
  padding-block: 32px;
}
.qa__ttl img {
  width: 100%;
  height: auto;
}
.qa__inner {
  margin-inline: auto;
  padding-inline: 24px;
}
.qa__list {
  margin-top: 14px;
  border-top: 1px dashed var(--Main);
  border-bottom: 1px dashed var(--Main);
}
.qa__item {
  padding-block: 12px;
}
.qa__item:nth-child(n+2) {
  border-top: 1px dashed var(--Main);
}
.qa__question {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 6px;
  position: relative;
  padding-right: 16px;
  cursor: pointer;
}
.qa__question::before {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 14px;
  height: 2px;
  content: "";
  background-color: var(--Text);
}
.qa__question::after {
  position: absolute;
  top: 50%;
  right: 6px;
  translate: 0 -50%;
  width: 2px;
  height: 14px;
  content: "";
  background-color: var(--Text);
  transition: opacity 0.3s ease;
}
.qa__question.is-open::after {
  opacity: 0;
}
.qa__question-ttl {
  padding-top: 4px;
  color: var(--Sub);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
}
.qa__answer {
  display: none;
  padding: 12px 12px 0 11px;
}
.qa__answer-txt {
  border-left: 2px solid var(--Main);
  padding-left: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

/* ========================================================
まとめ
======================================================*/
.summary {
  padding-bottom: 32px;
}
.summary__ttl img {
  width: 100%;
  height: auto;
}
.summary__inner {
  padding-inline: 24px;
}
.summary__content {
  position: relative;
  border: 1px dashed var(--CTA);
  border-radius: 4px;
  padding: 26px 15px 15px;
  margin-top: 32px;
}
.summary__content-ttl {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  padding: 2px 10px;
  width: fit-content;
  background-color: #fff;
  color: var(--CTA);
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}
.summary__content-logo {
  display: block;
  margin-inline: auto;
  width: 145px;
}
.summary__content-btn {
  margin-top: 12px;
  text-align: center;
}

/* ========================================================
フォーム
========================================================*/
.form {
  padding-block: 32px;
}
.form__inner {
  padding-inline: 15px;
}
.form__ttl img {
  width: 100%;
  height: auto;
}
.form__input {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
.form__list-ttl {
  border-left: 5px solid var(--Main);
  padding-left: 8px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.form__list-data {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.form__list-data--col2 {
  grid-template-columns: repeat(2, 1fr);
}
.form__list-data--col3 {
  grid-template-columns: repeat(3, 1fr);
}
.form__list-data--col4 {
  grid-template-columns: repeat(4, 1fr);
}
.form__list-select {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-items: start;
  margin-top: 8px;
}
.form__list-select .selectbox {
  position: relative;
}
.form__list-select .selectbox::after {
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  width: 10px;
  height: 10px;
  background-image: url(../img/cm_ico_arrow_bottom_02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
}
.form__list-select .selectbox select {
  border: 1px solid var(--Gray);
  border-radius: 30px;
  width: 100%;
  padding: 14px 35px 14px 16px;
  background-color: #fff;
  color: var(--Text);
  font-size: 12px;
  font-weight: 400;
  appearance: none;
}
#smword select {
  display: none;
}
#smword .selectbox::after {
  display: none;
}
#smword select.on {
  display: block;
}
#smword .selectbox.active::after {
  display: block;
}
.form input[type="radio"],
.form input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.checkbox_size {
  position: relative;
  border: 1px solid var(--Gray);
  border-radius: 30px;
  padding: 13px 8px 13px 32px;
  background: linear-gradient(to bottom, #fffefe, #ededed);
  font-size: 12px;
  line-height: 1;
}
.checkbox_size:has(input[type="checkbox"]:checked) {
  border: 1px solid var(--Main);
  background: #e2eefd;
  color: var(--Sub);
  font-weight: bold;
}
.checkbox_size::before {
  position: absolute;
  top: 50%;
  left: 8px;
  translate: 0 -50%;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background-color: #fff;
  content: "";
}
.checkbox_size::after {
  display: none;
  position: absolute;
  top: 50%;
  left: 11px;
  translate: 0 -50%;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: var(--Sub);
  content: "";
}
.checkbox_size:has(input[type="checkbox"]:checked)::after {
  display: block;
  color: var(--Sub);
  font-weight: bold;
}
.checkbox_icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--Gray);
  border-radius: 30px;
  padding: 5px 8px;
  background: linear-gradient(to bottom, #fffefe, #ededed);
  font-size: 12px;
  line-height: 1;
}
.checkbox_icon:has(input[type="checkbox"]:checked) {
  border: 1px solid var(--Main);
  background: #e2eefd;
  color: var(--Sub);
  font-weight: bold;
}
.checkbox_color {
  position: relative;
  border: 1px solid var(--Gray);
  border-radius: 30px;
  padding: 13px 8px 13px 32px;
  font-size: 12px;
  line-height: 1;
}
.checkbox_color.black {
  background: linear-gradient(to bottom, #ececec, #bfbfbf);
}
.checkbox_color.orange {
  background: linear-gradient(to bottom, #f8f5f0, #cdaea2);
}
.checkbox_color.brown {
  background: linear-gradient(to bottom, #f7f2e7, #baad8f);
}
.checkbox_color:has(input[type="checkbox"]:checked) {
  border: 1px solid var(--Main);
  background: #e2eefd;
  color: var(--Sub);
  font-weight: bold;
}
.checkbox_color::before {
  position: absolute;
  top: 50%;
  left: 8px;
  translate: 0 -50%;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background-color: #fff;
  content: "";
}
.checkbox_color::after {
  display: none;
  position: absolute;
  top: 50%;
  left: 11px;
  translate: 0 -50%;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: var(--Sub);
  content: "";
}
.checkbox_color:has(input[type="checkbox"]:checked)::after {
  display: block;
}
.checkbox_part {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
  border: 1px solid var(--Gray);
  border-radius: 5px;
  padding: 7px 10px;
  background: linear-gradient(to bottom, #fffefe, #ededed);
  font-size: 12px;
  line-height: 1;
}
.checkbox_part:has(input[type="checkbox"]:checked) {
  border: 1px solid var(--Main);
  background: #e2eefd;
  color: var(--Sub);
  font-weight: bold;
}
.form__icon {
  width: 28px;
  border-radius: 50%;
}
.checkbox_part .form__icon {
  width: 50px;
}
.form__btn {
  margin-top: 24px;
  text-align: center;
}

/* ========================================================
検索結果
========================================================*/
.result {
}
.result__ttl img {
  width: 100%;
  height: auto;
}
.result__head {
  padding-inline: 24px;
}
.result__terms {
  border-radius: 4px;
  padding: 5px;
  background-color: var(--Sub);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.result__list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 6px;
}
.result__item {
  display: grid;
  grid-template-columns: 105px 1fr;
  border-top: 1px dashed var(--Gray);
}
.result__item:last-child {
  border-bottom: 1px dashed var(--Gray);
}
.result__item-ttl {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #e2eefd;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}
.result__item-txt {
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}
.result__count {
  margin-top: 24px;
  font-size: 16px;
  text-align: center;
}
.result__ranking {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
  padding: 20px 10px;
  background: linear-gradient(to right, #b5d3f7, #e1e8f0);
}

/* ========================================================
パンくずリスト
========================================================*/
.breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 0;
  padding: 8px;
}
.breadcrumb__item {
  position: relative;
}
.breadcrumb__item:not(:first-child) {
  padding-left: 20px;
}
.breadcrumb__item:not(:first-child)::before {
  position: absolute;
  top: 1px;
  left: 6px;
  font-size: 14px;
  font-weight: 400;
  content: ">";
}
.breadcrumb__link {
  font-size: 14px;
}
.breadcrumb__current {
  font-size: 14px;
}

/* ========================================================
フッター
========================================================*/
.footer__top {
  background-color: var(--Back);
  padding: 32px 10px 12px;
}
.footer__contents {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.footer__list-ttl {
  border-bottom: 1px dashed #d8d8d8;
  padding: 10px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
}
.footer__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}
.footer__item {
  position: relative;
  padding-left: 24px;
}
.footer__item::before {
  position: absolute;
  top: 5px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--Text);
  content: "";
}
.footer__link {
  display: block;
  color: var(--Text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}
.footer__infos {
  display: flex;
  justify-content: center;
  margin: 32px auto 0;
  border-left: 1px solid var(--Text);
  border-right: 1px solid var(--Text);
  width: fit-content;
}
.footer__info {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__info:nth-child(2) {
  border-left: 1px solid var(--Text);
}
.footer__info-link {
  display: inline-block;
  padding: 2px 10px;
  color: var(--Text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}
.footer__bottom {
  padding-block: 12px;
  background-color: var(--Text);
  text-align: center;
}
.footer__copy {
  color: #fff;
  font-size: 10px;
}

/* ========================================================
コラム
========================================================*/
.column {
  padding-block: 32px;
}
.column__inner {
  padding-inline: 20px;
}
.column__ttl1 {
  color: var(--Sub);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.column__txt {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
}
.column__ttl2 {
  margin-top: 24px;
  border-top: 3px solid var(--Main);
  border-bottom: 3px solid var(--Main);
  padding-block: 13px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.column__ttl3 {
  margin-top: 24px;
  border-left: 4px solid var(--Main);
  border-bottom: 2px solid var(--Main);
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.column__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
  padding: 24px;
  background-color: var(--Gray2);
}
.column__item {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.3;
}
.column__item::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--Main);
  content: "";
}
.column__table {
  margin-top: 24px;
  width: 100%;
  table-layout: fixed;
  border: 1px solid var(--Gray);
  border-collapse: collapse;
}
.column__table-ttl {
  padding: 12px;
  background-color: var(--Sub);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
}
.column__table-ttl:nth-of-type(n + 2) {
  border-left: 1px solid #fff;
}
.column__table-data {
  padding: 12px 10px;
  border: 1px solid var(--Gray);
  font-size: 12px;
  line-height: 1.8;
}
.column__table-data:first-of-type {
  background-color: var(--Gray2);
}
.column__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}
.column__step-num {
  display: inline-block;
  padding: 5px 8px;
  background-color: var(--Main);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.column__step-num span {
  font-size: 16px;
}
.column__step-body {
  margin-top: 16px;
  border-left: 2px solid var(--Main);
  padding-left: 14px;
}
.column__step-ttl {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3;
}
.column__step-txt {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
.column__checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}
.column__check-ttl {
  position: relative;
  padding-left: 28px;
  color: var(--Sub);
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3;
}
.column__check-ttl::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../img/ico_check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}
.column__check-txt {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
.column__btn {
  margin-top: 24px;
  text-align: center;
}

/* ========================================================
運営者情報(beauty-medicalcare.comから引用)
=========================================================*/
.page-lower {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background-color: #fff;
}
.page-lower .inner {
  padding-right: 15px;
  padding-left: 15px;
}
.pankuz {
  padding: 0 20px 0;
}
.page-lower .pankuz {
  padding: 0 20px 0;
}
.pankuz ul {
  display: block;
}
.pankuz li {
  display: inline;
  position: relative;
  font-size: 12px;
}
.pankuz li:first-child a {
  text-decoration: none;
}
.pankuz li:nth-child(n+3) {
  padding-left: 20px;
}
.pankuz li:nth-child(n+3)::before {
  position: absolute;
  top: 0;
  left: 4px;
  content: "＞";
  color: var(--Text);
  font-size: 12px;
  font-weight: 400;
}
.pankuz ul a {
  display: inline;
  color: inherit;
  font-size: 12px;
  font-weight: normal;
  word-break: break-all;
}
.pankuz ul a img {
  display: inline-block;
  translate: -2px 4px;
  width: 20px;
  height: 20px;
  object-fit: contain;
  text-decoration: none;
}
.page-lower .header {
  max-width: 100vw;
  margin-top: 16px;
}
.page-lower h1 {
  position: relative;
  text-align: center;
  max-width: 100vw;
  font-size: 2.5rem;
  font-weight: bold;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-lower h1::before,
.page-lower h1::after {
  content: "";
  display: block;
  background-image: url(../img/cm_icon_dot_sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 26.25rem;
  height: 3.625rem;
  z-index: -1;
}
.page-lower h1::before,
.page-lower h1::after {
  width: 1.875rem;
  height: 3.625rem;
  background-image: url(../img/cm_icon_dot_sp.png);
}
.page-lower h1::before {
  left: 0.9375rem;
}
.page-lower h1::after {
  right: 0.9375rem;
}
.page-lower .inner {
  width: 100%;
  max-width: 1010px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
.page-lower h3 {
  border-left: 4px solid var(--Sub);
  padding-left: 0.625rem;
  margin-top: 2.5rem;
  font-size: 1.6rem;
}
.page-lower .cm__box {
  margin-top: 1.5rem;
  border: 1px solid var(--Text);
  border-radius: 6px;
  padding: 0.9375rem;
}
.page-lower p {
  font-size: 1.3rem;
  margin-top: 1rem;
}
.page-lower footer {
  margin-top: 60px;
}
