@charset "UTF-8";

/* ==========================================================================
  ベース設定
  =========================================================================== */
:root {
  /* カラー */
  --Text: #383838;
  --Text_blue: #1a0dab;
  --Main: #2477EF;
  --Sub: #008A09;
  --Accent: #;
  --Back: #EDF2F9;
  --gray: ;
  /* 文字サイズ */
  --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 {
  padding: 2.5rem 0 5rem;
}
.section__ttl {
  margin: 0 auto;
}

/* セクションタイトル長さ指定 */
.section__ttl--1 {
  width: 49.4375rem;
}
.recommend .section__ttl--2 {
  width: 41.4375rem;
  padding-top: 2.5rem;
}
.section__ttl--3 {
  width: 32.5625rem;
}
.section__ttl--4 {
  width: 43.0625rem;
  padding-top: 40px;
}
.section__ttl--5 {
  width: 40.6875rem;
}
.section__ttl--result {
  width: 25.75rem;
  padding-bottom: 40px;
}

/* テキスト */
.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;
}
a: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: #E1262D;
  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 #004104; */
}
.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.25rem;
}
.table-result .btn-sub {
  width: 8.75rem;
  max-width: 100%;
}

/* ボタン大 */
.btn-main {
  background-color: #E1262D;
  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.5rem;
  position: relative;
}
.btn-main:hover {
  opacity: 0.6;
  cursor: pointer;
}
.btn-main--arrow {
  box-shadow: 0 0.375rem 0 #B11319;
}
.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 var(--Main);
  border-right: 2px solid var(--Main);
  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: #105AC5;
  color: #fff;
  height: 2.5rem;
  font-size: 0.88rem;
  line-height: 1;
  border: 1px solid #fff;
}

/* 比較テーブルのセル幅・高さ指定 */
.table--1 tr:nth-child(1) th:nth-child(1) {
  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: 10.41666667%; */
}
.table--1 tr:nth-child(1) th:nth-child(5) {
  /*width: 12.5%;*/
}
.table--1 tr:nth-child(1) th:nth-child(6) {
  /*width: 11.875%;*/
}
.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;
}

/* テーブルセル */
.table--1 tr:nth-child(2) {
  background-color: var(--Back);
  position: relative;
  outline: 3px solid #E1262D;
  outline-offset: -3px;
}

/*
.table-result tr:nth-child(2n + 1) {
  background-color: var(--Back);
}
*/
.table td {
  padding: 0.88rem 0.5rem 0.88rem;
  border-bottom: 1px solid var(--Text);
  position: relative;
}
.comparison__table .table tr td span.ng-binding {
  display: inline-block;
  position: relative;
  top: 20px;
  vertical-align: top;
}


.comparison__table .table img.mark {
  display: block;
  margin: 0 auto 10px;
  width: 20px;
  height: 20px;
}

/* div.comparison__table.table-wrapper > div > table > tbody > tr:nth-child(2) > td:nth-child(8) > div > a{
  top: 25px;  
} */

/* div.comparison__table.table-wrapper > div > table > tbody > tr:nth-child(3) > td:nth-child(8) > div > a{
    top: 25px;
} */

/* div.comparison__table.table-wrapper > div > table > tbody > tr:nth-child(4) > td:nth-child(8) > div > a{
  top: 25px;  
}

div.comparison__table.table-wrapper > div > table > tbody > tr:nth-child(6) > td:nth-child(8) > div > a{
    top: -10px;
} */

.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: 0.6999rem;
}

/* 検索結果テーブルのセル幅・高さ指定 */
.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;
  vertical-align: middle;
  font-weight: bold;
}
.table-result td img.mark {
  width: 20px;
  display: block;
  margin: 0 auto 10px;
}

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

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

/* テーブルロゴ */
.table__logo {
  display: inline-block;
  text-align: center;
}
.table__logo.table__logo--no-rank a {
  display: inline-block;
  text-decoration: underline;
  white-space: nowrap;
  /*
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  */
}
.table__logo a {
  transition: 0.3s;
}
.table__logo a:hover {
  opacity: 0.6;
}
.table__logo a img {
  margin-bottom: 10px;
}

/* テーブルの中のボタン */
.table__btn {
  /* margin-top: 0.225rem; */
  text-align: center;
}
.table__btn .btn-sub {
  box-shadow: 0 0.2rem 0 #B11319;
  width: 100%;
}

span+.table__btn {
  margin-top: 0.225rem;
}

/* ランキング表記 */
.table__rank {
  position: absolute;
  top: 0.625rem;
  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.6rem;
  height: 1.3rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 0.9;
  color: #fff;
}
.table__rank--top>span>span {
  font-size: 0.56rem;
  padding-bottom: 0rem;
  display: inline-block;
}
.table__rank--top>span::before {
  position: absolute;
  content: "";
  top: -4.5px;
  left: 7px;
  width: 4rem;
  height: 2rem;
  -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 {
  background-color: #af8952;
}
.table__rank--2>span::before {
  background-color: #707070;
}
.table__rank--3>span::before {
  background-color: #b47046;
}

/* ランキング表記 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;
}

/* アイコン二重丸・丸・三角・バツ */
.table__icon {
  width: 1.25rem;
  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 var(--Text);
  padding: 3.75rem 2.5rem 2.5rem;
  position: relative;
  background-color: #fff;
}

/* 吹き出し */
.balloon-box__ttl {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.balloon-box__ttl>span {
  display: inline-block;
  position: relative;
}
.balloon-box__ttl>span::before,
.balloon-box__ttl>span::after {
  content: "";
  position: absolute;
  width: 7.5625rem;
  height: 0.375rem;
  background: url(../img/cm_fukidashi_border_dotted.png.webp) no-repeat center/contain;
  top: 50%;
}
.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;
  border: 2px solid var(--Text);
  padding: 0.875rem 3.75rem;
  border-radius: 2.5rem;
  position: relative;
  background-color: var(--Text);
  color: #fff;
  z-index: 2;
}
.balloon-box__ttl>span>span::before {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translate(-50%, 100%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem 0.5rem 0 0.5rem;
  border-color: var(--Text) transparent transparent transparent;
}
.balloon-box__ttl>span>span::after {
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.625rem 0.4375rem 0 0.4375rem;
  border-color: var(--Text) transparent transparent transparent;
}
.balloon-box__txt p {
  font-size: 1rem;
  line-height: 1.75;
}
.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;
}
.check-list li:nth-child(n + 2) {
  margin-top: 1.25rem;
}
.check-list li p {
  margin: 0;
  flex: 1;
}
.check-list li::before {
  content: "";
  display: inline-block;
  width: 1.625rem;
  height: 1.625rem;
  background-image: url(../img/cm_icon_check_red.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 1.25rem;
}

/* フォーム */
.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--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);
}
.form label:hover {
  cursor: pointer;
}
.form input {
  opacity: 0;
  position: absolute;
}

/* チェック時のスタイル */
.form input:checked+label {
  background-color: #2477EF;
  color: #fff;
  border-color: #2477EF;
}
.form input:checked+.form__radio-label::after {
  background-color: #2477EF;
}

/* radioのスタイル */
.form__radio-label {
  display: flex;
  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 #000;
  border-radius: 50%;
  margin-right: 0.625rem;
}
.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;
  align-items: center;
  line-height: 1.25;
}
.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;
}

/* こだわり条件のアイコン */
.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--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--10000yen::before {
  background-image: url(../img/cm_icon_10000yen.svg);
}
.form input:checked+.form__checkbox-label--10000yen::before {
  background-image: url(../img/cm_icon_10000yen_white.svg);
}
.form input:checked+.form__checkbox-label--clock::before {
  background-image: url(../img/cm_icon_clock_white.svg);
}
.form__checkbox-label--clock::before {
  background-image: url(../img/cm_icon_clock.svg);
}
.form__checkbox-label--security::before {
  background-image: url(../img/cm_icon_security.svg);
}
.form input:checked+.form__checkbox-label--security::before {
  background-image: url(../img/cm_icon_security_white.svg);
}
.form input:checked+.form__checkbox-label--coin::before {
  background-image: url(../img/cm_icon_coin_white.svg);
}


.form__checkbox-label--coin::before {
  background-image: url(../img/cm_icon_coin.svg);
}
.form input:checked+.form__checkbox-label--touch::before {
  background-image: url(../img/cm_icon_touch_white.svg);
}
.form__checkbox-label--touch::before {
  background-image: url(../img/cm_icon_touch.svg);
}
.form input:checked+.form__checkbox-label--money::before {
  background-image: url(../img/cm_icon_money_white.svg);
}
.form__checkbox-label--money::before {
  background-image: url(../img/cm_icon_money.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: 30rem;
  background-color: #E1262D;
  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.5rem;
  position: relative;
  /* box-shadow: 0 0.375rem 0 #004104; */
}
.form__submit-btn:hover {
  opacity: 0.6;
  cursor: pointer;
}

/* ==========================================================================
  header / ヘッダー
  =========================================================================== */
.header h1 {
  margin: 0;
}
.header img {
  width: 100%;
}

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

/* セクション背景 */
.comparison::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url(../img/ct_bg_blue.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.comparison::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url(../img/ct_bg_blue.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(-270deg);
}
.comparison__lead {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  background-color: #AF8952;
  color: #fff;
  padding: 2px 10px 4px;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 22px;
  line-height: 1;
  animation: zoom 1.4s infinite;
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
.comparison__table {
  margin-top: 2.5rem;
}
.comparison__table .table tr td:last-child {
  vertical-align: middle;
}

/* ==========================================================================
  recommend / 当サイト人気No1は？のセクション
  =========================================================================== */
/* セクション背景 */
.recommend {
  position: relative;
  /* margin-top: -0.5rem; */
  padding-bottom: 0.8125rem;
  background-image: url(../img/cm_bg_plaid.jpg.webp);
  background-size: cover;
  padding-bottom: 45px;
}
.recommend::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url(../img/ct_bg_grey.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
}
.recommend::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url(../img/ct_bg_grey.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(-270deg);
}

/* おすすめセクションタイトル */
.recommend__ttl-wrap {
  background-color: transparent;
  padding: 2.5rem 0 2.3125rem;
  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;
  place-items: center;
  column-gap: 1.875rem;
  margin-top: 3.125rem;
}
.recommend__caution {
  font-size: 0.625rem;
  margin-top: 1.25rem;
}

/* おすすめセクション カード */
.card {
  border: 0.0625rem solid var(--Text);
  border-radius: 0.5rem;
  background-color: #fff;
  padding: 1.875rem 1.875rem 1rem;
  box-shadow: 0 0.625rem 0.625rem rgba(56, 56, 56, 0.15);
}
.card.card--rank1 {
  border: 0.1875rem solid #E1262D;
  padding-top: 3.75rem;
  padding-bottom: 2.8125rem;
}
.card__flex-wrap3 {
  display: contents;
}
.card__flex-wrap2 {
  display: flex;
  flex-direction: column;
}
.card__ttl-wrap {
  order: 1;
  text-align: center;
  margin-top: -4.5rem;
}
.card__bnr {
  order: 2;
  min-height: 12.395625rem;
}
.card__access-wrap {
  order: 3;
}
.card__ttl-wrap.card__ttl-wrap--rank1 {
  margin-top: -5.8125rem;
}
.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: 0.9375rem;
}
.card--rank1 .card__bnr {
  margin-top: 0.3125rem;
}
.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: 0.3125rem;
}
.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;
  justify-content: center;
}
.card__access p span {
  font-size: 0.625rem;
}
.card__access>span {
  display: inline-block;
  padding: 0 0.625rem;
  font-size: 0.9rem;
  color: #E1262D;
  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.webp);
  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.webp);
  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.webp);
  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;
  background-image: url(../img/cm_bg_plaid.jpg.webp);
  background-size: cover;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}
.search::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url(../img/ct_bg_blue.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.search::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url(../img/ct_bg_blue.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(-270deg);
}
.search__form {
  margin-top: 2.5rem;
}

/* ==========================================================================
  ranking / おすすめランキングBEST3のセクション
  =========================================================================== */
/* セクション背景 */
.ranking {
  position: relative;
  margin-top: 80px;
  padding-bottom: 2.5rem;
  /* border-top: 3px solid #307EF0; */
}

/* .ranking::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url(../img/ct_bg_blue.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.ranking::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url(../img/ct_bg_blue.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(-270deg);
} */

.ranking__ttl {
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
}
.ranking__ttl-wrapper {
  background-color: var(--Main);
  padding: 2.5rem 0;
  margin-top: -2.5rem;
  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 {
  margin-top: 1rem;
}
.ranking__No1 {
  margin-top: 5.625rem;
}

/* おすすめNo1のボックス */
.No1-box {
  padding: 0 2.5rem 3.75rem;
  border-radius: 0.5rem;
  border: 3px solid var(--Main);
}
.No1-box .company-info__box {
  margin-top: 3.9375rem;
}
.No1-box__ttl {
  width: 37.3125rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: -0.625rem;
}
.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:nth-of-type(n+2) {
  margin-top: 5rem;
}

/* 会社情報 */
.company-info__ttl-wrap {
  display: flex;
  border-top: 2px solid var(--Text);
  border-bottom: 2px solid var(--Text);
  background-color: var(--Back);
  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.8rem 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;
  letter-spacing: normal;
  margin-top: 5px;
}


.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: 0.5rem;
}

/* バナー */
.company-info__bnr {
  display: block;
  margin-top: 1.25rem;
  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: #E1262D;
  font-size: 1.25rem;
  padding: 1.25rem 1.875rem;
  border: 1px solid #E1262D;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
  text-align: center;
  border-radius: 0.25rem;
  position: relative;
  color: #fff;
}
.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 #fff;
  position: absolute;
  top: 49%;
  right: 1.5625rem;
  transform: rotate(45deg) translateY(-50%);
}
.company-info__box {
  margin-top: 5.625rem;
}
.company-info__box p:first-of-type {
  margin-top: 0;
}
.company-info__btn-wrap {
  margin-top: 2.5rem;
}
.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.webp);
  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;
}
.company-info__step-ttl {
  text-align: center;
}
.company-info__step {
  margin-top: 3rem;
}
.company-info__step-wrap {
  overflow: auto;
  margin: 1rem auto 0;
}
.company-info__step-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.company-info__step-imgs img {

}

/* テーブル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: 2px 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: var(--Text);
  color: #fff;
  min-height: 2.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
}
.table-grid-3 .table3__cel p:first-child {
  background-color: #2478EF;
}
.table3__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;
}
.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 #fff;
}
.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;
}
.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, .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: 1.25rem;
  font-weight: bold;
  display: inline-block;
  position: relative;
  max-width: 40rem;
  line-height: 1.5;
}
.cta-btn__message::before,
.cta-btn__message::after {
  position: absolute;
  top: 50%;
  content: "";
  display: inline-block;
  width: 5rem;
  height: 1.875rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.cta-btn__message::before {
  background-image: url(../img/cm_star_left.png.webp);
  left: -1.875rem;
  transform: translate(-100%, -50%);
}
.cta-btn__message::after {
  background-image: url(../img/cm_star_right.png.webp);
  right: -1.875rem;
  transform: translate(100%, -50%);
}
.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_plaid_white.jpg.webp);
  background-size: cover;
  padding: 5rem 0 1.875rem;
}
.conditions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url(../img/ct_bg_blue.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.conditions::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url(../img/ct_bg_blue.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(-270deg);
}
.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: #2478EF;
  margin-right: 0.625rem;
}
.conditions__list dd {
  margin: 0;
  flex: 1;
}
.conditions .adTxt {
  top: auto;
  bottom: 6px;
  right: 12px;
}
.conditions .adTxt span {
  background-color: #fff;
}

/* 検索結果 */
.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;
}

/* 再検索 */
.re-search {
  background-image: url(../img/cm_bg_plaid.jpg.webp);
  background-size: cover;
  padding: 3.75rem 0;
}
.re-search__title {
  font-size: 1.25rem;
  line-height: 1.5;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--Main);
  margin: 0;
}
.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: #ecf2fe;
  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.webp);
  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 {
  background-color: #FDED86;
  font-weight: bold;
}

/* ==========================================================================
fix20220818 
=========================================================================== */
/*マーカー*/
body.fix20220818 span.marker {
  background-color: #FEE670;
  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　追加
=========================================================================== */
body.fix20220818 .check-list li::before,
.check-list li::before {
  margin-right: 1rem;
  position: relative;
  top: 0.2rem;
}
.company-info__tag {
  display: flex;
  margin-top: 0.5rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.company-info__tag li {
  text-align: center;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  width: fit-content;
  gap: 0.5rem;
  background-color: #F5F1F1;
  color: #AAAAAA;
}
.company-info__tag li.on {
  background-color: #FEE670;
  color: #383838;
}
.table3__cel:last-of-type p:first-of-type,
.table3__cel:last-of-type p:last-of-type {
  border-right: none;
}
.table4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  border: 2px solid #383838;
}
.table4__cel.ttl {
  background-color: #183D7A;
  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: #183D7A;
  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, .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;
}


/* ==========================================================================
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: 8px;
}
.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 .table__logo.table__logo--no-rank a {
  padding: 0;
}
.table-result .table__logo {
  text-align: center;
}
.table-result .table__logo img {
  margin-bottom: 10px;
}
.table-result .txt-bold {
  font-weight: initial;
}
.txt-bold {
  font-weight: bold;
}
.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;
}
/* ==========================================================================
20240521 註釈追記
  =========================================================================== */
  .notes {
    max-width: 600px;
    margin: 10px auto 0;
    font-size: 10px;
    color: #939292;
    padding: 0;
    text-align: right;
  }

/* ------------------------------
ステマ対策
  ------------------------------ */
.adTxt {
  text-align: right;
  max-width: 74.375rem;
  /* 横幅 LPに合わせて調整 */
  padding: 0;
  margin: 8px auto;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  z-index: 10;
}
.column .adTxt {
  position: relative;
}
.adTxt span {
  font-size: 18px;
  font-weight: bold;
  border: 1px solid var(--Text);
  /* 枠色 変数名が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/Coin_Guide_header.svg)no-repeat center;
	background-size: 100%;
	top: 0;
	left: 0;
	width: 194px;
	height: 35px;
	background-color: #fff;
	z-index: 100;
  }
  /* ========================================================
20250128 recommend改修
=========================================================*/
.recommend__cta .btn-sub {
  width: 100%;
  margin-top: 10px;
  padding: 15px;
  position: relative;
  font-size: 0.9rem; 
  box-shadow: 0 0.2rem 0 #B11319;
}
.recommend__cta .btn-sub::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;
}
.card.card--rank1 {
  padding-bottom: 1.8125rem;
}
/* 比較表修正 */
.comparison__table.table-wrapper > div > table > tbody > tr:nth-child(2) > td:nth-child(1) {
  height: 110px;
}
.comparison__table .table tr td span.ng-binding {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.table__rank--top>span::before {
  top: -8.5px;
  left: 0px;
}
.table__rank--top>span {
  width: 4rem;
  height: 1.1rem;
}
.table__logo a img {
  height: 26px;
  object-fit: contain;
}
.table__txt-top {
  font-size: 0.9rem;
}
.table__logo a {
  font-size: 0.9rem;
}

/* ========================================================
# 20250130追加　取扱暗号資産
======================================================== */
.coinList * {
  margin: 0;
  padding: 0;
}
.coinList {
  border: 2px solid #000;
}
.coinList__ttl {
  text-align: center;
  background-color: var(--Text);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 16px;
}
.coinList__body {
  display: grid;
  grid-template-columns: auto 1fr;
}
.coinList__numWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-right: 1px solid #000;
}
.coinList__num {
  font-size: 32px;
  font-weight: bold;
}
.coinList__num span {
  font-size: 18px;
}
.coinList__list {
  padding: 10px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px 20px;
}
.coinList__item {
}
.coinList .coinList__img {
  display: block;
}
.coinList__name {
  display: block;
  font-size: 10px;
  text-align: center;
  font-weight: bold;
  margin-top: 2px;
}
/* ========================================================
20250422 当サイト限定キャンペーン情報
======================================================== */
.campaign {
  margin-top: 80px;
}
.campaign .inner {
  max-width: 960px;
  padding: 20px 40px 54px;
  background-color: var(--Back);
  border: 3px solid #105AC5;
  border-radius: 10px;
}
.campaign__ttl-img {
  max-width: 750px;
  margin: 0 auto;
}
.campaign__ttl-wrap {
  display: flex;
  margin-top: 15px;
  border-top: 2px solid var(--Text);
  border-bottom: 2px solid var(--Text);
  background-color: var(--Back);
  min-height: 6.25rem;
}
.campaign__rank {
  width: 14.063rem;
  padding: 34px 15px;
  display: grid;
  place-items: center;
  background-color: #fff;
}
.campaign__ttl {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 1.875rem;
  background-color: var(--Text);
  font-size: 1.875rem;
}
.campaign__ttl a {
  color: #fff;
  transition: 0.3s;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  letter-spacing: normal;
}
.campaign__bnr {
  display: block;
  margin-top: 15px;
  text-decoration: none;
  transition: 0.3s;
}
.campaign__table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin-top: 15px;
  border: 2px solid var(--Text);
}
.campaign__table th {
  width: 20%;
  padding: 10px;
  background-color: var(--Text);
  color: #fff;
  font-size: 16px;
  border-right: 1px solid #fff;
}
.campaign__table td {
  background-color: #fff;
  padding: 6px 0px;
  font-size: 16px;
  font-weight: bold;
  border-right: 1px solid var(--Text);
}
.campaign__table img {
  display: block;
  margin: 5px auto 0;
  width: 30px;
  height: 30px;
}
.campaign__btn-wrap {
  margin-top: 2.5rem;
}
body > div.campaign > div > div.campaign__btn-wrap.cta-btn > span {
  font-weight: bold;
}


/* ========================================================
20251125 PR枠
======================================================== */
.pr.wrapper{
  background-color: var(--Back);
  padding: 45px 0;
}
.pr .inner{
  max-width: 960px;
  padding: 30px 43px 54px;
  box-sizing: border-box;
  border-radius: 16px;
  background-color: #fff;
  border:1px solid #105AC5;
}
.pr__ttl-wrap {
    display: flex;
    margin-top: 15px;
    border-top: 2px solid var(--Text);
    border-bottom: 2px solid var(--Text);
    background-color: #105AC5;
    min-height: 6.25rem;
}
.pr__rank {
    width: 14.063rem;
    padding: 34px 15px;
    display: grid;
    place-items: center;
    background-color: #fff;
}
.pr__ttl {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 1.875rem;
    background-color: #105AC5;
    font-size: 1.875rem;
}
.pr__ttl:after{
    position: relative;
    top: 9px;
    left: 4px;
    transform: rotate(45deg) translateY(-50%);
    content: "";
    width: 1.100rem;
    height: 1.100rem;
    border-top: 4px solid #fff;
    border-right: 4px solid #FFF;
}
.pr__ttl a{
  color: #fff;
  text-decoration: underline;
}
.pr__ttl a:hover{
  text-decoration: none;
}
.pr__bnr {
    display: block;
    margin-top: 15px;
    text-decoration: none;
    transition: 0.3s;
    margin-bottom:15px;
}
.pr__note{
  color:#939292;
  font-size:10px;
  text-align: right;
  margin:10px auto 0;
}
