@charset "UTF-8";
/* ==========================================================================
  ベース設定
  =========================================================================== */
:root {
  /* カラー */
  --Text: #383838;
  --Text_blue: #1a0dab;
  --Main: #f05529;
  --Sub: #00a3b5;
  --Accent: #;
  --Back: #edf2f9;
  --gray: #707f89;
  /* 文字サイズ */
  --FontSizePC: 16px;
  /* 1010px(inner+padding*2) 〜 max-screen */
  --FontSizeTab: 1.5841584158vw;
}

@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;
}
html {
  font-size: var(--FontSizePC);
  font-family: "Noto Sans JP";
  color: var(--Text);
}

@media (max-width: 1010px) {
  html {
    font-size: var(--FontSizeTab);
  }
}
body {
  font-feature-settings: "palt";
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.forPC {
  display: block;
}

.forPC-inline {
  display: inline-block;
}

.forSP {
  display: none;
}

/* ==========================================================================
  共通パーツ
  =========================================================================== */
/* デザイン幅 */
.wrapper {
  max-width: 74.375rem;
  width: 100%;
  margin: 0 auto;
}

/* インナー幅 */
.inner {
  width: 100%;
  max-width: 1010px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

/* 各セクション */
.section {
}

.section__ttl {
  margin: 0 auto;
}

/* セクションタイトル長さ指定 */
.section__ttl--1 {
}

.section__ttl--2 {
}

.section__ttl--3 {
}

.section__ttl--4 {
}

.section__ttl--5 {
}

.section__ttl--result {
}

/* テキスト */
.txt-sm {
  font-size: 0.625rem;
  line-height: 1.5;
}

.txt-md {
  font-size: 0.875rem;
  line-height: 1.14286;
}

.txt-lg {
  font-size: 1rem;
  line-height: 1.75;
}

.txt-Main {
  color: var(--Main);
}

/* テキストリンク */
.txt-link {
  color: var(--Text_blue);
  text-decoration: underline;
  font-weight: bold;
  transition: 0.3s;
}

.txt-link:hover {
  opacity: 0.6;
}

/* テキストリンク矢印付き */
.txt-link--arrow {
  padding-right: 1.0625rem;
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  line-height: 1.5;
}

.txt-link--arrow::after {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-top: 2px solid #1a0dab;
  border-right: 2px solid #1a0dab;
  transform: rotate(45deg) translateY(-100%);
  margin-left: 0.3125rem;
}

/* 詳細ボタン（小さめ） */
.btn-detail {
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  display: inline-block;
  width: 6.25rem;
  text-align: center;
  border-radius: 0.25rem;
  font-weight: bold;
  transition: 0.3s;
  position: relative;
  box-shadow: inset 0 -0.2rem 0 #d9d9d9;
  border: 1px solid #000000;
}

.btn-detail::before {
  top: calc(50% - 0.1875rem);
  transform: rotate(45deg);
}

.btn-detail::after {
  bottom: calc(50% - 0.1875rem);
  transform: rotate(-45deg);
}

.btn-detail:hover {
  opacity: 0.6;
}

.btn-detail--sm {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  padding: 0.3125rem 0 0.5rem;
}

/* 公式リンクボタン（小さめ） */
.btn-sub {
  background-color: var(--Sub);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  width: 8.75rem;
  text-align: center;
  border-radius: 0.25rem;
  font-weight: bold;
  transition: 0.3s;
  position: relative;
  /* box-shadow: 0 0.2rem 0 #B74B5C; */
}

.btn-sub::before {
  top: calc(50% - 0.1875rem);
  transform: rotate(45deg);
}

.btn-sub::after {
  bottom: calc(50% - 0.1875rem);
  transform: rotate(-45deg);
}

.btn-sub:hover {
  opacity: 0.6;
}

.btn-sub--sm {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  padding: 0.3125rem 0 0.5rem;
}

.btn-sub--right {
  width: 6.55rem;
}

.table-result .btn-sub {
  width: 8.75rem;
  max-width: 100%;
}

/* ボタン大 */
.btn-main {
  background-color: var(--Sub);
  font-size: 1.5rem;
  padding: 1.125rem 1.875rem;
  color: #fff;
  border: none;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
  text-align: center;
  border-radius: 0.25rem;
  position: relative;
}

.btn-main:hover {
  opacity: 0.6;
  cursor: pointer;
}

.btn-main--arrow {
  box-shadow: 0 0.375rem 0 #21595f;
}

.btn-main--arrow::before {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: rotate(45deg) translateY(-50%);
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

/* フッター */
.footer__links-wrapper {
  padding: 2.5rem 0 1.25rem;
}

.footer__links-inner {
  display: grid;
  grid-template-columns: 33.3% 33.3% 33.3%;
  grid-template-rows: 1fr;
  justify-items: left;
  max-width: 1190px;
  padding: 0;
}

.footer__links-inner dl:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.footer__links-inner dl:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.footer__links-inner dl:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.footer__links-inner dl {
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 24px;
}

.footer__links-inner dt {
  font-weight: bold;
  line-height: 1.5;
  border: 1px solid var(--Text);
  border-radius: 4px;
  width: 185px;
  padding: 8px 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.footer__links-inner dt:hover {
  opacity: 0.6;
}

.footer__links-inner dt::after {
  content: "";
  position: absolute;
  top: 36%;
  right: 0.8em;
  width: 7px;
  height: 7px;
  border-top: 2px solid #d27f89;
  border-right: 2px solid #d27f89;
  transform: rotate(135deg);
}
.footer__links-inner dt.close::after {
  top: 46%;
  transform: rotate(-45deg);
}

.footer__links-inner dd {
  margin-top: 1.25rem;
}

.footer__links-inner dd ul {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  row-gap: 0.3125rem;
  column-gap: 1.875rem;
}

.footer__links-inner dd ul li {
  line-height: 1.5;
  list-style: none;
  padding-left: 1.0625rem;
  position: relative;
}

.footer__links-inner dl:nth-child(2):last-child dd ul li {
  white-space: nowrap;
}

.footer__links-inner dd ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--Main);
  border-right: 2px solid var(--Main);
  transform: rotate(45deg);
}

.footer__links-inner dd ul li a {
  text-decoration: none;
  color: var(--Text);
  transition: all 0.3s;
}

.footer__links-inner dd ul li a:hover {
  opacity: 0.6;
}

.footer__info-links {
  margin-top: 2.5rem;
  text-align: center;
}

.footer__info-links a {
  color: var(--Text);
  text-decoration: none;
  transition: 0.3s;
}

.footer__info-links a:hover {
  opacity: 0.6;
}

.footer__copy {
  background-color: var(--Text);
  padding: 0.6875rem 0;
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
}

/* アコーディオン */
.aco-cont {
  display: none;
}

/* テーブル本体 */
.table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

/* テーブルヘッド */
.table th {
  background-color: #e06976;
  color: #fff;
  height: 2.5rem;
  font-size: 0.88rem;
  line-height: 1;
  border: 1px solid #fff;
  font-weight: initial;
  font-size: 10px;
  line-height: 1.5;
}

/* 比較テーブルのセル幅・高さ指定 */
.table--1 tr:nth-child(1) th:nth-child(1),
.table--1 tr:nth-child(1) th:last-child {
  width: 16.25%;
}
.table--1 tr:nth-child(2) th:nth-child(1),
.table--1 tr:nth-child(2) th:nth-child(2),
.table--1 tr:nth-child(2) th:nth-child(3) {
  width: 10.20833333%;
}
.table--1 tr:nth-child(2) th:nth-child(4),
.table--1 tr:nth-child(2) th:nth-child(5) {
  width: 9.166666667%;
}
.table--1 tr:nth-child(1) th:nth-child(4) {
  width: 12%;
}
.table--1 tr:nth-child(1) th:nth-child(5) {
  width: 12%;
}
.table--1 tr:nth-child(1) th:nth-child(6) {
  width: 12%;
}
.table--1 tr:nth-child(1) th:nth-child(7) {
  width: 12%;
}
.table--1 td {
  min-height: 7.5rem;
}
/* .table--1 tr:nth-child(7) td:nth-child(2) p,
.table--1 tr:nth-child(7) td:nth-child(3) p,
.table--1 tr:nth-child(7) td:nth-child(8) p {
  margin-top: 0.988rem;
} */
.table--1 tr:nth-child(1) th:nth-child(2),
.table--1 tr:nth-child(1) th:nth-child(3) {
  height: 1.75rem;
  width: 12%;
}

/* テーブルセル */
.table--1 tr:nth-child(2n) {
  background-color: #fff;
}

.table-result tr:nth-child(2n + 1) {
}

.table td {
  padding: 0.88rem 0.5rem 0.88rem;
  border-bottom: 1px solid var(--Text);
  position: relative;
}

.comparison__table .table td {
  vertical-align: top;
  padding: 1.1rem 0.5rem 0.48rem;
}

.comparison__table .table tr > td:last-child {
  padding: 0.48rem 0.5rem;
  vertical-align: middle;
}

/* .comparison__table .table tr:nth-of-type(-n+5) td {
  padding: 0.88rem 0.5rem 0.88rem;
  vertical-align: baseline;
} */

.table td:not(:last-child) {
  border-right: 1px solid var(--Text);
}

.table--toppage td:first-child {
  padding: 2.2rem 0.5rem 0.75rem;
}

.table td p:not(:first-child) {
  margin-top: 2px;
}

/* 検索結果テーブルのセル幅・高さ指定 */
.table-result th:nth-child(1) {
  /* width: 27.0833333333%; */
}

.table-result th:nth-child(2),
.table-result th:nth-child(5) {
  /* width: 20.8333333333%; */
}

.table-result th:nth-child(3),
.table-result th:nth-child(4) {
  /* width: 15.625%; */
}

.table-result td {
  min-height: 7.5rem;
  padding: 1.25rem;
}

/* テキスト中央寄せのセル */
.table__txt-center {
  text-align: center;
}

/* テキスト上寄せのセル */
.table__txt-top {
  vertical-align: top;
}

/* テキスト天地中央寄せのセル */
.table__txt-mid {
  vertical-align: middle;
}
.comparison__table .table td.table__txt-mid {
  font-size: 0.875rem;
  vertical-align: middle;
  padding: 0.48rem 0.5rem;
}

/* テーブルのソートボタン */
.table__sortBtn {
  width: 37px;
  height: 16px;
  background: none;
  background-size: 37px 16px;
  background-image: url("../img/cm_sort_ico.png");
  border: none;
  text-indent: -9999px;
  margin-top: 2px;
}

.table__sortBtn:hover {
  opacity: 0.6;
  cursor: pointer;
}

/* テーブルロゴ */
.table__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 26px;
}

.table__logo.table__logo--no-rank a {
  display: inline-block;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.table__logo a {
  transition: 0.3s;
}

.table__logo a:hover {
  opacity: 0.6;
}

/* テーブルの中のボタン */
.table__btn {
  /* margin-top: 0.225rem; */
  text-align: center;
}
.table__btn .btn-sub {
  box-shadow: 0 0.2rem 0 #21595f;
}
/* ランキング表記 */
.table__rank {
  position: absolute;
  top: 0.25rem;
  left: 0;
  z-index: 1;
  font-weight: bold;
}

/* ランキング表記　TOP1,2,3位 共通スタイル */
.table__rank--top {
  width: 3.75rem;
  height: 1.75rem;
  position: absolute;
  z-index: 1;
}

.table__rank--top > span {
  position: relative;
  width: 4.2rem;
  height: 1.3rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #fff;
}

.table__rank--top > span > span {
  font-size: 0.56rem;
  padding-bottom: 0.125rem;
  display: inline-block;
}

.table__rank--top > span::before {
  position: absolute;
  content: "";
  top: -10.5px;
  left: 0;
  width: 4.5rem;
  height: 2.25rem;
  -webkit-clip-path: polygon(100% 0, 85% 49%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 85% 49%, 100% 100%, 0 100%, 0 0);
  z-index: -1;
}

/* ランキング表記　1,2,3位 色指定 */
.table__rank--1 > span::before {
}
.table__rank--1,
.table__rank--2,
.table__rank--3 {
  background-image: url(../img/rank01.png);
  background-repeat: no-repeat;
  width: 48px;
  height: 24px;
  background-size: cover;
  top: 0;
}
.table__rank--2 {
  background-image: url(../img/rank02.png);
}

.table__rank--3 {
  background-image: url(../img/rank03.png);
}

/* ランキング表記 4位以下 */
.table__rank--normal {
  width: 3rem;
  height: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--Text);
  border-right: 1px solid var(--Text);
  border-bottom: 1px solid var(--Text);
  border-radius: 0 20px 20px 0;
  background-color: #fff;
}

.table__rank--normal > span {
  font-size: 0.69rem;
}

.table__rank--normal > span > span {
  font-size: 0.56rem;
}

/* PR枠 */
.table__rank--pr {
  font-size: 10px;
  width: 6.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-top: 1px solid var(--Text);
  border-right: 1px solid var(--Text);
  border-bottom: 1px solid var(--Text);
  background-color: #fff;
}

/* アイコン二重丸・丸・三角・バツ */
.table__icon {
  width: 1.8rem;
  display: inline-block;
}

/* テーブルのaタグのホバー */
.table a {
  display: inline-block;
  transition: 0.3s;
}

.table a:hover {
  opacity: 0.6;
}

/* 吹き出しつきボックス */
.balloon-box {
  border-radius: 0.5rem;
  border: 2px solid #858585;
  padding: 3.75rem 0 0;
  position: relative;
  background-color: #fff;
}

/* 吹き出し */
.balloon-box__ttl {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #e06976;
  height: 50px;
  line-height: 48px;
  color: #fff;
  letter-spacing: 0.09em;
  position: relative;
  border-radius: 6px 6px 0 0;
}
.balloon-box__ttl .corner {
  position: absolute;
  right: 0;
  font-size: 12px;
  background-color: #b4414e;
  padding: 0 10px;
  border-radius: 0 6px 0 0;
  height: 100%;
}
.balloon-box__ttl > span {
  display: inline-block;
  position: relative;
  font-size: 14px;
  text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000,
    -1px -1px 0 #000;
}

.balloon-box__ttl > span::before,
.balloon-box__ttl > span::after {
}

.balloon-box__ttl > span::before {
  left: 0.625rem;
  transform: translate(-100%, -50%);
}

.balloon-box__ttl > span::after {
  right: 0.625rem;
  transform: translate(100%, -50%);
}

.balloon-box__ttl > span > span {
  display: inline-block;
  border-radius: 2.5rem;
  font-size: 1.25rem;
  position: relative;
  z-index: 2;

  font-size: 18px;
}

.balloon-box__txt {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 38px;
  padding-bottom: 25px;
}

.balloon-box__txt .check-list li {
  border-radius: 100px;
  border: 2px solid #e06976;
  text-align: center;
  padding: 10px 0;
  justify-content: center;
  font-size: 16px;
}
.balloon-box__txt .check-list + p {
  margin-top: 10px;
}

.balloon-box__txt p {
  font-size: 1rem;
  line-height: 1.5;
}

.balloon-box__txt p + p {
  margin-top: 1rem;
}

/* チェックマークのリスト */
.check-list {
  padding: 0;
  margin-bottom: 0;
}

.check-list li {
  display: flex;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
}
.check-list.no01 {
  position: relative;
}
.check-list.no01 li::before,
.check-list.no02 li::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../img/icon_number01.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: -5px;
  top: 49%;
  transform: translateY(-50%);
}
.check-list.no02 li::before {
  background-image: url(../img/icon_number02.svg);
}
.check-list li:nth-child(n + 2) {
  margin-top: 1.25rem;
}

.check-list li p {
  margin: 0;
  flex: 1;
}

/* フォーム */
.form dl:nth-child(n + 2) {
  margin-top: 2.5rem;
}

.form__grid {
  margin-top: 0.9375rem;
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 0.9375rem;
  column-gap: 1.875rem;
}

.form__grid.form__grid--2col {
  grid-template-columns: 1fr 1fr;
}

.form__grid.form__grid--3col {
  grid-template-columns: 1fr 1fr 1fr;
}

.form label {
  padding: 0 0.9375rem;
  border-radius: 0.3125rem;
  transition: 0.3s;
  height: 3.75rem;
  background-color: #fff;
  border: 1px solid var(--Text);
  font-weight: bold;
  box-shadow: 0 -3px 0 #00000029 inset;
}

.form label:hover {
  cursor: pointer;
}

.form input {
  opacity: 0;
  position: absolute;
}
form dt {
  line-height: 58px;
  height: 40px;
  padding-left: 16px;
  color: #fff;
  text-shadow: 1px 1px 0 #a44651, -1px 1px 0 #a44651, 1px -1px 0 #a44651,
    -1px -1px 0 #a44651;
  position: relative;
  background-color: #e06976;
  display: flex;
  align-items: center;
}
form dt::after {
}
form dt .num {
  font-size: 28px;
  margin-right: 20px;
  position: relative;
  top: -1px;
}
form dt .color {
  font-size: 18px;
}
/* チェック時のスタイル */
.form input:checked + label {
  background-color: #f8dde0;
  color: #000;
  border: 1px solid #e06976;
  box-shadow: 0 -3px 0 #d27f8999 inset;
}

.form input:checked + .form__radio-label::after {
  background-color: #d27f89;
  color: #000;
}

/* radioのスタイル */
.form__radio-label {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1.25;
}

.form__radio-label::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  border: 2px solid #858585;
  border-radius: 50%;
  margin-right: 0.625rem;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.form__radio-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.5625rem;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #d9d9d9;
  border-radius: 50%;
  transition: 0.3s;
}

/* checkbox2のスタイル（チェックマーク） */
.form__checkbox-label2 {
  display: flex;
  align-items: center;
  line-height: 1.25;
}

.form__checkbox-label2::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.625rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
  background-image: url(../img/cm_icon_checkbox.svg);
}

.form input:checked + .form__checkbox-label2::before {
  background-image: url(../img/cm_icon_checkbox_checked.svg);
}

/* checkboxのスタイル（アイコンあり） */
.form__checkbox-label {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.25;
  position: relative;
}

.form__checkbox-label::before {
  content: "";
  display: inline-block;
  width: 2.375rem;
  height: 2.375rem;
  margin-right: 0.9375rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

/* こだわり条件のアイコン */
.form__checkbox-label--0yen::before {
  background-image: url(../img/cm_icon_0yen.svg);
}

/* .form input:checked + .form__checkbox-label--0yen::before {
  background-image: url(../img/cm_icon_0yen_white.svg);
} */

.form__checkbox-label--10000yen::before {
  background-image: url(../img/cm_icon_clock.svg);
}

/* .form input:checked + .form__checkbox-label--10000yen::before {
  background-image: url(../img/cm_icon_clock_white.svg);
} */

.form__checkbox-label--clock::before {
  background-image: url(../img/cm_icon_10000yen.svg);
}

/* .form input:checked + .form__checkbox-label--clock::before {
  background-image: url(../img/cm_icon_10000yen_white.svg);
} */

.form__checkbox-label--coin::before {
  background-image: url(../img/cm_icon_touch.svg);
}

/* .form input:checked + .form__checkbox-label--coin::before {
  background-image: url(../img/cm_icon_touch_white.svg);
} */

.form__checkbox-label--touch::before {
  background-image: url(../img/cm_icon_24h.svg);
}

/* .form input:checked + .form__checkbox-label--touch::before {
  background-image: url(../img/cm_icon_24h_white.svg);
} */

.form__checkbox-label--24h::before {
  background-image: url(../img/cm_icon_coin.svg);
}

/* .form input:checked + .form__checkbox-label--24h::before {
  background-image: url(../img/cm_icon_coin_white.svg);
} */

/* ボタン */
.form__btns {
  position: relative;
  text-align: center;
  margin-top: 3.75rem;
}

.form__clear-btn {
  border-radius: 0.3125rem;
  border: 1px solid var(--Text);
  transition: 0.3s;
  color: var(--Text);
}

.form__clear-btn {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #fff;
  padding: 0.875rem 1.875rem;
}

.form__clear-btn:hover {
  opacity: 0.6;
  cursor: pointer;
}

.form__submit-btn {
  width: 600px;
  max-width: 100%;
  background-color: var(--Sub);
  font-size: 1.5rem;
  padding: 0.725rem 1.875rem;
  color: #fff;
  border: none;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
  text-align: center;
  border-radius: 0.25rem;
  position: relative;
  box-shadow: 0 0.375rem 0 #21595f;
}

.form__submit-btn:hover {
  opacity: 0.6;
  cursor: pointer;
}

/* ==========================================================================
  header / ヘッダー
  =========================================================================== */
.header {
  background-color: #efefef;
}
.header h1 {
  margin: 0 auto;
}

.header img {
  width: 100%;
}

/* ==========================================================================
  comparison / 5社を徹底比較
  =========================================================================== */
.comparison {
  position: relative;
  padding-bottom: 30px;
}

/* セクション背景 */

/* .comparison__table {
  margin-top: 2.5rem;
} */

/* ==========================================================================
  recommend / 当サイト人気No1は？のセクション
  =========================================================================== */
/* セクション背景 */
.recommend {
  position: relative;
  /* margin-top: -0.5rem; */
  padding-bottom: 0.8125rem;
  padding-bottom: 45px;
  background-image: url(../img/cm_bg.png.webp);
  background-size: cover;
}

.recommend::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url(../img/ct_bg_orange.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(-90deg);
  z-index: 2;
}

.recommend::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url(../img/ct_bg_orange.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* おすすめセクションタイトル */
.recommend__ttl-wrap {
  /* background-color: #FCA138; */
  position: relative;
}

/* .recommend__ttl-wrap::before {
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.25rem 1.25rem 0 1.25rem;
  border-color: #FCA138 transparent transparent transparent;
} */

.recommend__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 1.875rem;
}

.recommend__caution {
  font-size: 0.625rem;
  margin-top: 1.25rem;
}

/* おすすめセクション カード */
.card {
  border: 0.0625rem solid var(--Text);
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 0.625rem 0.625rem rgba(56, 56, 56, 0.15);
  border-radius: 0 0 4px 4px;
}

.card__flex-wrap3 {
  display: contents;
}

.card__flex-wrap2 {
  display: flex;
  flex-direction: column;
}

.card__ttl-wrap {
  order: 1;
  text-align: center;
}

.card__bnr {
  order: 2;
  min-height: 12.395625rem;
}

.card__access-wrap {
  order: 3;
}

.card__ttl-wrap.card__ttl-wrap--rank1 {
}

.card__rank {
  display: inline-block;
  width: 5rem;
}
.recommend__cards .card__logo {
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}

.card__rank.card__rank--rank1 {
  width: 6.4rem;
}

.card__logo {
  display: inline-block;
  width: 9.6875rem;
}

.card__ttl-wrap--rank1 .card__logo {
  width: 12.5rem;
}

.card__logo a {
  transition: 0.3s;
  display: inline-block;
}

.card__logo a:hover {
  opacity: 0.6;
}

.card__bnr {
  margin-top: 10px;
}

.card--rank1 .card__bnr {
}

.card__bnr a {
  transition: 0.3s;
  display: inline-block;
}

.card__bnr a:hover {
  opacity: 0.6;
}

.card__access-wrap {
  margin-top: 0.9375rem;
  text-align: center;
}

.card__access-wrap.card__access-wrap--rank1 {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.card__fukidashi {
  width: 4.625rem;
}

.card__access {
  font-size: 0.75rem;
  font-weight: bold;
  flex: 1;
}

.card__access p {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  text-align: left;
  min-height: 29px;
}
.card__btn {
  margin-top: 8px;
  width: 100%;
}
.card__btn a {
  width: 100%;
  box-shadow: 0 0.2rem 0 #21595f;
}
.card__access p span {
  font-size: 0.625rem;
}

.card__access > span {
  display: inline-block;
  padding: 0 0.625rem;
  font-size: 0.9rem;
  color: var(--Main);
  background: linear-gradient(transparent 60%, #fee8e8 60%, #fee8e8 100%);
}

.card__access > span span {
  font-size: 0.75rem;
}

/* ==========================================================================
  point / ネット証券の口座開設ポイント
  =========================================================================== */
/* セクション背景 */
.point {
  position: relative;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  background-image: url(../img/cm_bg_plaid.jpg);
  background-size: cover;
}

.point::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url(../img/ct_bg_orange.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(-90deg);
}

.point::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url(../img/ct_bg_orange.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.point__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 1.875rem;
  margin-top: 2.5rem;
}

/* ポイントセクション カード */
.point-card {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--Text);
}

.point-card__ttl-wrap {
  display: flex;
  background-color: var(--Text);
  color: #fff;
  padding: 0.9375rem 1.25rem;
  align-items: center;
}

.point-card__ttl-img {
  width: 3.125rem;
  margin-right: 0.9375rem;
}

.point-card__ttl {
  flex: 1;
  font-size: 1.25rem;
}

.point-card__body {
  padding: 1.875rem 1.875rem 1.25rem;
}

.point-card__txt {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  margin-top: 1.25rem;
}

.point-card__txt strong {
  display: inline-block;
  font-size: 1.25rem;
  color: var(--Main);
  position: relative;
}

.point-card__txt .fz-lg {
  font-size: 1.5rem;
}

.point-card__txt strong::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.1875rem;
  bottom: 0.0625rem;
  left: 0;
  background-color: var(--Main);
}

.point-card__txt span {
  font-size: 1.875rem;
  line-height: 1;
}

.point-card__caution {
  font-size: 0.625rem;
  margin-top: 0.625rem;
}

/* ==========================================================================
  search / 検索のセクション
  =========================================================================== */
/* セクション背景 */
.search {
  position: relative;
}

.search__form {
  margin-top: 20px;
}

/* ==========================================================================
  ranking / おすすめランキングBEST3のセクション
  =========================================================================== */
/* セクション背景 */
.ranking {
  position: relative;
}

.ranking__ttl-wrapper {
  background-color: var(--Main);
  padding: 2.5rem 0;
  position: relative;
}

.ranking__ttl-wrapper::before {
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.25rem 1.25rem 0 1.25rem;
  border-color: var(--Main) transparent transparent transparent;
}

.ranking__companies {
}
.ranking__No1 {
  position: relative;
}
.ranking__No1 .balloon-box__ttl {
  position: absolute;
  left: -20px;
  width: 90px;
  top: -20px;
  background: #fff;
  padding: 0 10px;
}
.ranking__No1 .balloon-box__ttl > span {
  color: #000;
}

/* おすすめNo1のボックス */
.No1-box {
  margin-top: 40px;
}

.No1-box .company-info__box {
  max-width: 880px;
  width: 100%;
  margin: 20px auto 0;
}

.No1-box__ttl {
  margin-left: auto;
  margin-right: auto;
}

.No1-box .company-info__ttl-wrap {
  margin-top: 2.75rem;
}

.No1-box .company-info__rank {
  background-color: var(--Main);
  width: 14.0625rem;
}

.No1-box .company-info__rank img {
  width: 10.3125rem;
}

/* 会社情報群 */
.company-list__item:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .company-list__item .inner {
    max-width: 960px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }
}
.company-list__item .table__ttl {
  text-align: center;
  background-color: #e06976;
  border-radius: 5px;
  color: #fff;
  justify-content: center;
  padding: 4px 0;
  display: flex;
  font-size: 14px;
}
.company-list__item .table__ttl:first-of-type {
  margin-top: 25px;
}
/* 会社情報 */
.company-info__ttl-wrap {
  display: flex;

  min-height: 6.25rem;
}

.company-info__rank {
  width: 7.5rem;
  display: grid;
  place-items: center;
  background-color: #fff;
}

.company-info__rank img {
  width: 3.5625rem;
}

.company-info__ttl {
  flex: 1;
  padding: 0 1.875rem;
  display: flex;
  align-items: center;
}

.company-info__ttl h3 {
  font-size: 1.875rem;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.company-info__ttl h3 a {
  color: var(--Text);
  transition: 0.3s;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
}

.company-info__ttl h3 a::after {
  display: inline-block;
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-top: 0.1875rem solid var(--Text);
  border-right: 0.1875rem solid var(--Text);
  transform: rotate(45deg);
  margin-left: 0.625rem;
}

.company-info__ttl h3 a:hover {
  opacity: 0.6;
}

.company-info__check-list {
  margin-top: 0;
}

.company-info__txt-link {
  margin-top: 1.25rem;
  margin-bottom: 0;
  text-align: right;
}

.company-info__table2 {
  margin-top: 2.5rem;
}

.company-info__table3 {
  margin-top: 2.5rem;
}

/* バナー */
.company-info__bnr {
  display: block;
  text-decoration: none;
  transition: 0.3s;
}

.company-info__bnr:hover {
  opacity: 0.6;
  cursor: pointer;
}

.company-info__bnr-body {
  margin-top: -2px;
  background-color: var(--Back);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.875rem;
}

.company-info__bnr-body p {
  margin: 0;
  color: var(--Text);
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 1.875rem;
  line-height: 1.4583333333;
}

.company-info__bnr-btn > span {
  width: 18.75rem;
  background-color: var(--Sub);
  font-size: 1.25rem;
  padding: 1.25rem 1.875rem;
  border: 1px solid var(--Text);
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
  text-align: center;
  border-radius: 0.25rem;
  position: relative;
  color: var(--Back);
}

.company-info__bnr-btn > span::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  display: inline-block;
  border-top: 0.1875rem solid #fff;
  border-right: 0.1875rem solid Q#fff;
  position: absolute;
  top: 49%;
  right: 1.5625rem;
  transform: rotate(45deg) translateY(-50%);
}

.company-info__box {
  padding-top: 0;
  margin-top: 25px;
}

.company-info__box p:first-of-type {
  margin-top: 0;
  font-size: 14px;
  margin-top: 10px;
}

.company-info__btn-wrap {
  margin-top: 2.5rem;
}
.ranking__No1 .company-info__btn-wrap {
  margin-top: 20px;
}
.company-info__campaign-box {
  position: relative;
  border: 2px solid var(--Text);
  border-radius: 0.5rem;
  margin-top: 4rem;
  padding: 3.75rem 2.5rem 3.125rem;
  background-color: #fee8e8;
}

.company-info__campaign-box p {
  text-align: center;
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
}

.company-info__campaign-box a {
  margin-top: 2.5rem;
  display: block;
  transition: 0.3s;
}

.company-info__campaign-box a:hover {
  opacity: 0.6;
}

.company-info__campaign-ttl {
  text-align: center;
  position: absolute;
  top: -1.6875rem;
  left: 0;
  width: 100%;
  z-index: 1;
}

.company-info__campaign-ttl > span {
  display: inline-flex;
  justify-content: center;
  width: 36.4375rem;
  height: 3.6875rem;
  background-image: url(../img/cm_ribbon_red.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
}

.company-info__campaign-ttl > span > span {
  padding-top: 0.5625rem;
  font-size: 1.25rem;
}

/* テーブル2 */
.table2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border: 2px solid var(--Text);
}

.table2__cel {
  display: flex;
  flex-direction: column;
}

.table2__cel p {
  flex: 1;
}

.table2__cel p:first-child {
  background-color: var(--Text);
  color: #fff;
  min-height: 2.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
}

.table2__cel p:last-child {
  min-height: 3.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}

.table2__cel p:last-child img {
  width: 1.25rem;
  margin: 0 auto;
}

.table2__cel:not(:nth-child(4n)) p:first-child {
  border-right: 1px solid #fff;
}

.table2__cel:not(:nth-child(4n)) p:last-child {
  border-right: 1px solid var(--Text);
}

.company-list__item:nth-child(1) .table2__cel:nth-child(2) p:last-child,
.company-list__item:nth-child(1) .table2__cel:nth-child(4) p:last-child,
.company-list__item:nth-child(1) .table2__cel:nth-child(5) p:last-child,
.ranking__No1 .table2__cel:nth-child(2) p:last-child,
.ranking__No1 .table2__cel:nth-child(4) p:last-child,
.ranking__No1 .table2__cel:nth-child(5) p:last-child {
  color: var(--Main);
}

.company-list__item:nth-child(3) .table2__cel:nth-child(2) p:last-child,
.company-list__item:nth-child(3) .table2__cel:nth-child(4) p:last-child,
.company-list__item:nth-child(3) .table2__cel:nth-child(5) p:last-child,
.company-list__item:nth-child(3) .table2__cel:nth-child(6) p:last-child {
  color: var(--Main);
}

.company-list__item:nth-child(5) .table2__cel:nth-child(5) p:last-child {
  color: var(--Main);
}

/* テーブル3 */
.table3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  border: 1px solid var(--Text);
}

.table3__title {
  grid-column: 1/6;
  background-color: var(--Text);
  color: #fff;
  min-height: 2.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
  border-bottom: 1px solid #fff;
}

.table3__cel {
  display: flex;
  flex-direction: column;
}

.table3__cel p {
  flex: 1;
}

.table3__cel p:first-child {
  background-color: #eeeeee;
  min-height: 2.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.table-grid-3 .table3__cel p:first-child {
  background-color: #eeeeee;
}

.table3__cel p:last-child {
  min-height: 2.4625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}

.table3__cel p:last-child img {
  width: 1.25rem;
  margin: 0 auto;
}

.table3__cel:not(:nth-child(6n)) p:first-child {
  border-right: 1px solid var(--Text);
}

.table3__cel:not(:nth-child(6n)) p:last-child {
  border-right: 1px solid var(--Text);
}

/* 吹き出し付きのCTAボタン */
.cta-btn {
  text-align: center;
}

.cta-btn a.btn-main {
  overflow: hidden;
  font-size: 18px;
}

.cta-btn a.btn-main::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.5) 100%,
    rgba(255, 255, 255, 0) 0%
  );
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

.cta-btn__message {
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  max-width: 40rem;
  line-height: 1.5;
}

.cta-btn__wrap {
  margin-top: 0.5rem;
}

.cta-btn__wrap a {
  min-width: 37.5rem;
  line-height: 1.5;
}

/* ==========================================================================
  検索結果ページ
  =========================================================================== */
/* セクション背景 */
.conditions {
  position: relative;
  background-image: url(../img/cm_bg.png);
  background-size: contain;
  padding: 0 0 1.875rem;
}

.conditions__box {
  margin-top: 4.0625rem;
}

.conditions__box.balloon-box {
  padding: 2.5rem 2.5rem 1.875rem;
}

.conditions__list dl {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  line-height: 1.5;
}

.conditions__list dl:nth-child(n + 2) {
  margin-top: 0.625rem;
}

.conditions__list dt {
  color: var(--Main);
  margin-right: 0.625rem;
}

.conditions__list dd {
  margin: 0;
  flex: 1;
}

/* 検索結果 */
.result {
  padding-top: 0.625rem;
  padding-bottom: 3.75rem;
}

.result__num {
  font-weight: bold;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.result__num span {
  font-size: 1.25rem;
}

.result__table {
  margin-top: 0.625rem;
}
.wrap__list {
  font-size: 12px;
  text-align: center;
}

/* 再検索 */
.re-search {
}

.re-search__title {
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0;
  background: repeating-linear-gradient(
      90deg,
      var(--Back),
      var(--Back) 1px,
      transparent 1px,
      transparent 32px
    ),
    repeating-linear-gradient(
      0deg,
      var(--Back),
      var(--Back) 1px,
      #d0d4d6 1px,
      #d0d4d6 32px
    );
  background-size: 12px 12px;
  background-position: 50% 50%;
}

.re-search__form {
  margin-top: 2.5rem;
}

/* トップに戻るボタン */
.top-btn {
  text-align: center;
  padding: 3.75rem 0;
}

.top-btn a {
  padding: 1.125rem 1.875rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border-radius: 0.5rem;
  font-weight: bold;
  border: 1px solid var(--Text);
  transition: 0.3s;
  color: var(--Text);
}

.top-btn a:hover {
  opacity: 0.6;
}

/* ==========================================================================
  クッションページ
  =========================================================================== */
.content {
  background-color: #fff7de;
  min-height: 100vh;
  padding: 36px 20px;
  box-sizing: border-box;
}

.content__head-ttl {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
}

.content__inner {
  max-width: 340px;
  margin-right: auto;
  margin-left: auto;
}

.content__loader {
  margin-top: 34px;
}

.content__main {
  margin-top: 40px;
}

.content__link {
  margin-top: 18px;
  text-align: center;
}

.content__link a {
  font-weight: bold;
  font-size: 14px;
  color: #1a0dab;
}

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

.loader,
.loader:after {
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.loader {
  margin: 0 auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 6px solid rgba(255, 255, 255, 0.2);
  border-right: 6px solid rgba(255, 255, 255, 0.2);
  border-bottom: 6px solid rgba(255, 255, 255, 0.2);
  border-left: 6px solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*# sourceMappingURL=style_pc.css.map */

/* コラム記事 h2タイトル */
.article h2 {
  background-color: #004f95;
  font-size: 1.75rem;
  line-height: 1.5;
  padding: 1.25rem;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  position: relative;
  margin-bottom: 0;
  color: #fff;
}

.article h2::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #fff;
}

/* コラム記事 h3タイトル */
.article h3 {
  font-size: 1.5rem;
  line-height: 1.5;
  padding-bottom: 0.5rem;
  color: #004f95;
  border-bottom: 3px solid #e0d5ac;
  margin-bottom: 0;
}

/* コラム記事 表レイアウト用 */
.article .table-wrapper {
  margin-top: 1em;
}

/* コラム記事 本文テキスト */
.article .inner > p {
  font-size: 1rem;
  line-height: var(--Lh-L);
  margin-bottom: 0;
}

/* コラム記事 番号付きリスト */
.article ol {
  counter-reset: number;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.article ol li {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  display: flex;
}

.article ol li p {
  margin: 0;
}

.article ol li:nth-child(n + 2) {
  margin-top: 1.25rem;
}

.article ol li:before {
  margin-right: 0.625rem;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  font-weight: bold;
  font-size: 1.25rem;
  background-image: url(../img/cm_number-list_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  text-align: center;
}

/* 注釈 */
.article .caution {
  font-size: 10px;
  color: var(--grey);
  line-height: var(--Lh-S);
}
.article .table .caution {
  margin-top: 2px;
}
.article .table + .caution {
  margin-top: 0.75em;
}
.article .caution + p {
  margin-top: 0.75em;
}

.article .marker {
  font-weight: bold;
}

/* ==========================================================================
fix20220818 
=========================================================================== */
/*マーカー*/
body.fix20220818 span.marker {
  background: linear-gradient(transparent 60%, #f5f211 40%);

  display: inline-block;
  font-weight: bold;
}

/* 赤文字 */
body.fix20220818
  .company-list__item:nth-child(5)
  .table2__cel:nth-child(5)
  p:last-child,
body.fix20220818
  .company-list__item:nth-child(3)
  .table2__cel:nth-child(2)
  p:last-child,
body.fix20220818
  .company-list__item:nth-child(3)
  .table2__cel:nth-child(4)
  p:last-child,
body.fix20220818
  .company-list__item:nth-child(3)
  .table2__cel:nth-child(5)
  p:last-child,
body.fix20220818
  .company-list__item:nth-child(3)
  .table2__cel:nth-child(6)
  p:last-child,
body.fix20220818
  .company-list__item:nth-child(1)
  .table2__cel:nth-child(2)
  p:last-child,
body.fix20220818
  .company-list__item:nth-child(1)
  .table2__cel:nth-child(4)
  p:last-child,
body.fix20220818
  .company-list__item:nth-child(1)
  .table2__cel:nth-child(5)
  p:last-child,
body.fix20220818 .ranking__No1 .table2__cel:nth-child(2) p:last-child,
body.fix20220818 .ranking__No1 .table2__cel:nth-child(4) p:last-child,
body.fix20220818 .ranking__No1 .table2__cel:nth-child(5) p:last-child {
  color: var(--Main);
  font-weight: bold;
}

/* ==========================================================================
20220901　追加
=========================================================================== */

.company-info__tag {
  display: flex;
  margin-top: 1.25rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.company-info__tag li {
  text-align: center;
  font-size: 0.75rem;
  font-weight: bold;
  width: fit-content;
  gap: 0.3rem;
  background-color: #e06976;
  color: #fff;
  padding: 0.25rem 0.75rem;
}

.company-info__tag li.on {
}

.table3__cel:last-of-type p:first-of-type,
.table3__cel:last-of-type p:last-of-type {
  border-right: none;
}
.table3__cel:last-of-type p:first-of-type {
  font-weight: initial;
}

.table4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  border: 2px solid #383838;
}

.table4__cel.ttl {
  background-color: #d27f89;
  color: #fff;
  min-width: 87px;
}

.table4__cel.ttl p + p {
  border-top: 1px solid #fff;
}

.table4__cel {
  text-align: center;
}

.table4__cel p {
  min-height: 2.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
}

.table4__cel:not(.ttl) p + p {
  border-top: 1px solid #383838;
}

.table4__cel p:first-of-type {
  background-color: #d27f89;
  color: #fff;
}

.table4__cel:not(:nth-child(5n)) p:first-child {
  border-right: 1px solid #fff;
}

.table4__cel:not(:nth-child(5n)) p:not(:first-child) {
  border-right: 1px solid #383838;
}

.company-info__table4 {
  margin-top: 1.25rem;
}

.ranking__new .company-list__item .table2__cel p:last-of-type {
  color: #000 !important;
}

.ranking__new .company-list__item .table2__cel p.red {
  color: #bd0812 !important;
}

.ranking__new .red {
  color: #bd0812 !important;
}

.ranking__new .red__bg {
  background-color: #bd0812 !important;
}

.table2__cel p,
.table2__cel p:first-child,
.table2__cel p:last-child,
.table3__cel p,
.table3__cel p:first-child,
.table3__cel p:last-child,
.table4__cel p {
  font-size: 0.75rem;
}

.company-info__recommend {
  background-color: #f5f1f1;
  padding: 15px 8px 24px;
  box-sizing: border-box;
  margin: 20px -12px 0;
}

.company-info__recommend-ttl {
  color: #bd0816;
  font-size: 1.15rem;
  font-weight: bold;
  text-align: center;
}

.company-info__recommend-itemTtl {
  background-color: #fff;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
}

.company-info__recommend-list {
  margin: 15px -2px 0;
  text-align: center;
}

.company-info__recommend-item {
  width: calc(33% - 8.8px);
  min-width: 112px;
  margin: 0 3.4px;
  display: inline-block;
}

.company-info__recommend-item:nth-last-of-type(1) {
  margin-right: 0;
}

.company-info__recommend-itemIcon {
  width: 100%;
  margin: 20px auto 5px;
  text-align: center;
  font-weight: bold;
  font-size: 0.75rem;
}

.company-info__recommend-itemIcon img {
  display: block;
  margin: 0 auto 15px;
  height: 48px;
  width: auto;
  vertical-align: bottom;
  font-size: 0.75rem;
}

.company-info__recommend-itemBtn a {
  background-color: var(--Sub);
  font-size: 0.75rem;
  padding: 0.5rem 0;
  color: #fff;
  border: none;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: block;
  text-align: center;
  border-radius: 0.3rem;
  position: relative;
  box-shadow: 0 0.2rem 0 #074396;
  overflow: hidden;
}

.company-info__recommend-itemBtn a::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.5) 100%,
    rgba(255, 255, 255, 0) 0%
  );
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.company-info__recommend-itemBtn a:hover {
  opacity: 0.6;
  cursor: pointer;
}

.company-info__recommend + .company-info__box {
  margin-top: 2.76rem;
}

/* ==========================================================================
コラム .article 
=========================================================================== */
:root {
  --spacing-half: 0.5em;
  --spacing-1: 1em;
  --spacing-2: 1.5em;
  --spacing-3: 2em;
  --Lh-L: 1.8;
  --Lh-M: 1.5;
  --Lh-S: 1.3;
}
/* 見出し */
.article h1 {
  margin-top: 1em;
  color: #004f95;
  font-size: 2.1rem;
  line-height: var(--Lh-S);
}

.article h2 {
  margin-top: 1.5em;
  line-height: var(--Lh-S);
}

.article h3 {
  margin-top: 1em;
  line-height: var(--Lh-M);
}

.article h4 {
  margin-top: 1em;
  font-size: 1rem;
  line-height: var(--Lh-M);
  border-left: solid 4px #e0d5ac;
  padding: 8px 20px;
}

.article .img {
  margin: 1em auto 0;
}

.article .img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.article p {
  margin-top: 1.5em;
  line-height: 1.8;
}
.article p + p {
  margin-top: 0.75em;
}

.article .marker {
  background-color: #fded86;
  font-weight: bold;
}

/* 箇条書き */
.listbox {
  margin-top: var(--spacing-2);
}
.listbox li {
  line-height: var(--Lh-M);
  display: flex;
  font-weight: bold;
  margin-top: 1em;
}
.listbox li::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  flex-shrink: 0;
  background-image: url("../img/check.svg");
}
/* テーブル */
.article .table {
  border-top: 2px solid #707070;
  border-bottom: 2px solid #707070;
  margin-top: var(--spacing-2);
  width: 100%;
  line-height: var(--Lh-M);
}
.article .table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.article .table th,
.article .table td {
  font-size: 12px;
  line-height: var(--Lh-M);
  text-align: center;
  padding: 0.5em;
  color: #000000;
  border: 1px dotted #c6bc97;
}
.article .table thead th {
  background: #e8debb;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 1.25em;
}
.article .fixedTh {
  width: calc(6em + 16px);
}
.article .table tbody th {
  background: #f7f7f7;
  width: calc(6em + 16px);
  min-width: 120px;
}
.article .table tbody th,
.article .table tbody td {
  border-bottom: 1px dotted #c6bc97;
  border-left: none;
}
.article .table tbody td {
  border-right: 1px solid #c6bc97;
  width: auto;
}
.article .table tbody tr:nth-of-type(1) th,
.article .table tbody tr:nth-of-type(1) td {
  border-top: 1px solid #c6bc97;
}
.article .table tbody tr:last-child th,
.article .table tbody tr:last-child td {
  border-bottom: none;
}
.article .table tbody td:last-child {
  border-right: none;
}
.article .table tbody td:nth-of-type(1),
.article .table tbody td:nth-of-type(2) {
  border-right: 1px solid #c6bc97;
  border-left: none;
}
.article .table.col2 tbody td:last-child {
  border-right: none !important;
}
.article .scrollTable {
  overflow-x: scroll;
}
.article .scrollTable table {
  width: 1000px;
}
.article .scrollTable tbody th,
.article .scrollTable tbody td {
  width: 200px;
}
.color {
  color: #f5f112;
}

/* ==========================================================================
20220908追加
=========================================================================== */
/* 目的別ランキング一覧 */
.purpose {
  background: var(--Back);
  padding: 64px 20px;
}
.purpose__ttl {
  display: block;
  width: 46%;
  margin: 0 auto;
}
.purpose__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: calc(242px * 3 + 128px);
  margin: 56px auto 0;
}
a.purpose__item {
  display: block;
  width: 242px;
  transition: 0.3s;
}
a.purpose__item:hover {
  opacity: 0.6;
}

.table-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.table__ttl {
  margin-top: 16px;
  margin-bottom: 11px;
}
.table__ttl li {
  font-size: 14px;
}
.check-list.table__ttl li::before {
  width: 1.4rem;
  height: 1.4rem;
  top: 1px !important;
  margin-right: 0.6rem !important;
}
.table__ttl + .company-info__table3 {
  margin-top: 0;
}
.table-result td {
  padding: 0.9rem;
}
.table-result tr > td:last-child {
  vertical-align: middle;
}

.table-result .table__logo.table__logo--no-rank a {
  padding: 0;
}
.table-result .txt-bold {
  font-weight: initial;
}

.fv_txt {
  margin-top: 1.2rem;
  font-size: 1.2rem;
}

.fv_txt_maker {
  color: var(--Main);
  background: linear-gradient(transparent 60%, #fee8e8 60%, #fee8e8 100%);
  font-weight: bold;
}

/* ==========================================================================
ポジショニングマップ
=========================================================================== */
.positioningMap {
  margin-top: 16px;
  background-image: url(../img/cm_bg.png.webp);
  background-size: contain;
}
.positioningMap__top {
  padding: 0 20px;
}
.positioningMap__top .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.positioningMap__top-subTtl {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.positioningMap__top-notes {
  font-size: 1rem;
  text-align: right;
  margin-top: 2px;
}
.positioningMap__top-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  line-height: 36px;
  text-align: center;
  background: #fa8c2f;
  border-bottom: 4px solidg #ffff00;
  height: 36px;
}
.positioningMap__inner {
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
}
.positioningMap__inner::before {
  content: "";
  display: inline-block;
  background: #fff7de;
  border-radius: 50%;
  width: 38%;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: 6%;
  right: 5.8%;
}
.positioningMap__inner::after {
  content: "";
  display: inline-block;
  background: url(../img/positioningmap_bg.svg) no-repeat center / 100% auto;
  width: 64%;
  height: 100%;
  position: absolute;
  top: 4%;
  left: 48.5%;
  transform: translateX(-50%);
}
.positioningMap__label,
.positioningMap__subLabel {
  position: absolute;
  z-index: 2;
}
.positioningMap__subLabel {
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
}
.positioningMap__label-01,
.positioningMap__label-02 {
  font-size: 21px;
  font-weight: bold;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
}
.positioningMap__label-01 {
  background: #e06976;
  top: 6.5%;
  left: 50%;
  transform: translateX(-50%);
}
.positioningMap__label-02 {
  background: var(--gray);
  top: 89%;
  left: 50%;
  transform: translateX(-50%);
}
.positioningMap__label-03,
.positioningMap__label-04 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.17;
  color: #fff;
  text-align: center;
  display: inline-block;
  padding: 8px;
}
.positioningMap__label-03 {
  background: #e06976;
  top: 57.8%;
  transform: translateY(-50%);
  right: 20px;
}
.positioningMap__label-04 {
  background: var(--gray);
  top: 57.8%;
  transform: translateY(-50%);
  left: 20px;
}
.positioningMap__item-logo {
  width: auto;
  max-width: 100%;
  height: 20px;
  object-fit: contain;
}
.positioningMap__item-01 .positioningMap__item-logo {
  height: 38px;
}
.positioningMap__item-10 .positioningMap__item-logo {
  height: 52px;
  object-fit: contain;
  width: auto;
}
.positioningMap__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #000;
  border-bottom: 4px solid #000;
  border-radius: 4px;
  max-width: 180px;
  padding: 12px;
  position: absolute;
  z-index: 1;
}
a.positioningMap__item {
  text-decoration: none;
}
a.positioningMap__item:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.positioningMap__item-catch {
  font-size: 12px;
  margin: 4px 0 0;
  text-align: center;
  color: var(--Text);
}
.positioningMap__item-01 {
  display: inline-block;
  border-color: #000;
  width: 240px;
  max-width: 240px;
  padding: 10px 12px 6px;
  z-index: 1;
  top: 16%;
  right: 6.4%;
}
.positioningMap__item-01::before {
  content: "";
  display: inline-block;
  background: url(../img/ico_crown.svg) no-repeat center / auto 32px;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -52%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.positioningMap__item-01 img {
  width: auto;
  height: 22px;
}
.positioningMap__item-02 {
  top: 23%;
  left: 12%;
}
.positioningMap__item-03 {
  top: 36%;
  left: 35%;
  width: 138px;
}
.positioningMap__item-04 {
  top: 48%;
  right: 35%;
}
.positioningMap__item-05 {
  top: 44%;
  right: 29%;
}
.positioningMap__item-06 {
  right: 7%;
  top: 28%;
}
.positioningMap__item-07 {
  left: 32%;
  top: 59%;
}
.positioningMap__item-08 {
  right: 62%;
  top: 40%;
}
.positioningMap__item-09 {
  left: 12%;
  top: 36%;
  width: 138px;
}
.positioningMap__item-10 {
  left: 67%;
  top: 36%;
  padding: 2px 6px;
}
.positioningMap__item-link {
  display: block;
}
.positioningMap__item-link {
  display: block;
}
.positioningMap {
  margin-top: 40px;
}
.positioningMap__top-ttl {
  font-size: 21px;
  line-height: 54px;
  height: 54px;
}
.positioningMap__inner {
  width: 55%;
  margin: 0 auto;
}
.positioningMap__item-logo {
  height: 36px;
}

.positioningMap__item-catch1 {
  font-size: 12px;
  margin: 6px auto 0;
  color: #383838;
  background: linear-gradient(transparent 60%, #f5f211 40%);
  display: inline-block;
  padding: 3px;
  font-weight: bold;
}

.positioningMap__item-00 {
  width: 36%;
  max-width: 36%;
  display: block;
  left: 9%;
  top: 15%;
  text-align: center;
  padding: 11px 12px 5px;
}

.recommend::before,
.recommend::after {
  content: none;
}
.recommend {
}

.section__ttl--2 {
}
.card {
  border: 1px solid #e06976;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 2px 2px 0 #858585a6;
  position: relative;
}
.card__rank {
  display: inline-block;
  width: 83px;
  height: 83px;
  background-color: #d27f89;
  border-radius: 100px 100px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  border: 3px solid #d27f89;
  border-bottom: none;
  position: relative;
  top: 2px;
  height: 78px;
}
.card__flex-wrap1 {
  padding: 15px;
}
.card__rank.card__rank--rank1 {
  background-color: var(--Main);
  border: 3px solid var(--Main);
  border-bottom: none;
}
.card__heading {
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #e06976;
  width: 100%;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  font-size: 18px;
  border-radius: 4px 4px 0 0;
}
.card--rank2 .card__heading,
.card--rank3 .card__heading {
  background-color: #f8dde0;
  color: #e06976;
}

.card__heading .color {
  font-size: 20px;
}
.card__desc {
  font-weight: bold;
  font-size: 18px;
  color: #d27f89;
}
.recommend__cards .card__logo {
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 10px auto 0;
}
.card__fukidashi {
  background-color: #d27f89;
  color: #fff;
  width: 100%;
  font-weight: bold;
  font-size: 22px;
  border-radius: 100px;
  margin-top: 12px;
  position: relative;
  font-weight: initial;
  padding-top: 2px;
}
.card__fukidashi::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  margin-left: -7px;
  border: 7px solid transparent;
  border-bottom: 7px solid #d27f89;
}
.card--rank2,
.card--rank3 {
  border: 1px solid #f8dde0;
}
.card--rank2 .card__heading,
.card--rank3 .card__haeding {
}
.card__rank picture {
  position: relative;
  z-index: 2;
  top: -10px;
}

.card__rank--rank1 picture img {
  width: 38px;
}
.card__rank--rank2 picture img {
  width: 42px;
}
.card__rank--rank3 picture img {
  width: 38px;
}
.recommend__cards .card__logo.forSP {
  display: none;
}

.recommend__cards {
}

/* ==========================================================================
通貨別にスプレッド・スワップを紹介 20221128
=========================================================================== */
section.tab .section__ttl {
  margin: 0 auto;
  text-align: center;
}
.spread__tabContents {
  margin-top: 55px;
}
section.tab .section__ttl img {
  width: 594px;
  height: 120px;
  vertical-align: bottom;
}
section.tab {
  position: relative;
  background-image: url(../img/cm_bg_plaid.jpg);
  background-size: cover;
  padding: 2.5rem 6.5rem 5rem;
}
.spread__tab {
  display: none;
}
.spread__tabContents .swiper-slide {
  width: 31%;
  display: inline-block;
  margin-right: 3%;
}
.spread__tabContents .swiper-slide:nth-last-of-type(1) {
  margin-right: 0;
}
.spread__tabContents-box a {
  display: block;
  padding: 10px;
  box-sizing: border-box;
  background: #fff;
  border-bottom: 2px solid #d27f89;
  border-right: 2px solid #d27f89;
  border-left: 2px solid #d27f89;
  position: relative;
  padding-right: 47px;
  min-height: 129px;
}
.spread__tabContents-box a:hover {
  opacity: 0.6;
  cursor: pointer;
}
.spread__tabContents-box a::after {
  content: "";
  width: 27px;
  height: 109px;
  background-image: url("../img/spread__tabContents-arrow.png");
  background-size: 27px 109px;
  position: absolute;
  right: 10px;
  top: 10px;
}
.spread__tabContents-logo {
  width: 100%;
  text-align: center;
  height: 40px;
  display: block;
  margin: 0 auto;
}
.spread__tabContents-logo img {
  width: 100%;
  height: auto;
  text-align: center;
  vertical-align: middle;
}
.spread__tabContents-logo img.gmo {
  width: 200px;
  height: 21px;
  margin-top: 15px;
}
.spread__tabContents-logo img.gaika {
  width: 200px;
  height: 35px;
  margin-top: 4px;
}
.spread__tabContents-logo img.maimate {
  width: 154.6px;
  height: 33px;
  margin-top: 5px;
}
.spread__tabContents-data {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
}
.spread__tabContents-data01 {
  display: inline-block;
  width: 46%;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  background-color: #d27f89;
  padding: 5px 0;
  height: 55px;
  vertical-align: bottom;
}
.swiper-container.spread__tabContents
  > div
  > div:nth-child(2)
  .spread__tabContents-data01 {
  background-color: #18607a;
}
.swiper-container.spread__tabContents
  > div
  > div:nth-child(2)
  .spread__tabContents-data02 {
  background-color: #effbff;
}
.swiper-container.spread__tabContents
  > div
  > div:nth-child(3)
  .spread__tabContents-data01 {
  background-color: #187a6f;
}
.swiper-container.spread__tabContents
  > div
  > div:nth-child(3)
  .spread__tabContents-data02 {
  background-color: #ecf7f6;
}
.spread__tabContents-data01::before {
  content: "スプレッド";
  font-size: 14px;
  display: block;
}
.spread__tabContents-data02 {
  display: inline-block;
  width: 54%;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  color: #d27f89;
  font-size: 16px;
  background-color: #edf2f9;
  padding: 10px 0;
  height: 55px;
  vertical-align: bottom;
}
.spread__tabContents-data02::before {
  content: "スワップポイント";
  font-size: 12px;
  display: block;
}

@media screen and (min-width: 769px) {
  .card__access p {
  }
  .card--rank2 .card__logo,
  .card--rank3 .card__logo {
    height: 32px;
  }
  .card--rank2,
  .card--rank3 {
  }
  .card--rank2 .card__rank,
  .card--rank3 .card__rank {
    top: 10px;
  }
  .card__logo {
    width: 10rem;
  }
  .card--rank1 .card__logo {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
}

/* ==========================================================================
FVレバレッジ訴求変更　レバレッジとは　ポップアップパーツ 20221222
=========================================================================== */
.popup_box label {
  float: right;
  margin: 0px 0px 0px;
}
.popup_wrap input {
  display: none;
}
.popup_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}
.popup_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}
.popup_content {
  position: relative;
  align-self: center;
  width: 90%;
  max-width: 800px;
  padding: 35px 20px 15px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
}
.popup_content p {
  line-height: 1.5;
  font-size: 0.8rem;
  margin: 0 0 1rem 0;
}
.popup_content2 {
  position: relative;
  align-self: center;
  width: 90%;
  max-width: 800px;
  padding: 35px 20px 15px;
  color: #000000;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
}
.close_btn {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 26px;
  padding: 5px 5px;
  cursor: pointer;
  color: #ffffff;
  background: #000000;
}
.popup_wrap .popup_overlay.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}
.open_btn:hover {
  background: #ffb9c2;
  color: #db3f53;
  transition: 0.3s ease;
}
.recommend .inner {
  position: relative;
  margin-top: 15px;
}
.recommend .inner .popup__open {
  position: absolute;
  top: -47px;
  padding-right: 53px;
  text-align: right;
  display: block;
  width: 100%;
  font-size: 87%;
  font-weight: bold;
}
.recommend .inner .popup__open-btn {
  display: inline-block;
  font-size: 10px;
  position: relative;
  top: -1px;
  text-align: center;
  width: 20px;
  height: 20px;
  margin: 10px auto;
  padding: 0 3px;
  line-height: 20px;
  color: #d90000;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
  margin-left: 6px;
}

.comparison .inner .popup__open {
  position: absolute;
  top: -47px;
  padding-right: 53px;
  text-align: right;
  display: block;
  width: 100%;
  font-size: 87%;
  font-weight: bold;
}
.comparison .inner .popup__open-btn {
  display: inline-block;
  font-size: 10px;
  position: relative;
  top: -1px;
  text-align: center;
  width: 20px;
  height: 20px;
  margin: 10px auto;
  padding: 0 3px;
  line-height: 20px;
  color: #d90000;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
  margin-left: 6px;
}

.positioningMap__top .popup__open {
  position: absolute;
  top: -47px;
  padding-right: 53px;
  text-align: right;
  display: block;
  width: 100%;
  font-size: 87%;
  font-weight: bold;
}
.positioningMap__top .popup__open-btn {
  display: inline-block;
  font-size: 10px;
  position: relative;
  top: -1px;
  text-align: center;
  width: 20px;
  height: 20px;
  margin: 10px auto;
  padding: 0 3px;
  line-height: 20px;
  color: #d90000;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
  margin-left: 6px;
}

.ranking .inner .popup__open {
  position: absolute;
  top: -47px;
  padding-right: 53px;
  text-align: right;
  display: block;
  width: 100%;
  font-size: 87%;
  font-weight: bold;
}
.ranking .inner .popup__open-btn {
  display: inline-block;
  font-size: 10px;
  position: relative;
  top: -1px;
  text-align: center;
  width: 20px;
  height: 20px;
  margin: 10px auto;
  padding: 0 3px;
  line-height: 20px;
  color: #d90000;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
  margin-left: 6px;
}

/* ==========================================================================
比較表　調整 20221222
=========================================================================== */
.comparison__table-aco {
  overflow-y: hidden;
  height: 652px;
  position: relative;
}
.comparison__table-aco::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  z-index: 9;
  height: 50px;
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.8) 50%,
    #fff 100%
  );
  background: linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.8) 50%,
    #fff 100%
  );
}
.comparison__table-aco.active {
  height: 100%;
}
.comparison__table-aco.active::after {
  display: none;
}
.comparison__table-acoBtn {
  background-color: #383838;
  color: #fff;
  padding: 0.3125rem 0 0.5rem;
  text-decoration: none;
  display: block;
  width: 8.75rem;
  font-size: 0.75rem;
  text-align: center;
  border-radius: 0.25rem;
  font-weight: bold;
  transition: 0.3s;
  position: relative;
  margin: 0 auto;
  position: relative;
  top: -20px;
  z-index: 10;
}
.comparison__table-acoBtn::before {
  content: "もっと見る ＋";
}
.comparison__table-acoBtn.active::before {
  content: "閉じる";
}
.comparison__table-acoBtn.active {
  top: 0;
  margin-top: 30px;
}
.comparison__table-aco .table--1 tr:nth-child(3) td:first-child {
  background-color: #fff7de;
}
.comparison__table-aco table tbody tr:nth-child(3) {
  background-color: #fff7de;
}

/* ==========================================================================
FVレバレッジ訴求変更　レバレッジとは　ポップアップパーツ 20221222
=========================================================================== */
.popup_box label {
  float: right;
  margin: 0px 0px 0px;
}
.popup_wrap input {
  display: none;
}
.popup_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}
.popup_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}
.popup_content {
  position: relative;
  align-self: center;
  width: 90%;
  max-width: 800px;
  padding: 35px 20px 15px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
}
.popup_content p {
  line-height: 1.5;
  font-size: 0.8rem;
  margin: 0 0 1rem 0;
}
.popup_content2 {
  position: relative;
  align-self: center;
  width: 90%;
  max-width: 800px;
  padding: 35px 20px 15px;
  color: #000000;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
}
.close_btn {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 26px;
  padding: 5px 5px;
  cursor: pointer;
  color: #ffffff;
  background: #000000;
}
.popup_wrap .popup_overlay.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}
.open_btn:hover {
  background: #ffb9c2;
  color: #db3f53;
  transition: 0.3s ease;
}
.recommend .inner {
  position: relative;
}
.recommend .inner .popup__open {
  position: absolute;
  top: -47px;
  padding-right: 53px;
  text-align: right;
  display: block;
  width: 100%;
  font-size: 87%;
  font-weight: bold;
}
.recommend .inner .popup__open-btn {
  display: inline-block;
  font-size: 10px;
  position: relative;
  top: -1px;
  text-align: center;
  width: 20px;
  height: 20px;
  margin: 10px auto;
  padding: 0 3px;
  line-height: 20px;
  color: #00a3b5;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
  margin-left: 6px;
}

.comparison .inner .popup__open {
  position: absolute;
  top: -47px;
  padding-right: 53px;
  text-align: right;
  display: block;
  width: 100%;
  font-size: 87%;
  font-weight: bold;
}
.comparison .inner .popup__open-btn {
  display: inline-block;
  font-size: 10px;
  position: relative;
  top: -1px;
  text-align: center;
  width: 20px;
  height: 20px;
  margin: 10px auto;
  padding: 0 3px;
  line-height: 20px;
  color: #d90000;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
  margin-left: 6px;
}

.positioningMap__top .popup__open {
  position: absolute;
  top: -47px;
  padding-right: 53px;
  text-align: right;
  display: block;
  width: 100%;
  font-size: 87%;
  font-weight: bold;
}
.positioningMap__top .popup__open-btn {
  display: inline-block;
  font-size: 10px;
  position: relative;
  top: -1px;
  text-align: center;
  width: 20px;
  height: 20px;
  margin: 10px auto;
  padding: 0 3px;
  line-height: 20px;
  color: #d90000;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
  margin-left: 6px;
}

.ranking .inner .popup__open {
  position: absolute;
  top: -47px;
  padding-right: 53px;
  text-align: right;
  display: block;
  width: 100%;
  font-size: 87%;
  font-weight: bold;
}
.ranking .inner .popup__open-btn {
  display: inline-block;
  font-size: 10px;
  position: relative;
  top: -1px;
  text-align: center;
  width: 20px;
  height: 20px;
  margin: 10px auto;
  padding: 0 3px;
  line-height: 20px;
  color: #d90000;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
  margin-left: 6px;
}

/* ==========================================================================
検索フォーム改修 20230117
=========================================================================== */
.txt-lg {
  font-size: 0.875rem;
}

/* 余白調整 */
.search__form {
  margin-top: 0;
}
.form__grid {
  margin-top: 1.25rem;
}
.form dl:nth-child(n + 2) {
  margin-top: 1.25rem;
}
.form dl:nth-child(2) .form__grid {
  margin-top: 2rem;
}
label.form__checkbox-label--coin {
  padding-left: 50px;
}

/* アイコン */
.form__checkbox-label--tiny::before {
  background-image: url(../img/cm_icon_tiny.svg);
}
.form__checkbox-label--risk::before {
  background-image: url(../img/cm_icon_risk.svg);
}
.form__checkbox-label--bunsan::before {
  background-image: url(../img/cm_icon_bunsan.svg);
}
.form__checkbox-label--check::before {
  background-image: url(../img/cm_icon_check.svg);
}
.form__checkbox-label--news::before {
  background-image: url(../img/cm_icon_news.svg);
}
.form__checkbox-label--reba::before {
  background-image: url(../img/cm_icon_reba.svg);
}

/* 吹き出し */
.form__fukidashi {
  font-size: 0.6875rem;
  text-shadow: 1px 1px 0 #a44651, -1px 1px 0 #a44651, 1px -1px 0 #a44651,
    -1px -1px 0 #a44651;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #e06976;
  border: 1px solid #a44651;
  border-radius: 20px;
  border-bottom-width: 3px;
  width: 120px;
  padding: 3px 0;
  position: absolute;
  top: -24%;
  left: 50%;
  transform: translateX(-50%);
}
.form__fukidashi::after {
  content: "";
  border-top: 6px solid #d27f89;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  filter: drop-shadow(0 3px 0 #a44651);
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

/* ボタン */
.form__btns {
  margin-top: 2.5rem;
}
.form__submit-btn {
  font-size: 1.125rem;
  padding: 1.125rem 1.875rem 1rem;
}

/* 件数表示 */
.Refine_Search_number {
  font-weight: bold;
  display: inline;
  position: absolute;
  line-height: 61px;
  top: 50%;
  left: 13%;
  transform: translateY(-50%);
  margin-right: 16px;
}

/* ========================================================
20230329 比較表タブ
=========================================================*/
/* タブ */
.tab__btns {
  border-bottom: 3px solid #e06976;
  margin-top: 25px;
}

.tab__btns-inner {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid transparent;
  width: 100%;
}
.tab__btn {
  width: 100%;
  font-size: 1.25rem;
  font-weight: bold;
  color: rgb(56, 56, 56, 0.5);
  text-align: center;
  padding: 12px 0 0;
  height: 64px;
  background-color: #fff;
  border-radius: 0.5rem 0.5rem 0 0;
  border: 3px solid rgb(224, 105, 118, 0.5);
  border-bottom: none;
  transition: 0.3s;
  margin-bottom: -3px;
  position: relative;
}

.tab__btn::after {
  content: "";
  display: inline-block;
  width: calc(100% + 6px);
  height: 2px;
  background: #e06976;
  position: absolute;
  bottom: 0;
  left: -3px;
}

.tab__btn:hover {
  cursor: pointer;
}

.tab__btn:not(:last-child) {
  margin-right: 1.875rem;
}

.tab__btn.is-btn-active {
  color: #383838;
  border: 3px solid rgb(224, 105, 118, 1);
  border-bottom: none;
  position: relative;
}
.tab__btn.is-btn-active::after {
  content: "";
  display: inline-block;
  width: calc(100%);
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.tab__item {
  padding-top: 15px;
  display: none;
  opacity: 0;
  position: relative;
}

.tab__item.tab__item--pt10 {
  padding-top: 0.625rem;
}

.tab__item.is-contents-active {
  display: block;
  opacity: 1;
}

/* タブ2テーブル幅 */
.tab__items:nth-of-type(2) .table--1 tr:nth-child(1) th {
  width: auto;
  height: 58px;
}
.tab__items:nth-of-type(2) .table--1 tr:nth-child(1) th:first-of-type {
  width: 157px;
}
.tab__items:nth-of-type(2) .table--1 tr:nth-child(1) th:last-of-type {
  width: 126px;
}

/* ========================================================
20230403 投資スタイル別
=========================================================*/
/* 選び方 */
.marker--pink {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #f8dde0 40%);
}
.inv-style__howto {
  display: block;
  padding-top: 10px;
}
.inv-style__howto-img {
  width: 1190px;
  object-fit: contain;
}
.inv-style__howto-txtbox {
  font-size: 12px;
  border: 1px solid #484848;
  border-radius: 5px;
  width: 500px;
  padding: 10px;
  margin: 0 auto;
}
.inv-style__howto-triangle {
  display: block;
  width: 150px;
  height: auto;
  margin: 30px auto;
}

/* おすすめ口座 */
.inv-style__recommend {
  background: #fafafa;
  padding: 0 0 80px;
}
.inv-style__recommend-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin-top: 56px;
}
.inv-style__recommend-item {
  text-align: center;
  background: #fff;
  border: 2px solid #f8dde0;
  border-radius: 5px;
  width: 256px;
  padding: 20px;
  position: relative;
}
.inv-style__recommend-item:nth-of-type(1) {
  background: #fff7de;
  border: 2px solid #e06976;
}
.inv-style__recommend-item_ttl {
  font-size: 18px;
  font-weight: bold;
}
.inv-style__recommend-item:nth-of-type(1) .inv-style__recommend-item_ttl {
  color: #e06976;
}
.inv-style__recommend-item_img {
  width: 100px;
  aspect-ratio: 1 / 1;
  margin-top: 8px;
}
.inv-style__recommend-item_name p {
  font-size: 13px;
  font-weight: bold;
  color: var(--Text_blue);
  text-decoration: underline;
  margin-top: 8px;
  transition: all 0.3s;
}
.inv-style__recommend-item_name p:hover {
  opacity: 0.6;
}
.inv-style__recommend-item_bnr {
  width: 180px;
  aspect-ratio: 6 / 5;
  margin-top: 8px;
  transition: all 0.3s;
}
.inv-style__recommend-item_bnr:hover {
  opacity: 0.6;
}
.inv-style__recommend-item_txt {
  font-size: 14px;
  font-weight: bold;
  margin-top: 8px;
}
.inv-style__recommend-item_btn {
  margin-top: 8px;
}
.inv-style__recommend-item_btn a {
  width: 180px;
}
.inv-style__recommend-item_fukidashi {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e06976;
  border-radius: 17px;
  padding: 5px 10px;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}
.inv-style__recommend-item_fukidashi::before {
  content: "";
  display: inline-block;
  background: url(../img/ct_icon_beginnermark.png) no-repeat center / 14px 20px;
  width: 14px;
  height: 20px;
}
.inv-style__recommend-item_fukidashi::after {
  content: "";
  display: inline-block;
  border-top: 5px solid #e06976;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
}

/* ========================================================
20230405 FX始め方ガイド
=========================================================*/
.guide {
  margin-top: 20px;
}
.guide__tab {
  width: 500px;
  margin: 20px auto 0;
}
.tab__btns-inner02 {
  display: flex;
}
.tab__btn02 {
  font-size: 14px;
  font-weight: bold;
  color: #e56e81;
  text-align: left;
  display: flex;
  justify-content: center;
  background: #fff;
  border: 3px solid #e56e81;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  width: calc(100% / 3);
  padding: 6px 0;
  margin-bottom: 0;
}
.tab__btn02:hover {
  cursor: pointer;
}
.tab__btn02.is-btn-active02 {
  color: #fff;
  background: #e56e81;
}
.tab__item02 {
  border: 3px solid #e56e81;
  display: none;
  opacity: 0;
  position: relative;
}
.tab__item02.is-contents-active02 {
  display: block;
  opacity: 1;
}
.guide__item-ttl {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: #e56e81;
  padding: 17px 40px;
}
.guide__item-ttl_step {
  color: #e56e81;
  background: #fff;
  border-radius: 5px;
  padding: 0 5px;
  margin-right: 10px;
}
.guide__item-content {
  line-height: 1.43;
  height: 340px;
  padding: 30px 40px;
  position: relative;
}
.guide__item-content p {
  font-size: 14px;
}
.guide__item-headline {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  background: #e56e81;
  padding: 3px 10px;
}
.guide__item-headline + * {
  margin-top: 10px;
}
.guide__item01 .guide__item-headline {
  margin-top: 20px;
}
.guide__item03 .guide__item-headline {
  margin-top: 40px;
}
.guide__item-content .popup__open {
  font-size: 12px;
  line-height: 1;
  color: #e56e81;
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  bottom: 10px;
  right: 40px;
}
.guide__item-content .popup__open-btn {
  display: inline-block;
  background: url(../img/ct_icon_question.png) no-repeat center / 13px;
  width: 13px;
  height: 13px;
}
.guide__item-content .popup__open-btn:hover {
  cursor: pointer;
}
.guide__item-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}
.guide__item-card {
  width: 100%;
}
.guide__item-card_ttl {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #e56e81;
  padding: 10px 0;
}
.guide__item-card_content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff7de;
  padding: 16px 0;
}
.guide__item-card_content img {
  width: 146px;
  height: 208px;
  object-fit: contain;
}
.guide__item-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.guide__item-cta + .guide__item-cta {
  margin-top: 18px;
}
.guide__item-cta_logo {
  width: 205px;
  height: auto;
  transition: all 0.3s;
}
.guide__item-cta_logo:hover {
  opacity: 0.6;
}
.guide__item-cta div {
  flex-grow: 1;
}
.guide__item-cta_catch {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1em;
}
.guide__item-cta_catch::before {
  content: "";
  display: inline-block;
  background: #383838;
  width: 1px;
  height: 13px;
  transform: translateY(0.2em) rotate(-45deg);
}
.guide__item-cta_catch::after {
  content: "";
  display: inline-block;
  background: #383838;
  width: 1px;
  height: 13px;
  transform: translateY(0.2em) rotate(45deg);
  margin-top: 0.2em;
}
.guide__item-cta .btn-sub {
  width: 100%;
  margin-top: 3px;
  box-shadow: none;
  border-bottom: 2px solid #21595f;
}
.guide__item-cta .btn-sub::before {
  width: 0.5rem;
  height: 0.5rem;
  right: 0.937rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/* ========================================================
20230411 比較表下CTAエリア
=========================================================*/
.comparison__cta {
  width: 600px;
  margin: 0 auto;
}
.comparison__cta-catch {
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  line-height: 40px;
  text-align: center;
  background: #e56e81;
  height: 40px;
}
.comparison__cta-content {
  background: #fff7de;
  padding: 20px;
}
.comparison__cta-flex {
  display: grid;
  /* justify-content: flex-start; */
  grid-template-columns: 348px 180px;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 10px 20px;
}
.comparison__cta-bnr {
  /* width: auto;
  height: 290px; */
  height: 100%;
  grid-column: 1;
  grid-row: 1 / 4;
}
.comparison__cta-flex > div {
  /* width: 180px; */
}
.comparison__cta-detail:nth-of-type(n + 2) {
}
.comparison__cta-detail {
  grid-column: 2;
}
.comparison__cta-detail_ttl {
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #484848;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.comparison__cta-detail_txt {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  background: url(../img/ct_icon_double-circle_02.png) no-repeat center / 44px,
    #fff;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.comparison__cta-camp {
  font-size: 1rem;
  font-weight: bold;
  color: #e56e81;
  text-align: center;
  border: 1px solid #e56e81;
  border-radius: 20px;
  padding: 8px;
  margin-top: 10px;
}
.comparison__cta-campbnr {
  margin-top: 10px;
}
.comparison__cta-btn {
  font-size: 1.125rem;
  width: 100%;
  padding: 1.375rem 1.875rem;
  margin-top: 10px;
  box-shadow: 0 0.125rem 0 #21595f;
}

.recommend__cards-notes {
  font-size: 10px;
  color: #939292;
  padding: 0;
  margin-top: 10px;
}

.comparison__campaign__cta {
  width: 600px;
  position: relative;
  margin: 120px auto 0px;
  padding: 20px;
  border-width: 3px;
  border-style: solid;
  border-color: rgb(229, 110, 129);
  border-image: initial;
  border-radius: 8px;
}

.comparison__campaign__cta::before {
  position: absolute;
  content: "";
  top: -10.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 114px;
  background: url(../img/comparison_campaign_bnr.png) center center / 100%
    no-repeat;
}

.comparison__campaign__bnr {
  margin-top: 16px;
  transition: all 0.3s ease 0s;
}

.comparison__campaign__name {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  display: block;
  margin-top: 30px;
  text-decoration: underline;
  transition: all 0.3s ease 0s;
}

.comparison__campaign-txt {
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
  border-top: 2px solid rgb(229, 110, 129);
  padding: 20px 0px 0px;
}

.comparison__campaign__accent {
  color: rgb(181, 65, 79);
}

.comparison__campaign__voucher {
  margin-top: 20px;
  transition: all 0.3s ease 0s;
}

.comparison__campaign__cta-btn {
  font-size: 1.125rem;
  width: 100%;
  margin-top: 20px;
  box-shadow: rgb(33, 89, 95) 0px 0.125rem 0px;
  padding: 1.375rem 1.875rem;
}
.article .table tbody td:last-child {
  border-right: none;
}
/* ==========================================================================
20240321 SBI５位追記
=========================================================================== */
.positioningMap__item-11 {
  top: 25%;
  left: 17%;
}
.positioningMap__item-02 {
  top: 26%;
  left: 12%;
}
.positioningMap__item-03 {
  top: 36%;
}
.positioningMap__item-08 {
  right: 62%;
  top: 46%;
}
/* ==========================================================================
20240410 教育コンテンツ追加
=========================================================================== */
.education__img {
  max-width: 660px;
  width: 100%;
  margin: 30px auto 0;
}

/* ==========================================================================
ステマ対策
  =========================================================================== */

.adTxt {
  text-align: right;
  max-width: 74.375rem;
  position: absolute;
  content: "";
  top: 0px;
  right: 0px;
  padding: 0px;
  margin: 8px auto;
}

.result .adTxt {
  top: 254px;
}

.adTxt span {
  font-size: 18px;
  font-weight: bold;
  border: 1px solid var(--Text);
  padding: 2px 14px;
}
/* ========================================================
20240606 header ロゴ追加
=========================================================*/
.header__logo {
  height: 35px;
  max-width: 74.375rem;
  background-color: #fff;
  position: relative;
  margin-inline: auto;
}
.header__logo::before {
  position: absolute;
  content: "";
  background: url(../img/FX_Guide_header.svg) no-repeat center;
  background-size: 100%;
  top: 0;
  left: 0;
  width: 194px;
  height: 35px;
  background-color: #fff;
  z-index: 100;
}
