@charset "UTF-8";

/* ==========================================================================
ベース設定
=========================================================================== */
@font-face {
  font-family: "ZenKakuGothicNew";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/ZenKakuGothicNew-Medium.woff2") format("woff2");
  font-display: swap;
}

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

@font-face {
  font-family: "ZenKakuGothicNew";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/ZenKakuGothicNew-Black.woff2") format("woff2");
  font-display: swap;
}

:root {
  /* カラー */
  --Text: #222;
  --Text_color: #321400;
  --Text_link: #1558D6;
  --Main01: #0168B6;
  --Main02: #378AC8;
  --Main03: #4D95CC;
  --Sub01: #FABD01;
  --Sub02: #FFCA27;
  --Accent: #EC0E0E;
  --pink: #EA5E60;
  --Back: #DAF0FF;
  --Back_yellow: #FDEBB3;
  --Back_pink: #FBE4E4;
  --CTA01: #FBA94B;
  --CTA02: #EC0F0F;
  --CTA03: #EC0E0E;
  --CTA_shadow: #FBA74A;

  /* フォント */
  --Font_normal: "ZenKakuGothicNew", sans-serif;
}

.html {
  font-size: 16px;
  scrollbar-gutter: stable;
  margin-top: 0!important;
  /* overflow-x: hidden; */
}

@media screen and (max-width: 425px) {
  .html {
    font-size: calc(100vw / 375 * 16);
  }

  .inner {
    width: 100%;
    max-width: auto;
    margin: 0 auto;
  }
}

#wpadminbar {
  z-index: 10000000!important;
}

.body {
  font-family: var(--Font_normal);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.625rem;
  color: var(--Text);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
  background: #fff;
  width: 100%;
  counter-reset: number 0;
  position: relative;
  /* overflow-x: hidden; */
}

.body small {
  font-size: max(70%, 0.625rem);
}

.body a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--Text_link);
  transition: all 0.3s;
}

.container {
  position: relative;
}

.forPC {
  display: none;
}

.forPC-inline {
  display: none;
}  

.forSP {
  display: block;
}

.forSP-inline {
  display: inline;
}


/* ==========================================================================
共通パーツ
=========================================================================== */
.inner {
  width: 23.4375rem;
  padding: 0 1.125rem;
  margin: 0 auto;
}

.bold {
  font-weight: 700;
}

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

.marker {
  background: linear-gradient(transparent 88%, var(--Sub02) 88% 100%, transparent 100%);
}

.nowrap {
  white-space: nowrap;
}

.notes {
  font-size: 0.625rem;
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
  transform: scale(0.8);
  transform-origin: left;
}

.btn,
a.btn {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.625rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, var(--CTA01) 0%, var(--CTA02) 50%, var(--CTA03) 100%);
  border: none;
  border-radius: 1rem;
  box-shadow: 0 0.375rem 0 0 var(--CTA_shadow);
  width: 100%;
  min-height: 4.75rem;
  position: relative;
}

.btn--sm,
a.btn--sm {
  font-size: 0.75rem;
  border-radius: 1.875rem;
  box-shadow: 0 0.1875rem 0 0 var(--CTA_shadow);
  min-height: 1.875rem;
  padding: 0.25rem 0 0.25rem 0.5rem;
}

.btn--arrow::after,
a.btn--arrow::after {
  content: "";
  display: inline-block;
  background: url(../img/btn_arrow.svg) no-repeat center / contain;
  width: 1.5rem;
  aspect-ratio: 1;
}

.btn--sm.btn--arrow::after,
a.btn--sm.btn--arrow::after {
  width: 1.125rem;
  /* position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%); */
}

.sectionTtl {
  margin: 0 auto;
}

.scrollTable {
  background: transparent;
  border-radius: 0.125rem 0 0 0.125rem;
  overflow-x: auto;
}

.table {
  table-layout: fixed;
  border-spacing: 0;
  background: transparent;
  border: 0.0625rem solid var(--Main01);
  border-radius: 0.125rem;
  width: 100%;
  overflow: hidden;
}

.table th {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: center;
  color: #fff;
  background: var(--Main01);
  padding: 0.75rem;
}

.table tr:nth-of-type(n+2) th {
  border-top: 0.0625rem solid #fff;
}

.table td {
  font-size: 0.75rem;
  line-height: 1.25rem;
  background: #fff;
  padding: 0.75rem;
}

.table td:nth-of-type(n+2) {
  border-left: 0.0625rem solid var(--Main01);
}

.table tr:nth-of-type(n+2) td {
  border-top: 0.0625rem solid var(--Main01);
}

picture {
  display: block;
}

picture img {
  width: 100%;
}

.accBtn {
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accCont {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.accCont.is-initial-open {
  max-height: none;
  transition: none;
}

.accCont:not(.is-initial-open) {
  transition: max-height 0.4s ease-out;
}


/* ==========================================================================
トップページ
=========================================================================== */
/* MV */
.mv {
  position: relative;
}

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

.mv__pr {
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 0.125rem solid #fff;
  outline-offset: -0.0625rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  width: 1.875rem;
  height: 1.1875rem;
  padding-bottom: 0.125rem;
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
}

/* BEST3 */
.best3 {
  background: var(--Back);
  padding: 1.125rem 0 2rem;
  position: relative;
}

.best3__inner {
  padding: 0 0.875rem;
}

.best3 .sectionTtl {
  padding: 0 0.25rem;
}

.best3__list {
  display: grid;
  grid-template-columns: 33.7% 1fr 1fr;
  align-items: flex-end;
  gap: 0.75rem;
  padding-top: 4.375rem;
}

.best3__list-item {
  position: relative;
}

.best3__list-item:nth-of-type(1) {
  padding-bottom: 0;
  margin-right: 0.125rem;
}

.best3__list-item::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: auto;
  height: 3.4375rem;
  aspect-ratio: 67 / 55;
  position: absolute;
  top: -3.8125rem;
  left: 50%;
  transform: translateX(-50%);
}

.best3__list-item:nth-of-type(1)::before {
  background-image: url(../img/rank01.webp);
  width: auto;
  height: 4rem;
  top: -4.375rem;
}

.best3__list-item:nth-of-type(2)::before {
  background-image: url(../img/rank02.webp);
}

.best3__list-item:nth-of-type(3)::before {
  background-image: url(../img/rank03.webp);
}

.best3__list-box {
  background: #fff;
  border: 0.0625rem solid var(--Main01);
  border-radius: 0.375rem;
  overflow: hidden;
}

.best3__list-item:nth-of-type(1) .best3__list-box {
  border: 0.1875rem solid var(--pink);
  border-radius: 0.5rem;
  outline: 0.0625rem solid #fff;
  outline-offset: -0.25rem;
}

.best3__list-box-bnr {
  display: block;
  width: 100%;
  aspect-ratio: 111 / 93;
  object-fit: contain;
}

.best3__list-box-name {
  font-weight: 900;
  font-size: 0.625rem;
  line-height: 1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Main01);
  height: 1.4375rem;
}

.best3__list-item:nth-of-type(1) .best3__list-box-name {
  font-size: 0.75rem;
}

.best3__list-box-txt {
  font-weight: 500;
  font-size: 0.6875rem;
  line-height: 1rem;
  text-align: center;
  color: var(--Main01);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 4rem;
  padding: 0.5rem 0.5rem 0.625rem;
}

.best3__list-item:nth-of-type(1) .best3__list-box-txt {
  font-weight: 700;
  color: var(--Accent);
  -webkit-text-stroke: 0.125rem #fff;
  text-stroke: 0.125rem #fff;
  paint-order: stroke;
  background: var(--Back_yellow);
}

.best3__list-item a.btn {
  margin-top: 0.5rem;
}

.best3__list-item a.btn::after {
  width: 1.1875rem;
}

.best3__list-item:nth-of-type(1) a.btn::after {
  right: 0.875rem;
}

/* PICK UP */
.pickup {
  background: var(--Sub01);
  padding: 1rem 0 2.5rem;
}

.pickup__content {
  margin-top: 0.5rem;
}

.pickup__box {
  background: #fff;
  outline: 0.125rem solid var(--Main01);
  outline-offset: -0.125rem;
  border-radius: 0.625rem;
  padding: 0.75rem 1.125rem 2rem;
}

a.pickup__box-name {
  font-weight: 900;
  font-size: 1.375rem;
  line-height: 1.875rem;
}

.pickup__box-top {
  margin-top: 0.75rem;
}

.pickup__box-top-bnr {
  display: block;
}

.pickup__box-top-table {
  margin-top: 1.125rem;
}

.pickup__box-top-table th {
  line-height: 1.5rem;
  width: 6.125rem;
  height: 3rem;
  padding: 0.75rem 0.5rem;
}

.pickup__box-top-table th small {
  font-size: 0.625rem;
  line-height: 0.875rem;
  text-align: center;
  display: inline-block;
  margin-top: 0.0625rem;
  transform: scale(0.9);
  transform-origin: left;
}

.pickup__box-top-table td small {
  font-size: 0.625rem;
  line-height: 1rem;
  display: inline-block;
  transform: scale(0.9);
  transform-origin: left;
}

.pickup__box-point {
  margin-top: 1.125rem;
}

.pickup__box-point-ttl {
  width: auto;
  height: 1.5rem;
  margin: 0 auto;
}

.pickup__box-point-list-item {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--Back_yellow);
  border-radius: 0.5rem;
  min-height: 4.625rem;
  padding: 1rem;
  margin-top: 0.5rem;
}

.pickup__box-point-list-item-img {
  width: 1.875rem;
  aspect-ratio: 1;
}

a.pickup__btn {
  min-height: 3.75rem;
  margin-top: 1.5rem;
}

.pickup__notes {
  font-size: 0.625rem;
  line-height: 1.375rem;
  transform: scale(0.9);
  transform-origin: left;
  margin-top: 1.125rem;
}

/* 比較表 */
.comparison {
  padding: 2.5rem 0 0;
}

.comparison__content {
  margin-top: 1rem;
}

.comparison__table {
  border-top: none;
  border-radius: 0;
  overflow: auto;
  position: sticky;
  top: 0;
  left: 0;
}

.comparison__table th {
  height: 2rem;
  padding: 0.25rem 0.75rem;
}

.comparison__table td {
  font-size: 0.875rem;
  text-align: center;
}

.comparison__table td:nth-of-type(1) {
  background: var(--Back_yellow);
}

.comparison__table tr:nth-of-type(1) td {
  border-top: 0.0625rem solid var(--Main01);
  padding-top: 5.125rem;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}

.comparison__table tr:nth-of-type(1) td::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 5.0625rem;
  aspect-ratio: 81 / 59;
  position: absolute;
  top: 1.125rem;
  left: 50%;
  transform: translateX(-50%);
}

.comparison__table tr:nth-of-type(1) td:nth-of-type(1)::before {
  background-image: url(../img/rank01_edge.webp);
  width: 5.5625rem;
  aspect-ratio: 89 / 65;
  top: 0.75rem
}

.comparison__table tr:nth-of-type(1) td:nth-of-type(2)::before {
  background-image: url(../img/rank02.webp);
}

.comparison__table tr:nth-of-type(1) td:nth-of-type(3)::before {
  background-image: url(../img/rank03.webp);
}

.comparison__table tr:nth-of-type(1) td::after {
  content: "";
  display: inline-block;
  background: var(--Main01);
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  top: 100%;
  left: 0;
}

.comparison__table td small {
  font-size: 0.625rem;
  line-height: 1rem;
  display: inline-block;
  margin-top: 0.25rem;
  transform: scale(0.9);
}

.comparison__table-catch {
  font-size: 0.875rem;
  line-height: 1.125rem;
}

.comparison__table td:nth-of-type(1) .comparison__table-catch {
  font-weight: 700;
  color: var(--Accent);
}

.comparison__table-logo {
  background: #fff;
  border: 0.0625rem solid #DFDFDF;
  width: 100%;
  aspect-ratio: 89 / 47;
  object-fit: contain;
  margin-top: 0.5rem;
}

.comparison__table td:nth-of-type(1) .comparison__table-logo {
  border: 0.0625rem solid var(--Main01);
}

.comparison__table-name {
  text-decoration: underline;
  line-height: 1.25rem;
  display: inline-block;
  margin-top: 0.5rem;
}

.comparison__table-name--looop {
  font-size: 0.875rem;
}

.comparison__table-name--ribbon {
  font-size: 0.75rem;
}

.comparison__table-name--octopuse {
  font-size: 0.625rem;
  transform: scale(0.9);
  transform-origin: center;
}

a.comparison__table-scrollBtn {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  margin-top: 0.5rem;
}

a.comparison__table-scrollBtn::after {
  content: "";
  display: inline-block;
  background-image: url(../img/chevron_down_blue_sp.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 0.75rem;
  aspect-ratio: 8 / 4;
  margin-top: 0.125rem;
}

.comparison__table-txt {
  font-size: 0.75rem;
  line-height: 1.125rem;
  text-align: left;
}

.comparison__notes {
  font-size: 0.625rem;
  line-height: 1.375rem;
  margin-top: 1rem;
  transform: scale(0.9);
  transform-origin: left;
}

/* 条件別のおすすめ電力会社 */
.case {
  padding: 2.5rem 0;
}

.case__box {
  padding-right: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-top: 1.375rem;
  position: relative;
}

.case__box-head {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--Main01);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--Sub02);
  border: 0.125rem solid var(--Main01);
  width: calc(100% - (1.125rem * 2 + 0.3125rem));
  padding: 0.3125rem 0;
  position: absolute;
  top: -1.375rem;
  left: 1.125rem;
  z-index: 1;
}

.case__box-head::before {
  content: "";
  display: inline-block;
  background-image: url(../img/case_ttl_icon.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.375rem;
  aspect-ratio: 1;
}

.case__box-content {
  background: var(--Back_yellow);
  outline: 0.125rem solid var(--Sub01);
  outline-offset: -0.125rem;
  padding: 2.5rem 1.125rem;
  position: relative;
}

.case__box-content::before {
  content: "";
  display: block;
  background: var(--Sub01);
  width: 100%;
  height: 100%;
  position: absolute;
  right: -0.3125rem;
  bottom: -0.3125rem;
  z-index: -1;
}

.case__box-list-item {
  display: flex;
  min-height: 9.5rem;
}

.case__box-list-item:nth-of-type(n+2) {
  margin-top: 1.125rem;
}

.case__box-list-item-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--Main01);
  width: 8.375rem;
  padding: 0 1.125rem;
  flex-shrink: 0;
  position: relative;
}

.case__box-list-item-head::after {
  content: "";
  display: inline-block;
  background-image: url(../img/triangle_right_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.9375rem;
  aspect-ratio: 31 / 38;
  position: absolute;
  top: 50%;
  right: -0.875rem;
  transform: translateY(-50%);
}

.case__box-list-item-head-img {
  width: 3.375rem;
  aspect-ratio: 1;
}

.case__box-list-item-head-txt {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: center;
  color: #fff;
}

.case__box-list-item-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 100%;
  padding: 0.75rem 1.125rem;
}

.case__box-list-item-logo {
  object-fit: contain;
  outline: 0.0625rem solid var(--Main01);
  outline-offset: -0.0625rem;
  width: 8rem;
  aspect-ratio: 128 / 43;
}

.case__box-list-item-name {
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-decoration: underline;
  display: inline-block;
  margin-top: 0.25rem;
}

.case__box-list-item-txt {
  font-size: 0.75rem;
  line-height: 1.125rem;
  margin-top: 0.25rem;
}

/* ランキング */
.ranking {
  background: var(--Back);
  padding: 2.5rem 0;
}

.ranking__content {
  margin-top: 1.125rem;
}

.ranking__box {
  background: #fff;
  outline: 0.0625rem solid var(--Main01);
  outline-offset: -0.0625rem;
  border-radius: 0.375rem;
  padding: 0.5rem 1.125rem 2.5rem;
}

.ranking__box:nth-of-type(n+2) {
  margin-top: 2rem;
}

.ranking__box-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 3.3125rem;
  padding-left: 4.375rem;
  position: relative;
}

.ranking__box-head::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 4rem;
  aspect-ratio: 64 / 53;
  position: absolute;
  top: 0;
  left: 0;
}

.ranking__box:nth-of-type(1) .ranking__box-head::before {
  background-image: url(../img/rank01.webp);
}

.ranking__box:nth-of-type(2) .ranking__box-head::before {
  background-image: url(../img/rank02.webp);
}

.ranking__box:nth-of-type(3) .ranking__box-head::before {
  background-image: url(../img/rank03.webp);
}

.ranking__box:nth-of-type(4) .ranking__box-head::before {
  background-image: url(../img/rank04.webp);
}

a.ranking__box-head-name {
  font-weight: 900;
  font-size: 1.375rem;
  line-height: 1.875rem;
}

.ranking__box-top {
  display: block;
  margin-top: 0.5rem;
}

.ranking__box-top-table {
  margin-top: 1.125rem;
}

.ranking__box-top-table th {
  line-height: 1.5rem;
  width: 6.125rem;
  height: 3rem;
}

.ranking__box-top-table th small {
  font-size: 0.625rem;
  line-height: 0.875rem;
  display: inline-block;
  transform: scale(0.9);
  transform-origin: left;
  margin-top: 0.0625rem;
}

.ranking__box-top-table td small {
  font-size: 0.625rem;
  line-height: 1.125rem;
  display: inline-block;
  transform: scale(0.9);
  transform-origin: left;
}

.ranking__box-merit {
  border-radius: 0.375rem;
  margin-top: 1.125rem;
  overflow: hidden;
}

.ranking__box-merit-head {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--Sub01);
  min-height: 2.5rem;
  padding: 0.5rem;
}

.ranking__box-merit-head::before {
  content: "";
  display: inline-block;
  background-image: url(../img/ranking_merit_ttl_icon.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.5rem;
  aspect-ratio: 1;
}

.ranking__box-merit-content {
  background: var(--Back_yellow);
  padding: 0.875rem 1.125rem 1.25rem;
}

.ranking__box-merit-list-item {
  font-size: 0.875rem;
  line-height: 1.625rem;
  padding-left: 1rem;
  position: relative;
}

.ranking__box-merit-list-item::before {
  content: "";
  display: inline-block;
  background: var(--Sub01);
  border-radius: 50%;
  width: 0.5rem;
  aspect-ratio: 1;
  position: absolute;
  top: 0.7em;
  left: 0;
}

.ranking__box-merit-list-item:nth-of-type(n+2) {
  margin-top: 0.75rem;
}

.ranking__box-recommend {
  margin-top: 2.5rem;
  position: relative;
}

.ranking__box-recommend-head {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--pink);
  border-radius: 1.25rem;
  height: 2.5rem;
  padding: 0.5rem 1rem;
  position: absolute;
  top: -1.3125rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.ranking__box-recommend-head::after {
  content: "";
  display: inline-block;
  background-image: url(../img/triangle_down_pink.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2.0625rem;
  aspect-ratio: 33 / 19;
  position: absolute;
  left: 50%;
  bottom: -0.6875rem;
  transform: translateX(-50%);
}

.ranking__box-recommend-content {
  background: var(--Back_pink);
  border: 0.0625rem solid var(--pink);
  border-radius: 0.375rem;
  padding: 1.875rem 1.125rem 1.375rem;
}

.ranking__box-recommend-list-item {
  font-size: 0.875rem;
  line-height: 1.625rem;
  padding-left: 1rem;
  position: relative;
}

.ranking__box-recommend-list-item::before {
  content: "";
  display: inline-block;
  background: var(--pink);
  border-radius: 50%;
  width: 0.5rem;
  aspect-ratio: 1;
  position: absolute;
  top: 0.7em;
  left: 0;
}

.ranking__box-recommend-list-item:nth-of-type(n+2) {
  margin-top: 0.75rem;
}

.ranking__box-simulation {
  margin-top: 2rem;
}

.ranking__box-simulation-table {
  margin-top: 1.125rem;
}

.ranking__box-simulation-table th:nth-of-type(1) {
  width: 6.0625rem;
}

.ranking__box-simulation-table th:nth-of-type(n+2) {
  border-left: 0.0625rem solid #fff;
}

.ranking__box-simulation-table-household {
  font-size: 0.75rem;
  line-height: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.ranking__box-simulation-table-household::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 0.9375rem;
  aspect-ratio: 1;
}

.ranking__box-simulation-table-household--single::before {
  background-image: url(../img/household_single.webp);
}

.ranking__box-simulation-table-household--two::before {
  background-image: url(../img/household_two.webp);
}

.ranking__box-simulation-table-household--three::before {
  background-image: url(../img/household_three.webp);
}

.ranking__box-simulation-table-household--four::before {
  background-image: url(../img/household_four.webp);
}

.ranking__box-simulation-table td {
  font-size: 0.75rem;
  line-height: 1.125rem;
  text-align: center;
}

.ranking__box-simulation-notes {
  font-size: 0.625rem;
  line-height: 1.375rem;
  transform: scale(0.9);
  transform-origin: left;
  margin-top: 1rem;
}

a.ranking__box-btn {
  margin-top: 1.125rem;
}

.ranking__box-notes {
  font-size: 0.625rem;
  line-height: 1.375rem;
  transform: scale(0.9);
  transform-origin: left;
  margin-top: 1.125rem;
}

.ranking__box-catch {
  text-align: center;
  margin-top: 1.125rem;
}

.ranking__box-catch span {
  font-size: 1rem;
  line-height: 1.625rem;
  display: inline-block;
}

.ranking__box-catch + .ranking__box-btn {
  margin-top: 0.75rem;
}

/* 検索 */
.search {
  border-top: 0.5rem solid rgba(1, 104, 182, 0.5);
  padding: 2.5rem 0;
}

.search__content {
  margin-top: 1rem;
}

.search__form-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6875rem;
}

.search__form-ttl {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.search__form-ttl::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.375rem;
  aspect-ratio: 1;
}

.search__form-group--area .search__form-ttl::before {
  background-image: url(../img/search_ttl_icon_area.webp);
}

.search__form-group--household .search__form-ttl::before {
  background-image: url(../img/search_ttl_icon_household.webp);
}

.search__form-select {
  border-radius: 0.375rem;
  margin-top: 0.6875rem;
  position: relative;
  overflow: hidden;
}

.search__form-select::after {
  content: "";
  display: inline-block;
  background-image: url(../img/acc_arrow_down_yellow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.125rem auto;
  background-color: var(--Main01);
  width: 2.375rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

/* .search__form select {
  font-family: var(--Font_normal);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--Text);
  background: var(--Back);
  border: none;
  outline: 0.1875rem solid var(--Main01);
  outline-offset: -0.1875rem;
  border-radius: 0.375rem;
  width: 100%;
  height: 3.75rem;
  padding: 0 0.75rem;
} */

.customSelect__trigger {
  font-family: var(--Font_normal);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: left;
  color: var(--Text);
  background: var(--Back);
  border: none;
  outline: 0.1875rem solid var(--Main01);
  outline-offset: -0.1875rem;
  border-radius: 0.375rem;
  width: 100%;
  height: 3.75rem;
  padding: 0 0.75rem;
  cursor: pointer;
}

.customSelect__trigger:focus {
  outline: 0.1875rem solid var(--Main01);
}

.customSelect__overlay {
  display: none;
  background: rgba(1, 104, 182, 0.6);
  backdrop-filter: blur(0.0938rem);
  position: fixed;
  inset: 0;
  z-index: 1000;
}

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

.customSelect__sheet {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0.75rem 0.75rem 0 0;
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 70vh;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  z-index: 1001;
}

.customSelect__sheet.is-active {
  transform: translateY(0);
}

.customSelect__sheet-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5625rem 1.125rem 0;
  position: relative;
}

.customSelect__sheet-ttl {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}

.customSelect__sheet-ttl::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.375rem;
  aspect-ratio: 1;
}

[data-select-name="area"] .customSelect__sheet-ttl::before {
  background-image: url(../img/search_ttl_icon_area.webp);
}

[data-select-name="household"] .customSelect__sheet-ttl::before {
  background-image: url(../img/search_ttl_icon_household.webp);
}

.customSelect__sheet-close {
  width: 0.9375rem;
  height: 0.9375rem;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  position: absolute;
  top: 1.75rem;
  right: 1.125rem;
}

.customSelect__sheet-close::before,
.customSelect__sheet-close::after {
  content: "";
  position: absolute;
  width: 1.1875rem;
  height: 0.125rem;
  background: var(--Main01);
}

.customSelect__sheet-close::before {
  transform: rotate(45deg);
}

.customSelect__sheet-close::after {
  transform: rotate(-45deg);
}

.customSelect__sheet-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6875rem;
  padding: 1.5625rem 1.125rem 2.5rem;
}

.customSelect__sheet-item {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Back);
  border: 0.125rem solid #AFD5F0;
  border-radius: 0.5rem;
  height: 3.5rem;
  cursor: pointer;
}

.customSelect__sheet-item.is-selected {
  color: #fff;
  background: var(--Main01);
  border: 0.125rem solid var(--Main01);
}

.search__table {
  border: 0.0625rem solid var(--Main03);
  margin-top: 1.5rem;
}

.search__table th {
  font-size: 0.75rem;
  line-height: 1rem;
  background: var(--Main03);
  height: 5rem;
  padding: 0;
}

.search__table th:nth-of-type(n+2) {
  border-left: 0.0625rem solid #fff;
}

.search__table th:nth-of-type(3) {
  width: 9rem;
}

.search__table td {
  text-align: center;
}

.search__table tr:nth-of-type(n+2) td {
  border-top: 0.0625rem solid var(--Main03);
}

.search__table td:nth-of-type(n+2) {
  border-left: 0.0625rem solid var(--Main03);
}

.search__table td:nth-of-type(1) {
  font-weight: 700;
  line-height: 1rem;
}

.search__table-logo {
  border: 0.0625rem solid var(--Main03);
  width: 100%;
  height: 1.5rem;
  object-fit: contain;
}

.search__table-name {
  display: inline-block;
  margin-top: 0.5rem;
}

.search__notes {
  font-size: 0.625rem;
  line-height: 1.25rem;
  transform: scale(0.9);
  transform-origin: left;
  margin-top: 1rem;
}

/* ポイント */
.point {
  background: var(--Back_yellow);
  border-top: 0.5rem solid var(--Sub01);
  padding: 2.5rem 0;
}

.point__content {
  margin-top: 1rem;
}

.point__item {
  padding: 2rem 0;
  position: relative;
}

.point__item:first-of-type {
  padding-top: 0;
}

.point__item:last-of-type {
  padding-bottom: 0;
}

.point__item:nth-of-type(n+2)::before {
  content: "";
  display: inline-block;
  background-image: url(../img/point_line_sp.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 14.375rem;
  aspect-ratio: 230 / 2;
  position: absolute;
  top: -0.0625rem;
  left: 50%;
  transform: translateX(-50%);
}

.point__accBtn {
  font-family: var(--Font_normal);
  background: #fff;
  border: none;
  outline: 0.1875rem solid var(--Main01);
  outline-offset: -0.1875rem;
  border-radius: 0.375rem;
  padding: 2.25rem 3.125rem 0.75rem 0.75rem;
  position: relative;
  overflow: hidden;
}

.point__accBtn::before {
  content: "";
  display: inline-block;
  background-image: url(../img/point_label.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 5rem;
  aspect-ratio: 80 / 22;
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}

.point__accBtn::after {
  content: "";
  display: inline-block;
  background-image: url(../img/acc_arrow_down_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.125rem auto;
  background-color: var(--Main01);
  width: 2.375rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.point__accBtn.is-active::after {
  background-image: url(../img/acc_arrow_up_white.svg);
}

.point__accBtn:focus {
  outline: 0.1875rem solid var(--Main01);
}

.point__accBtn-wrap {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.point__accBtn-img {
  width: 2.25rem;
  aspect-ratio: 1;
}

.point__accBtn-txt {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.375rem;
  color: var(--Text);
}

/* .point__accCont-wrap {
  padding-top: 1.125rem;
} */

.point__item-txt {
  font-size: 0.875rem;
  line-height: 1.625rem;
  margin-top: 1.125rem;
}

.point__item-txt .bold {
  font-size: 1rem;
}

.point__item-box {
  background: #fff;
  border-radius: 0.375rem;
  padding: 1.5rem 1.125rem;
  margin-top: 1.125rem;
}

.point__item-box:has(:only-child) {
  padding-bottom: 1.125rem;
}

.point__item-box-flex {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem
}

.point__item-box-flex-logo {
  background: #fff;
  border: 0.0625rem solid var(--Main03);
  width: 6.25rem;
  aspect-ratio: 100 / 33;
  object-fit: contain;
}

.point__item-box-flex-name {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-align: center;
  margin-top: 0.25rem;
}

.point__item-box-flex-arrow {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  text-align: center;
  color: #fff;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  background: url(../img/point_polygon.svg) no-repeat left center / contain;
  width: 4.1875rem;
  aspect-ratio: 67 / 56;
  padding-left: 0.5rem;
}

.point__item-box-flex-txt {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.625rem;
}

.point__item-box-detail {
  border-radius: 0.375rem;
  margin-top: 0.875rem;
  overflow: hidden;
}

.point__item-box-detail-head {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #fff;
  background: var(--Main02);
  min-height: 2.25rem;
  padding: 0.375rem 1rem;
}

.point__item-box-detail-content {
  background: var(--Back);
  padding: 0.75rem 1.125rem 1.125rem;
}

.point__item-box-detail-list-item {
  font-size: 0.875rem;
  line-height: 1.625rem;
  padding-left: 1rem;
  position: relative;
}

.point__item-box-detail-list-item::before {
  content: "";
  display: inline-block;
  background: var(--Main02);
  border-radius: 50%;
  width: 0.5rem;
  aspect-ratio: 1;
  position: absolute;
  top: 0.7em;
  left: 0;
}

.point__item-box-detail-list-item:nth-of-type(n+2) {
  margin-top: 0.25rem;
}

.point__item-table {
  margin-top: 1.125rem;
}

.point__item-table th {
  line-height: 1.5rem;
  height: 3rem;
}

.point__item-table th:nth-of-type(n+2) {
  border-left: 0.0625rem solid #fff;
}

.point__item-table td {
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-align: center;
}

.point__item-table-logo {
  background: #fff;
  border: 0.0625rem solid var(--Main03);
  width: 6.875rem;
  height: 2.3125rem;
  object-fit: contain;
  margin: 0 auto;
}

.point__item-table-name {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5rem;
  display: inline-block;
  margin-top: 0.25rem;
}

/* Q&A */
.qa {
  padding: 2.5rem 0;
}

.qa__content {
  margin-top: 1rem;
}

.qa__item {
  padding: 2rem 0;
  position: relative;
}

.qa__item:first-of-type {
  padding-top: 0;
}

.qa__item:last-of-type {
  padding-bottom: 0;
}

.qa__item:nth-of-type(n+2)::before {
  content: "";
  display: inline-block;
  background: var(--Main01);
  border-radius: 0.125rem;
  width: 3.125rem;
  height: 0.125rem;
  position: absolute;
  top: -0.0625rem;
  left: 50%;
  transform: translateX(-50%);
}

.qa__q {
  font-family: var(--Font_normal);
  font-size: 1rem;
  color: var(--Text);
  background: var(--Back_yellow);
  border: none;
  outline: 0.1875rem solid var(--Sub01);
  outline-offset: -0.1875rem;
  border-radius: 0.375rem;
  min-height: 5rem;
  padding: 1rem 3.125rem 1rem 3.375rem;
  position: relative;
  overflow: hidden;
}

.qa__q::before {
  content: "";
  display: inline-block;
  background-image: url(../img/qa_icon.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2.25rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
}

.qa__q::after {
  content: "";
  display: inline-block;
  background-image: url(../img/acc_arrow_down_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.125rem auto;
  background-color: var(--Sub01);
  width: 2.375rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.qa__q.is-active::after {
  background-image: url(../img/acc_arrow_up_blue.svg);
}

.qa__q:focus {
  outline: 0.1875rem solid var(--Sub01);
}

.qa__a-txt {
  font-size: 0.875rem;
  line-height: 1.625rem;
  margin-top: 1.125rem;
}

.qa__a-txt .bold {
  font-size: 1rem;
}

.qa__a-box {
  background: var(--Back_yellow);
  border-radius: 0.375rem;
  padding: 1.125rem;
  margin-top: 1.125rem;
}

.qa__a-box-list-item {
  padding-left: 1rem;
  position: relative;
}

.qa__a-box-list-item::before {
  content: "";
  display: inline-block;
  background: var(--Sub01);
  border-radius: 50%;
  width: 0.5rem;
  aspect-ratio: 1;
  position: absolute;
  top: 0.7em;
  left: 0;
}

.qa__a-box-list-item:nth-of-type(n+2) {
  margin-top: 0.25rem;
}


/* ==========================================================================
フッター
=========================================================================== */
.footer {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Main01);
  padding: 1.125rem 0;
  position: relative;
  z-index: 1;
}

.footer__nav .menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__nav .menu li::before {
  content: "|";
  margin: 0 0.5em;
}

.footer__nav .menu li:last-of-type::after {
  content: "|";
  margin: 0 0.5em;
}

.footer__nav .menu li a {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.875rem;
  text-decoration: none;
  color: #fff;
}

.footer__copyright {
  text-align: center;
}

.footer__copyright small {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.875rem;
  color: #fff;
}


/* ==========================================================================
コラム
=========================================================================== */
.breadcrumbs {
  background: #E9E9E9;
  padding: 0.5rem 0;
}

.breadcrumbs__inner {
  font-size: 0.75rem;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.breadcrumbs a,
.breadcrumbs span {
  font-size: 0.75rem;
  line-height: 1;
  color: var(--Text);
  display: inline-block;
}

.breadcrumbs .home {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.breadcrumbs .home::before {
  content: "";
  display: inline-block;
  background-image: url(../img/home.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 0.875rem;
  aspect-ratio: 1;
}

.column {
  font-size: 0.9375rem;
  line-height: 1.8;
  padding-bottom: 3rem;
}

.column p {
  margin-top: 1.25rem;
}

.column p + p {
  margin-top: calc(1em * 1.8);
}

.column h1 {
  font-weight: 900;
  font-size: 1.625rem;
  line-height: 1.5;
  border-bottom: 0.125rem solid var(--Main01);
  padding: 0.25rem 0;
  margin-top: 1.5rem;
}

.column h2 {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--Main01);
  background: var(--Back_yellow);
  border-left: 0.3125rem solid var(--Main01);
  padding: 0.625rem 1rem;
  margin-top: 2.5rem;
}

.column h3 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  border-bottom: 0.125rem solid #CBCBCB;
  padding-bottom: 0.25rem;
  margin-top: 1.5rem;
}

.column .table {
  margin-top: 1.25rem;
}

.column .table th {
  text-align: left;
  width: 38%;
}

.column .table tr:first-of-type td {
  border-top: 0.0625rem solid #CACACA;
}

.column .tableScroll {
  overflow-x: auto;
}

.column .tableScroll > .table {
  min-width: 31.25rem;
}

.column ul {
  margin-top: 0.625rem;
}

.column ul li {
  list-style-type: disc;
  margin-left: 1.5em;
}

.column ul li:nth-of-type(n+2) {
  margin-top: 0.25rem;
}

/* ==========================================================================
404
=========================================================================== */
.error404__content {
  text-align: center;
  padding: 10rem 0;
}

.error404__ttl {
  font-size: 2rem;
}

.error404__message {
  margin-top: 2rem;
}

.error404__message-ttl {
  font-size: 1rem;
}

.error404__message-txt {
  font-size: 0.75rem;
  margin-top: 1rem;
}

.error404__content .btn {
  margin-left: auto;
  margin-right: auto;
}

.error404__link {
  display: inline-block;
  margin-top: 1rem;
}