@charset "UTF-8";

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

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

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

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

:root {
  /* カラー */
  --Text: #000;
  --Text_link: #1A0DAB;
  --Text_grey: #494949;
  --Main: #199184;
  --Sub: #0092BB;
  --Accent: #FF3C3F;
  --Back: #D5EBE8;
  --Back_yellow: #FFFEED;
  --Back_grey: #F5F5F5;
  --CTA01: #FF6200;
  --CTA02: #F30002;
  --CTA_shadow: rgba(58, 65, 111, 0.5);
  --yellow: #ECD443;
  --grey: #CACACA;

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

.html {
  font-size: 16px;
  scrollbar-gutter: stable;
  overflow-x: hidden;
}

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

  .container {
    width: 100%;
    max-width: auto;
  }

}

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

.body {
  font-family: var(--Font_normal);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  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 {
  width: 24.5625rem;
  max-width: 24.5625rem;
  margin: 0 auto;
  position: relative;
}

.inner {
  padding: 0 1.25rem;
  margin: 0 auto;
}

.forPC {
  display: none;
}

.forPC-inline {
  display: none;
}  

.forSP {
  display: block;
}

.forSP-inline {
  display: inline;
}

picture {
  display: block;
}

picture img {
  width: 100%;
}


/* ==========================================================================
共通パーツ
=========================================================================== */
.bold {
  font-weight: 700;
}

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

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

.notes {
  font-size: 0.625rem;
  vertical-align: super;
}

.btn,
a.btn {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(96.49deg, var(--CTA01) 0%, var(--CTA02) 100%);
  border: none;
  border-radius: 0.3125rem;
  box-shadow: inset 0 -0.1875rem 0 0 var(--CTA_shadow);
  width: 100%;
  min-height: 4rem;
  position: relative;
  padding: 0.8125rem;
}

.btn--sm,
a.btn--sm {
  font-size: 0.875rem;
  border-radius: 0.0625rem;
  box-shadow: inset 0 -0.125rem 0 0 var(--CTA_shadow);
  min-height: 2rem;
  padding: 0.3125rem 0.375rem 0.4375rem;
}

.btn--arrow::after,
a.btn--arrow::after {
  content: "";
  display: inline-block;
  background: url(../img/chevron_circle_white.svg) no-repeat center / contain;
  aspect-ratio: 1;
  width: 1rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}

.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;
  width: 100%;
}

.table th,
.table td {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.3;
  text-align: center;
  border-top: max(1px, 0.0625rem) solid #5B5B5B;
  border-left: max(1px, 0.0625rem) solid #5B5B5B;
}

.table th:last-child,
.table td:last-child {
  border-right: max(1px, 0.0625rem) solid #5B5B5B;
}

.table tr:last-child th,
.table tr:last-child td {
  border-bottom: max(1px, 0.0625rem) solid #5B5B5B;
}

.table th {
  text-align: center;
  background: var(--Back_grey);
  padding: 0.5rem;
}

.table td {
  padding: 0.625rem 0.5rem;
}

.accBtn {
  font-family: var(--Font_normal);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: none;
  width: 100%;
  height: 3rem;
  margin-top: 1rem;
  position: relative;
  cursor: pointer;
}

.accCont {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .3s ease;
}

.accCont.is-open {
  grid-template-rows: 1fr;
}

.accCont__inner {
  overflow: hidden;
}

.moreBtn {
  display: block;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.moreCont {
  max-height: 0;
  transition: max-height 0.3s ease;
  overflow: hidden;
}

.moreCont.is-open {
  max-height: 500px;
}

.moreCont.is-open::after {
  transform: translateY(100%);
}


/* ==========================================================================
ヘッダー
=========================================================================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  width: 100%;
  padding: 0.75rem 0.75rem 0.5rem 0.875rem;
}

.header__logo {
  width: 6.875rem;
}

.pr {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: max(1px, 0.0625rem) solid var(--Text);
  outline-offset: max(-1px, -0.0625rem);
  width: 2.125rem;
  height: 1.25rem;
  padding-bottom: 0.125rem;
}


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

.mv__area {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 3.5rem;
  left: 10.375rem;
  transform: translateX(-50%);
}

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

.comparison__content {
  padding-top: 3.5rem;
  position: relative;
}

.comparison__inner {
  padding: 0 calc((100% - 23rem) / 2);
}

.comparison__rank {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 3.4375rem;
  aspect-ratio: 55 / 40;
  position: absolute;
  top: 0;
}

.comparison__rank01 {
  background-image: url(../img/rank_01.png);
  left: 5rem;
}

.comparison__rank02 {
  background-image: url(../img/rank_02.png);
  left: 11.5rem;
}

.comparison__rank03 {
  background-image: url(../img/rank_03.png);
  left: 18rem;
}

.comparison__table th {
  width: 3.5rem;
}

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

.comparison__table td small {
  display: inline-block;
  margin-top: 0.25rem;
}

.comparison__table-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.comparison__table-link-logo {
  width: 3.5rem;
  aspect-ratio: 1;
  object-fit: contain;
}

.comparison__table-link-name {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.eval {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.125rem 0;
}

.eval__star {
  width: 4.5rem;
}

.eval__txt {
  font-weight: 700;
}

.doubleCircle,
.circle,
.triangle {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.5rem;
  aspect-ratio: 1;
  margin: 0 auto 0.25rem;
}

.circle {
  background-image: url(../img/circle.svg);
}

.doubleCircle {
  background-image: url(../img/circle_double.svg);
}

.triangle {
  background-image: url(../img/triangle.svg);
}

a.comparison__table-btn {
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.125rem;
}

a.comparison__table-btn::after {
  content: "";
  display: inline-block;
  background-image: url(../img/triangle_white.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 0.875rem;
  aspect-ratio: 14 / 17;
}

.comparison__notes {
  font-size: 0.625rem;
  line-height: 1.3;
  text-align: right;
  margin-top: 0.5rem;
}

/* コンテンツ */
.intro__top {
  background: var(--Back_grey);
  padding: 1.25rem 0 0.375rem;
  margin-bottom: 3.5rem;
  position: relative;
}

.intro__top::after {
  content: "";
  border-top: 2.5rem solid var(--Back_grey);
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.intro__top-txt {
  line-height: 1.6;
  text-align: center;
  margin-top: 1rem;
}

.intro__difference {
  background: var(--Back_grey);
  padding-bottom: 2.375rem;
}

.intro__difference-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.intro__difference-list-item {
  background: #fff;
  outline: max(1px, 0.0625rem) solid #bbb;
  outline-offset: max(-1px, -0.0625rem);
  padding: 1.5rem 0;
  position: relative;
}

.intro__difference-list-item::before {
  content: "";
  border-top: 1.125rem solid var(--Main);
  border-right: 1.125rem solid transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.intro__difference-list-item-head {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 1.625rem;
  width: 18.75rem;
  height: 2.5rem;
  padding: 0.125rem 0.125rem 0;
  margin: 0 auto;
  position: relative;
}

.intro__difference-list-item-head::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2.125rem;
  aspect-ratio: 34 / 40;
}

.intro__difference-list-item:nth-of-type(1) .intro__difference-list-item-head::before {
  background-image: url(../img/difference_list_ttl_01.png);
}

.intro__difference-list-item:nth-of-type(2) .intro__difference-list-item-head::before {
  background-image: url(../img/difference_list_ttl_02.png);
}

.intro__difference-list-item:nth-of-type(3) .intro__difference-list-item-head::before {
  background-image: url(../img/difference_list_ttl_03.png);
}

.intro__difference-list-item-img {
  width: 18.75rem;
  margin: 0.5rem auto 0;
}

.intro__conclusion {
  background: #FFFDDD;
  padding: 1.5rem 1.5625rem;
  margin-top: 1.5rem;
}

.intro__conclusion-head {
  text-align: center;
  position: relative;
}

.intro__conclusion-head-ttl {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.1em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  outline: max(1px, 0.0625rem) solid var(--Text);
  outline-offset: max(-1px, -0.0625rem);
  width: 6.375rem;
  height: 2.125rem;
  position: relative;
}

.intro__conclusion-head-ttl::before {
  content: "";
  display: inline-block;
  background-image: url(../img/bulb.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2.5rem;
  aspect-ratio: 1;
  position: absolute;
  top: -0.3125rem;
  left: -2.875rem;
}

.intro__conclusion-txt {
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: justify;
  margin-top: 0.625rem;
}

/* 矢印 */
.arrow {
  background: url(../img/chevron_double_down_grey.svg) no-repeat center / contain;
  width: 1.25rem;
  aspect-ratio: 20 / 28;
  margin: 1rem auto;
}

/* ミニランキング */
.miniRanking {
  padding: 0.5rem 0 1rem;
}

.miniRanking__content {
  margin-top: 0.75rem;
}

.miniRanking__box {
  --color: #909090;
  border: max(1px, 0.0625rem) solid var(--color);
  position: relative;
}

.miniRanking__box:nth-of-type(1) {
  --color: var(--Main);
  background: var(--Back_yellow);
}

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

.miniRanking__box::before {
  content: "";
  border-top: 1rem solid var(--color);
  border-right: 1rem solid transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.miniRanking__box-head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.5rem;
  position: relative;
}

.miniRanking__box-head::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 3.4375rem;
  aspect-ratio: 55 / 40;
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
}

.miniRanking__box:nth-of-type(1) .miniRanking__box-head::before {
  background-image: url(../img/rank_01.png);
}

.miniRanking__box:nth-of-type(2) .miniRanking__box-head::before {
  background-image: url(../img/rank_02.png);
}

.miniRanking__box:nth-of-type(3) .miniRanking__box-head::before {
  background-image: url(../img/rank_03.png);
}

.miniRanking__box--draga .miniRanking__box-head-link {
  display: inline-block;
  width: 13.875rem;
  margin-left: 3.3125rem;
}

.miniRanking__box--east .miniRanking__box-head-link {
  display: inline-block;
  width: 9.0625rem;
}

.miniRanking__box--agaskin .miniRanking__box-head-link {
  display: inline-block;
  width: 15.8125rem;
  margin-left: 4.75rem;
}

.miniRanking__box-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: max(1px, 0.0625rem) solid var(--color);
  border-bottom: max(1px, 0.0625rem) solid var(--color);
  row-gap: 0.125rem;
}

.miniRanking__box-list dt {
  grid-row: 1;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  background: var(--Back_grey);
  height: 1.5rem;
}

.miniRanking__box:nth-of-type(1) .miniRanking__box-list dt {
  background: var(--Back);
}

.miniRanking__box-list dt:nth-of-type(n+2) {
  border-left: max(1px, 0.0625rem) dashed var(--color);
}

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

.miniRanking__box-list dt:nth-of-type(1)::before {
  background-image: url(../img/zoom_grey.svg);
}

.miniRanking__box-list dt:nth-of-type(2)::before {
  background-image: url(../img/wallet_grey.svg);
}

.miniRanking__box-list dt:nth-of-type(3)::before {
  background-image: url(../img/walk_grey.svg);
}

.miniRanking__box:nth-of-type(1) .miniRanking__box-list dt:nth-of-type(1)::before {
  background-image: url(../img/zoom_green.svg);
}

.miniRanking__box:nth-of-type(1) .miniRanking__box-list dt:nth-of-type(2)::before {
  background-image: url(../img/wallet_green.svg);
}

.miniRanking__box:nth-of-type(1) .miniRanking__box-list dt:nth-of-type(3)::before {
  background-image: url(../img/walk_green.svg);
}

.miniRanking__box-list dd {
  line-height: 1.3;
  text-align: center;
  padding: 0.625rem;
}

.miniRanking__box-list dd:nth-of-type(n+2) {
  border-left: max(1px, 0.0625rem) dashed var(--color);
}

.miniRanking__box-list dd small {
  font-size: 0.875rem;
  display: inline-block;
  margin-top: 0.25rem;
}

.miniRanking__box-cta {
  padding: 0.5rem 1rem 1.125rem;
}

.miniRanking__box-cta-catch {
  font-family: "NotoSansJP", sans-serif;
  font-feature-settings: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  display: grid;
  grid-template-columns: auto 1fr;
  justify-items: center;
  align-items: center;
}

.miniRanking__box-cta-catch::before {
  content: "";
  display: inline-block;
  background-image: url(../img/point_grey.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2.8125rem;
  aspect-ratio: 45 / 10;
  margin-top: 0.25rem;
}

.miniRanking__box:nth-of-type(1) .miniRanking__box-cta-catch::before {
  background-image: url(../img/point_green.svg);
}

.miniRanking__box-cta-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

a.miniRanking__box-cta-scrollBtn {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00A6CB;
  border-radius: 0.0625rem;
  width: 7.5rem;
  height: 2.5rem;
  position: relative;
}

a.miniRanking__box-cta-scrollBtn::after {
  content: "";
  display: inline-block;
  background-image: url(../img/chevron_down_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.5rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
}

a.miniRanking__box-cta-btn {
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
  box-shadow: none;
  border-radius: 0.0625rem;
  width: 11.5rem;
  min-height: 2.5rem;
  padding: 0;
}

a.miniRanking__box-cta-btn::after {
  content: "";
  display: inline-block;
  background-image: url(../img/chevron_right_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.5rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
}

.miniRanking__notes {
  font-family: "NotoSansJP", sans-serif;
  font-feature-settings: normal;
  font-size: 0.625rem;
  line-height: 1.3;
  margin-top: 1rem;
}

/* コンテンツ02 */
.treatment__effect {
  background: var(--Back_grey);
  padding: 1.25rem 0 2rem;
  margin-top: 1rem;
}

.treatment__effect-box {
  background: #fff;
  padding: 1.75rem 0 1rem;
  position: relative;
}

.treatment__effect-box::before {
  content: "";
  display: inline-block;
  background-image: url(../img/clip.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 3rem;
  aspect-ratio: 1;
  position: absolute;
  top: -1.0625rem;
  left: 1.25rem;
}

.treatment__effect-box-head {
  padding: 0 1.5625rem;
}

.treatment__effect-box-head-ttl {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: center;
  border-bottom: max(1px, 0.0625rem) solid var(--Text);
  padding-bottom: 0.5rem;
}

.treatment__effect-box-head-txt {
  font-family: "NotoSansJP", sans-serif;
  font-feature-settings: normal;
  font-size: 0.75rem;
  line-height: 1.3;
  text-align: center;
  padding-top: 0.5rem;
}

.treatment__effect-box-slider {
  margin-top: 1rem;
}

.effectSlider .splide__slide {
  background: #E4F5F1;
  border-radius: 0.25rem;
  padding: 1rem 1.25rem 0.75rem;
}

.treatment__effect-box-slider-ttl {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
}

.treatment__effect-box-slider-img {
  margin-top: 0.75rem;
}

.treatment__effect-box-slider-table {
  border-radius: 0.125rem;
  margin-top: 0.5rem;
}

.treatment__effect-box-slider-table th {
  font-weight: 700;
  text-align: left;
  background: #F6F6F6;
  width: 4.5rem;
  padding: 0.375rem 0.5rem;
}

.treatment__effect-box-slider-table td {
  color: var(--Text_grey);
  text-align: left;
  background: #fff;
  padding: 0.375rem 0.75rem;
}

.treatment__effect-box-slider-table tr:first-child th:first-child {
  border-radius: 0.125rem 0 0 0;
}

.treatment__effect-box-slider-table tr:first-child td:last-child {
  border-radius: 0 0.125rem 0 0;
}

.treatment__effect-box-slider-table tr:last-child th:first-child {
  border-radius: 0 0 0 0.125rem;
}

.treatment__effect-box-slider-table tr:last-child td:last-child {
  border-radius: 0 0 0.125rem 0;
}

.treatment__effect-box-slider-notes {
  font-family: "NotoSansJP", sans-serif;
  font-feature-settings: normal;
  font-size: 0.75rem;
  line-height: 1.3;
  margin-top: 0.5rem;
}

.splide__arrow {
  width: 3rem;
  height: auto;
  aspect-ratio: 1;
  opacity: 1;
}

.splide__arrow:disabled {
  display: none;
  opacity: 0;
}

.splide__arrow--prev {
  background: url(../img/slider_arrow_prev.svg) no-repeat center / contain;
  left: -0.625rem;
}

.splide__arrow--next {
  background: url(../img/slider_arrow_next.svg) no-repeat center / contain;
  right: -0.625rem;
}

.splide__arrow svg {
  display: none;
}

.treatment__effect-box-notes {
  font-size: 0.625rem;
  line-height: 1.6;
  padding: 0 1.25rem;
  margin-top: 1rem;
}

.treatment__effect-txt {
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: justify;
  margin-top: 1rem;
}

.treatment__effect-img {
  margin-top: 1rem;
}

/* ランキング */
.ranking {
  padding: 1rem 0 ;
}

.ranking__ttl {
  position: relative;
}

.ranking__ttl-area {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 2.625rem;
  transform: translate(-50%, -50%);
}

.ranking__box {
  margin-top: 1rem;
}

.ranking__box-top {
  padding: 1rem 0 1.5rem;
}

.ranking__box:nth-of-type(1) .ranking__box-top {
  background: var(--Back_yellow);
}

.ranking__box-head {
  padding-left: 6.125rem;
  position: relative;
}

.ranking__box-head::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 4.8125rem;
  aspect-ratio: 77 / 56;
  position: absolute;
  top: 0.3125rem;
  left: 0.125rem;
}

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

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

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

.ranking__box-head-catch {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

a.ranking__box-head-name {
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-top: 0.25rem;
}

.ranking__box-eval {
  flex-direction: row;
  gap: 1rem;
  padding: 0;
  margin-top: 0.125rem;
}

.ranking__box-eval .eval__star {
  width: 6.75rem;
}

.ranking__box-eval .eval__txt {
  font-size: 0.875rem;
  line-height: 1.3;
  color: var(--Text_grey);
}

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

.ranking__box-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-right: max(1px, 0.0625rem) solid var(--Main);
  border-bottom: max(1px, 0.0625rem) solid var(--Main);
  margin-top: 1rem;
}

.ranking__box-grid-item {
  border-top: max(1px, 0.0625rem) solid var(--Main);
  border-left: max(1px, 0.0625rem) solid var(--Main);
}

.ranking__box-grid-item:nth-of-type(-n+2) {
  grid-column: span 2;
}

.ranking__box-grid-item-head {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.3;
  text-align: center;
  background: var(--Back);
  padding: 0.5rem;
}

.ranking__box-grid-item-content {
  font-family: "NotoSansJP", sans-serif;
  font-feature-settings: normal;
  line-height: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 0.625rem;
}

.ranking__box-grid-item:nth-of-type(-n+2) .ranking__box-grid-item-content {
  justify-content: flex-start;
  padding: 0.75rem 0.75rem 0.75rem 1.5rem;
}

.ranking__box-grid-item-content .doubleCircle,
.ranking__box-grid-item-content .circle,
.ranking__box-grid-item-content .triangle {
  width: 2.5rem;
  margin: 0;
}

.ranking__box-txtLink {
  line-height: 1.3;
  text-align: right;
  margin-top: 0.5rem;
}

.ranking__box-point {
  outline: 0.25rem solid var(--Sub);
  outline-offset: -0.25rem;
  padding: 1.25rem;
  margin-top: 1rem;
}

.ranking__box-point-list-item {
  padding: 1rem 0;
  position: relative;
}

.ranking__box-point-list-item:nth-of-type(n+2)::before {
  content: "";
  display: inline-block;
  background: url(../img/ranking_point_line_sp.svg) no-repeat center / contain;
  width: 18.9375rem;
  aspect-ratio: 303 / 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.ranking__box-point-list-item-head {
  font-weight: 700;
  line-height: 1.5;
  text-align: justify;
  color: var(--Main);
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  padding: 0.25rem 0 0.25rem 2.25rem;
  position: relative;
}

.ranking__box-point-list-item-head::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2rem;
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.ranking__box-point-list-item:nth-of-type(1) .ranking__box-point-list-item-head::before {
  background-image: url(../img/ranking_point_list_num_01.svg);
}

.ranking__box-point-list-item:nth-of-type(2) .ranking__box-point-list-item-head::before {
  background-image: url(../img/ranking_point_list_num_02.svg);
}

.ranking__box-point-list-item:nth-of-type(3) .ranking__box-point-list-item-head::before {
  background-image: url(../img/ranking_point_list_num_03.svg);
}

.ranking__box-point-list-item-content {
  text-align: justify;
  padding: 0.5rem 0.375rem 0;
}

.ranking__box-cta {
  background: url(../img/ranking_cta_bg.png) repeat left top / 0.375rem auto,
  #F6F6F6;
  padding: 1.5rem 1.25rem 1.25rem;
  margin-top: 1rem;
}

.ranking__box-cta-box {
  background: #fff;
  border-radius: 0.25rem;
  padding: 1.25rem 1.5rem;
}

.ranking__box-cta-box-link {
  display: block;
  margin: 0 auto;
}

#draga .ranking__box-cta-box-link {
  width: 13.875rem;
}

#east .ranking__box-cta-box-link {
  width: 9.0625rem;
}

#agaskin .ranking__box-cta-box-link {
  width: 15.8125rem;
}

.ranking__box-cta-box-catch {
  font-weight: 700;
  text-align: center;
  margin-top: 1rem;
}

.ranking__box-cta-box-btn {
  margin-top: 0.25rem;
}

.ranking__box-cta-box-btn::after {
  right: 1.5625rem;
}

.ttl {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--Main);
  text-align: justify;
  display: flex;
  align-items: center;
  background: #fff;
  border-top: max(1px, 0.0625rem) solid var(--Main);
  border-bottom: max(1px, 0.0625rem) solid var(--Main);
  height: 3rem;
  padding-left: 3.75rem;
  position: relative;
}

.ttl::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem;
  background-color: var(--Main);
  width: 3rem;
  aspect-ratio: 1;
  position: absolute;
  top: -0.0625rem;
  left: 0;
}

.ranking__box-area-ttl::before {
  background-image: url(../img/map_white.svg);
}

.ranking__box-area-accBtn01 {
  font-family: var(--Font_normal);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: #fff;
  background: var(--Sub);
  padding: 0 1rem;
  position: relative;
}

.ranking__box-area-accBtn01::after {
  content: "";
  display: inline-block;
  background-image: url(../img/plus_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.5rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

.ranking__box-area-accBtn01.is-active::after {
  background-image: url(../img/minus_white.svg);
}

.ranking__box-area-accBtn02 {
  font-family: var(--Font_normal);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--Text);
  background: #fff;
  border-right: max(1px, 0.0625rem) solid #494949;
  border-bottom: max(1px, 0.0625rem) solid #494949;
  border-left: max(1px, 0.0625rem) solid #494949;
  padding: 0 1rem;
  margin-top: 0;
}

.ranking__box-area-accBtn02:first-of-type {
  border-top: max(1px, 0.0625rem) solid #494949;
}

.ranking__box-area-accBtn02::after {
  content: "";
  display: inline-block;
  background-image: url(../img/chevron_down_green.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.5rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

.ranking__box-area-accBtn02.is-active::after {
  background-image: url(../img/chevron_up_blue.svg);
}

.ranking__box-area-accCont02.is-open:has(.ranking__box-area-accCont03:last-of-type.is-open) + .ranking__box-area-accBtn02 {
  border-top: max(1px, 0.0625rem) solid #494949;
}

.ranking__box-area-accBtn03 {
  font-family: var(--Font_normal);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--Text);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: none;
  background: #fff;
  border-bottom: max(1px, 0.0625rem) solid #494949;
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  margin-top: 0;
  position: relative;
  cursor: pointer;
}

.ranking__box-area-accBtn03.accBtn::after {
  content: "";
  display: inline-block;
  background-image: url(../img/plus_square.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

.ranking__box-area-accBtn03.accBtn.is-active::after {
  background-image: url(../img/minus_square.svg);
}

.ranking__box-area-accCont03 .accCont__wrap {
  padding: 0 0 1.5rem;
}

.ranking__box-area-img {
  margin-top: 1rem;
}

.ranking__box-area-info dt {
  font-weight: 700;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.ranking__box-area-info dt::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2rem;
  aspect-ratio: 1;
}

.ranking__box-area-info-address::before {
  background-image: url(../img/pin_blue.svg);
}

.ranking__box-area-info-hours::before {
  background-image: url(../img/clock_blue.svg);
}

.ranking__box-area-info-access::before {
  background-image: url(../img/train_blue.svg);
}

.ranking__box-area-info dd {
  line-height: 1.5;
  margin-top: 0.25rem;
}

.ul li {
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}

.ul li::before {
  content: "";
  display: inline-block;
  background: var(--Text);
  border-radius: 50%;
  width: 0.25rem;
  aspect-ratio: 1;
  position: absolute;
  top: 0.7em;
  left: 0.6em;
}

.ranking__box-area-info-access-list-item {
  font-family: "NotoSansJP", sans-serif;
  font-feature-settings: normal;
}

.ranking__box-area-cta {
  margin-top: 1rem;
}

.ranking__box-area-cta-catch {
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: center;
}

a.ranking__box-area-cta-btn {
  gap: 0.75rem;
  padding-left: 2rem;
  margin-top: 0.25rem;
}

a.ranking__box-area-cta-btn::after {
  position: static;
  transform: translateY(0);
}

.ranking__box-review-ttl::before {
  background-image: url(../img/bubble_white.svg);
}

.ranking__box-review {
  margin-top: 1rem;
}

.ranking__box-review-box {
  background: #A5D4C8;
  padding: 1rem 1.25rem 1rem 1.875rem;
  margin-top: 1rem;
}

.ranking__box-review-box-wrap {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}

.ranking__box-review-box-user {
  width: 3.5rem;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.ranking__box-review-box-bubble {
  background: #fff;
  border-radius: 0.25rem;
  width: 100%;
  padding: 0.75rem 1rem;
  position: relative;
}

.ranking__box-review-box-bubble::before {
  content: "";
  border-top: 0.375rem solid transparent;
  border-right: 0.6875rem solid #fff;
  border-bottom: 0.375rem solid transparent;
  position: absolute;
  top: 50%;
  left: -0.625rem;
  transform: translateY(-50%);
}

.ranking__box-review-box-bubble-eval {
  align-items: flex-start;
  padding: 0
}

.ranking__box-review-box-bubble-txt {
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: justify;
  margin-top: 0.25rem;
}

.ranking__box-review-box-notes {
  font-size: 0.625rem;
  text-align: right;
  margin-top: 0.25rem;
}

.ranking__box-review-moreBtn {
  font-family: var(--Font_normal);
  font-weight: 700;
  font-size: 0.875rem;
  color: #909090;
  border: max(1px, 0.0625rem) solid #909090;
  border-radius: 3rem;
  width: 100%;
  height: 2.5rem;
  margin-top: 1rem;
  position: relative;
}

.ranking__box-review-moreBtn::before {
  content: "";
  display: inline-block;
  background-image: url(../img/chevron_down_grey.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.5rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

.ranking__box-review-cta {
  margin-top: 1rem;
}

.ranking__box-review-cta-catch {
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: center;
}

a.ranking__box-review-cta-btn {
  gap: 0.75rem;
  padding-left: 2rem;
  margin-top: 0.25rem;
}

a.ranking__box-review-cta-btn::after {
  position: static;
  transform: translateY(0);
}

/* 絞り込み検索フォーム */
.search {
  background: #F6F6F6;
  padding: 0 0 1.5rem;
}

.search__content {
  margin-top: 0.875rem;
}

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

.search__form-ttl {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--Text_grey);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search__form-ttl--multiple::after {
  content: "複数選択OK";
  color: var(--Sub);
  display: inline-block;
  padding-right: 0.25rem;
}

.search__form-wrap {
  display: grid;
  margin-top: 0.5rem;
}

.search__form-group--age .search__form-wrap {
  grid-template-columns: 1fr 1fr 1fr 5.5rem;
  gap: 0.5rem;
}

.search__form-group--part .search__form-wrap {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

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

.search__form-group--purpose .search__form-wrap {
  grid-template-columns: repeat(1, 1fr);
  gap: 0.625rem;
}

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

.search__form label {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  background: #fff;
  outline: max(1px, 0.0625rem) solid #494949;
  outline-offset: max(-1px, -0.0625rem);
  border-radius: 0.125rem;
  min-height: 3rem;
  position: relative;
  cursor: pointer;
}

.search__form label:has(input[type="radio"]),
.search__form label:has(input[type="checkbox"]) {
  padding-left: 2.375rem;
}

.search__form .search__form-group--age label:has(input[type="radio"]) {
  padding-left: 2.25rem;
}

.search__form label:has(input[type="radio"]:checked),
.search__form label:has(input[type="checkbox"]:checked) {
  background: #E1F2FF;
  outline: 0.125rem solid #494949;
  outline-offset: -0.125rem;
}

.search__form label:has(input[type="radio"])::before {
  content: "";
  display: inline-block;
  background: #fff;
  border: max(1px, 0.0625rem) solid #aaa;
  border-radius: 50%;
  width: 1.25rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 0.625rem;
  transform: translateY(-50%);
}

/* .search__form .search__form-wrap:has(input[type="radio"]:checked) label:has(input[type="radio"])::before {
  border: max(1px, 0.0625rem) solid #D6C5B1;
} */

.search__form .search__form-group--age label:has(input[type="radio"])::before {
  left: 0.5rem;
}

.search__form label:has(input[type="radio"])::after {
  content: "";
  display: inline-block;
  background: var(--Sub);
  border-radius: 50%;
  width: 0.625rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
}

.search__form label:has(input[type="radio"]:checked)::after {
  opacity: 1;
}

.search__form label:has(input[type="checkbox"])::before {
  content: "";
  display: inline-block;
  background: #fff;
  border: 1px solid #aaa;
  width: 1.25rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 0.625rem;
  transform: translateY(-50%);
}

.search__form label:has(input[type="checkbox"])::after {
  content: "";
  display: inline-block;
  border-bottom: 0.1875rem solid var(--Sub);
  border-left: 0.1875rem solid var(--Sub);
  width: 0.8125rem;
  height: 0.5rem;
  position: absolute;
  top: 45%;
  left: 1.25rem;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  opacity: 0;
}

.search__form label:has(input[type="checkbox"]:checked)::after {
  opacity: 1;
}

.search__form-group--stage label:has(input[type="radio"])::before,
.search__form-group--stage label:has(input[type="radio"])::after {
  display: none;
}

.search__form-group--stage label:has(input[type="radio"]) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.75rem;
}

.search__form-stageImg {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2.5rem;
  aspect-ratio: 40 / 41;
}

.search__form-stageImg01 {
  background-image: url(../img/search_stage_icon_01.png);
}

.search__form-stageImg02 {
  background-image: url(../img/search_stage_icon_02.png);
}

.search__form-stageImg03 {
  background-image: url(../img/search_stage_icon_03.png);
}

.search__form-stageImg04 {
  background-image: url(../img/search_stage_icon_04.png);
}

.search__form-group--instrument label img {
  width: 40px;
  aspect-ratio: 1;
}

.search__form input[type="radio"],
.search__form input[type="checkbox"] {
  display: none;
}

.search__form-btns {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  margin-top: 1.5em;
}

.search__form-resetBtn {
  font-family: var(--Font_normal);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  color: var(--Text);
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: none;
  outline: max(1px, 0.0625rem) solid #bbb;
  outline-offset: max(-1px, -0.0625rem);
  border-radius: 0.25rem;
  width: 100%;
  height: 3.5rem;
  cursor: pointer;
}

.search__form-submitBtn {
  font-family: var(--Font_normal);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Sub);
  border: none;
  border-radius: 0.25rem;
  width: 100%;
  height: 3.5rem;
  position: relative;
  cursor: pointer;
}

.search__form-submitBtn:disabled {
  opacity: 0.4;
}

.search__form-errorTxt {
  font-weight: 700;
  font-size: 12px;
  color: var(--Accent);
  display: none;
  width: 196px;
  margin-top: 8px;
  margin-left: auto;
}


/* ==========================================================================
検索結果ページ
=========================================================================== */
.search-result .header {
  height: 3.3125rem;
}

.search-result__conditions-inner {
  padding: 0 1rem;
}

.search-result__conditions-box {
  border: max(1px, 0.0625rem) solid #bbb;
  padding: 1.25rem 1.5rem 0.5rem;
  margin-top: 1.5rem;
}

.search-result__conditions-box-ttl {
  font-weight: 900;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Main);
  width: 10rem;
  height: 2.25rem;
  margin: 0 auto;
}

.search-result__conditions-box-list {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
}

.search-result__conditions-box-list dt {
  font-weight: 900;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  border-bottom: max(1px, 0.0625rem) solid #bbb;
  padding: 0.75rem 0;
}

.search-result__conditions-box-list dt::before {
  content: "";
  display: inline-block;
  background-image: url(../img/checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.25rem;
  aspect-ratio: 1;
}

.search-result__conditions-box-list dd {
  font-size: 0.75rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  border-bottom: max(1px, 0.0625rem) solid #bbb;
  padding: 0.75rem 0;
}

.search-result__conditions-box-list dd .search__form-stageImg {
  width: 2rem;
}

.search-result__conditions-box-list dt:last-of-type,
.search-result__conditions-box-list dd:last-of-type {
  border-bottom: none;
}

.search-result__content {
  margin-top: 1.5rem;
}

.search-result__txt {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 1rem;
  padding-left: 1.25rem;
}

.search-result__txt-count {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
}

.search-result__scrollTable {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  padding-bottom: 0.5rem;
}

.search-result__table {
  width: 45.5rem;
  position: relative;
}

.search-result__table::after {
	content: "";
	position: absolute;
	top: 0;
	left: 100%;
	width: 1.25rem;
	height: 0.0625rem;
}

.search-result__table tr:first-child td {
  border-top: none;
}

.search-result__table tr[data-rank="1"] td {
  background: var(--Back_yellow);
}

.search-result__table th {
  padding: 0.625rem 0.5rem;
}

.search-result__table th.search-result__table-sort {
  text-align: left;
  position: relative;
}

.sortBtn {
  background: url(../img/sort.svg) no-repeat center / 0.6875rem auto,
              var(--Main);
  border: none;
  border-radius: 0.125rem;
  width: 1.25rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  cursor: pointer;
}

.search-result__table td {
  padding: 0.5rem;
}

.search-result__table td small {
  display: inline-block;
  margin-top: 0.25rem;
}

.search-result__table .search-result__table-link-logo {
  width: 3.5rem;
}

.search-result__table-link-txt {
  font-size: 0.75rem;
  line-height: 1.3;
  display: inline-block;
  margin-top: 0.375rem;
}

.search-result__table-eval {
  gap: 0.25rem;
}

.search-result__table-txtLink {
  text-align: left;
  display: inline-block;
  width: 4.5rem;
}

.search-result__reSearch {
  padding-top: 2.5rem;
  margin-top: 2rem;
}

.search-result__reSearch-ttl::before {
  background-image: url(../img/search_white.svg);
}


/* ==========================================================================
コラム
=========================================================================== */
.breadcrumbs {
  font-size: 0.75rem;
  padding: 1.125rem 0;
}

.breadcrumbs__inner {
  overflow-x: auto;
  padding: 0 1.125rem;
}

.breadcrumbs__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.breadcrumbs__list li:nth-of-type(n+2)::before {
  content: ">";
  display: inline-block;
  margin: 0 0.25rem;
}

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

.breadcrumbs a img {
  width: 0.9375rem;
}

.page {
  min-height: calc(100vh - 4.875rem - 5.5rem);
}


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

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

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

.column h1 {
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--Main);
  border-top: 0.125rem solid var(--Main);
  border-bottom: 0.125rem solid var(--Main);
  padding: 0.75rem 0;
  margin-top: 1rem;
}

.column h2 {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--Sub);
  border-left: 0.25rem solid var(--Sub);
  padding: 0 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: 2rem;
}

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

.column .table thead th,
.column .table tbody th,
.column .table td {
  font-size: 0.75rem;
  line-height: 1.5;
  border-top: 1px solid #C4C4C4;
  border-left: 1px solid #C4C4C4;
  padding: 8px;
}

.column .table th:last-child,
.column .table td:last-child {
  border-right: 1px solid #C4C4C4;
}

.column .table tr:last-of-type th,
.column .table tr:last-of-type td {
  border-bottom: 1px solid #C4C4C4;
}

.column .table th {
  font-weight: 700;
  text-align: center;
  color: var(--Text);
  background: #eee;
}

.column .table thead th {
  border-bottom: none!important;
}

.column .table td {
  text-align: left;
}

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

.column .bnr {
  display: block;
  margin-top: 1rem;
}

.column .ol {
  counter-reset: number 0;
}

.column .ol__item-head {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  text-align: justify;
  color: var(--Main);
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  padding: 0.25rem 0 0.25rem 2.25rem;
  margin-top: 1rem;
  position: relative;
}

.column .ol__item-head::before {
  counter-increment: number 1;
  content: counter(number);
  font-size: 1.125rem;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--Main);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 50%;
  width: 1.75rem;
  aspect-ratio: 1;
  position: absolute;
  top: 0.2em;
  left: 0;
}

.ol__item-content {
  margin-top: 0.5rem;
}

.column .btn {
  margin-top: 1.5rem;
}


/* ==========================================================================
フッター
=========================================================================== */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #222;
  padding: 1.5rem 0 0.75rem;
  margin-top: 5rem;
}

.footer__ttl {
  font-weight: 700;
  font-size: 0.8125rem;
  color: #fff;
}

.footer__columnLinks {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer__columnLinks a {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 0.9375rem;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
}

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

.footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.25rem;
  margin-top: 2rem;
}

.footer__links a {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 0.9375rem;
  text-decoration: none;
  color: #fff;
}

.footer__copyright {
  text-align: center;
}

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