@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  color: #333333;
}

/* -------------------------------------------- */
/* --------------- Noto Sans JP --------------- */
/* -------------------------------------------- */
/* -------------------------------------------- */
/* ------------------ Inter ------------------- */
/* -------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 600px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 600px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

/* pc幅での電話発信しない */
@media (any-hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
summary {
  display: block;
}

/* Safariで表示されるデフォルトの三角形アイコンを消します */
summary::-webkit-details-marker {
  display: none;
}

.button:hover {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 600px) {
  html {
    font-size: 2.2222222222vw;
  }
}
@media (min-width: 720px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  margin-inline: auto;
  max-width: 720px;
}

.footer__inner {
  background-color: #003085;
  padding: 2.5rem 1.25rem;
}

.footer__list {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  text-align: center;
}

.footer__item {
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.footer__link {
  color: #FFFFFF;
}

.footer__copy {
  margin-top: 2.5rem;
  color: #FFFFFF;
  line-height: 1.2142857143;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: center;
}

.fv__image {
  aspect-ratio: 720/517;
}

.fv__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.ranking-card {
  margin-top: 1.5rem;
  background-color: #EBF1FC;
  padding-bottom: 2rem;
}
@media screen and (min-width: 600px) {
  .ranking-card {
    padding-bottom: 4.6875rem;
  }
}

.ranking-card__inner {
  padding-left: 2rem;
}

.ranking-card__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  width: 100%;
  overflow-x: scroll;
  padding-top: 3.75rem;
}
.ranking-card__item {
  width: 48%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #FFFFFF;
  border: 1px solid #1756C6;
  border-radius: 1.375rem;
  padding: 2.5rem 1.5rem;
  position: relative;
}
@media screen and (min-width: 600px) {
  .ranking-card__item {
    max-width: 20.875rem;
    width: 100%;
  }
}

.ranking-card__item:nth-of-type(2) {
  padding-bottom: 0.5625rem;
}

.ranking-card__badge {
  position: absolute;
  top: -3.125rem;
  left: 50%;
  max-width: 5.375rem;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 600px) {
  .ranking-card__badge {
    max-width: 6.125rem;
  }
}

.ranking-card__crown {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.ranking-card__logo {
  max-width: 14.25rem;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 228/75;
  position: relative;
}

.ranking-card__logo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.ranking-card__image {
  display: block;
  margin-top: 1.0625rem;
  aspect-ratio: 292/144;
}

.ranking-card__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.ranking-card__text {
  margin-top: 1.0625rem;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  color: #003085;
}
@media screen and (min-width: 600px) {
  .ranking-card__text {
    font-size: 1.375rem;
  }
}

.ranking-card__highlight {
  color: #D64747;
}

.ranking-card__button {
  display: block;
  margin-top: 1.0625rem;
  text-align: center;
  padding-block: 1.125rem;
  border-radius: 3.125rem;
  color: #FFFFFF;
  line-height: 1.2;
  font-size: 1rem;
  background-color: #D64747;
  -webkit-box-shadow: 0 3px 0 #B32719;
          box-shadow: 0 3px 0 #B32719;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (min-width: 600px) {
  .ranking-card__button {
    font-size: 1.25rem;
  }
}

.ranking-card__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  width: 0.625rem;
  height: 0.625rem;
  border-top: 3px solid #FFFFFF;
  border-right: 3px solid #FFFFFF;
}
@media screen and (min-width: 600px) {
  .ranking-card__button::after {
    right: 4.375rem;
  }
}

.ranking-card__notice {
  margin-top: 0.6875rem;
  font-size: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: center;
}

.comparison {
  margin-top: 1.5rem;
}
@media screen and (min-width: 600px) {
  .comparison {
    margin-top: 3rem;
  }
}

.comparison__inner {
  padding-top: 3.625rem;
  margin-inline: 1.1875rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.comparison__list {
  border-collapse: collapse;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 7.5rem (1fr)[5];
  grid-template-columns: 7.5rem repeat(5, 1fr);
  max-width: 42.5rem;
  min-width: 42.5rem;
  width: 100%;
  margin-inline: auto;
}

.comparison__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-row-span: 10;
  grid-row: span 10;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
}

.comparison__item--head {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 1;
}

.comparison__item--head::before {
  content: "";
  position: absolute;
  top: -2.3125rem;
  left: -1px;
  width: 100%;
  height: 2.0625rem;
  background-color: #FFFFFF;
}

.comparison__cell {
  background-color: #FFFFFF;
  border-right: 1px solid #888;
  border-top: 1px solid #888;
  color: #1756C6;
  font-size: 1rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comparison__cell:last-of-type {
  border-bottom: 1px solid #888;
}

.comparison__cell--head {
  background-color: #1756C6;
  color: #FFFFFF;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-left: 1px solid #888;
  padding-block: 0.875rem;
}

.comparison__cell--head:nth-of-type(3) {
  padding-block: 1.1875rem;
}

.comparison__cell--head:last-of-type {
  border-bottom: 1px solid #888;
}

.comparison__item--rank {
  position: relative;
}

.comparison__item--rank::after {
  content: "";
  position: absolute;
  height: 2rem;
  left: 50%;
  top: -2.375rem;
  width: 2.4375rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.comparison__item--rank1 {
  border: 2px solid #D64747;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.comparison__item--rank1 .comparison__cell {
  background-color: #EBF1FC;
}

.comparison__item--rank1::after {
  background-image: url(../image/icon/rank1.svg);
}

.comparison__item--rank2::after {
  background-image: url(../image/icon/rank2.svg);
}

.comparison__item--rank3::after {
  background-image: url(../image/icon/rank3.svg);
}

.comparison__item--rank4::after {
  background-image: url(../image/icon/rank4.svg);
}

.comparison__item--rank5::after {
  background-image: url(../image/icon/rank5.svg);
}

.comparison__link {
  border-top: 1px solid #888;
  border-right: 1px solid #888;
  background-color: #EBF1FC;
  color: #4285FE;
  text-align: center;
  text-decoration: underline;
}

.comparison__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
  padding: 1.8125rem 0.25rem 0.5625rem;
}

.comparison__logo {
  height: 2.0625rem;
}

.comparison__logo img {
  height: 100%;
}

.comparison__name {
  font-size: 0.875rem;
  line-height: 1;
}

.comparison__button {
  display: block;
  text-align: center;
  padding-block: 0.25rem;
  border-radius: 3.125rem;
  color: #FFFFFF;
  line-height: 1.2142857143;
  font-size: 0.875rem;
  background-color: #D64747;
  -webkit-box-shadow: 0 3px 0 #B32719;
          box-shadow: 0 3px 0 #B32719;
  position: relative;
  max-width: 5.125rem;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (min-width: 600px) {
  .comparison__button {
    max-width: 5.5rem;
  }
}

.comparison__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  width: 0.625rem;
  height: 0.625rem;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
}

.section__title {
  color: #003085;
  text-align: center;
  font-size: 1rem;
  line-height: 1.2;
  border: 1px solid #003085;
  -webkit-box-shadow: 6px 6px 0 #003085;
          box-shadow: 6px 6px 0 #003085;
  padding-block: 1rem;
  position: relative;
}
@media screen and (min-width: 600px) {
  .section__title {
    font-size: 2.25rem;
  }
}

.section__title::before,
.section__title::after {
  content: "";
  position: absolute;
  background-image: url(../image/icon/line.svg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 3.375rem;
  height: 8px;
  top: 50%;
}

.section__title::before {
  left: 18%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.section__title::after {
  right: 18%;
  top: 46%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.section__title.section__title--crypto-start {
  padding-block: 1.25rem;
}
@media screen and (min-width: 600px) {
  .section__title.section__title--crypto-start {
    padding-block: 2.3125rem;
  }
}

.section__title.section__title--crypto-start::before {
  left: 12%;
}

.section__title.section__title--crypto-start::after {
  right: 12%;
}

.btc-info {
  margin-top: 2.125rem;
}

.btc-info__inner {
  margin-inline: 1rem;
}

.btc-info__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3125rem;
  border-bottom: 1px solid #0089A9;
}

.btc-info__label {
  color: #FFFFFF;
  font-size: 1.875rem;
  line-height: 5.25rem;
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0 5px;
  width: 5.25rem;
  height: 5.25rem;
  text-align: center;
  background: #D64747;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btc-info__label:before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #D64747;
  z-index: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btc-info__title {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.1875;
}
@media screen and (min-width: 600px) {
  .btc-info__title {
    font-size: 2rem;
  }
}

.btc-info__text {
  margin-top: 1rem;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 600px) {
  .btc-info__text {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.btc-info__highlight {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #D64747;
}

.btc-info__chart {
  aspect-ratio: 688/443;
  max-width: 43rem;
  width: 100%;
  margin-top: 0.0625rem;
}

.btc-info__chart img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.btc-info__chart-caption {
  text-align: right;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #A5A5A5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-top: 0.875rem;
}

.crypto-start {
  margin-top: 2.125rem;
}

.crypto-start__provider {
  margin-inline: 1rem;
}
@media screen and (min-width: 600px) {
  .crypto-start__provider {
    margin-top: 2rem;
  }
}

.crypto-start__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #003085;
}
@media screen and (min-width: 600px) {
  .crypto-start__wrapper {
    padding-bottom: 0.75rem;
  }
}

.crypto-start__logo {
  max-width: 13.75rem;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .crypto-start__logo {
    max-width: 15.875rem;
    aspect-ratio: 254/48;
  }
}

.crypto-start__logo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.crypto-start__wrapper span {
  font-size: 1.5rem;
}
@media screen and (min-width: 600px) {
  .crypto-start__wrapper span {
    font-size: 2rem;
    line-height: 1.1875;
  }
}

.crypto-start__note {
  margin-top: 0.875rem;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 600px) {
  .crypto-start__note {
    font-size: 1.5rem;
  }
}

.crypto-start__sub {
  font-size: 0.75rem;
}

.crypto-start__steps-wrapper {
  overflow-x: scroll;
  background-color: #EBF1FC;
  margin-top: 0.875rem;
  padding-block: 0.875rem 1.875rem;
  padding-left: 1.125rem;
}

.crypto-start__steps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 46% 1.5rem 46% 1.5rem 46%;
  grid-template-columns: repeat(3, 46%);
  gap: 1.5rem;
}
@media screen and (min-width: 600px) {
  .crypto-start__steps {
    -ms-grid-columns: (20.9375rem)[3];
    grid-template-columns: repeat(3, 20.9375rem);
  }
}

.crypto-start__step {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 4;
  grid-row: span 4;
  background-color: #FFFFFF;
  border: 1px solid #1756C6;
  border-radius: 1.375rem;
  padding: 1.25rem 1rem;
  gap: 0.625rem;
}
@media screen and (min-width: 600px) {
  .crypto-start__step {
    gap: initial;
  }
}

.crypto-start__step-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3125rem;
}

.crypto-start__step-balloon {
  color: #FFFFFF;
  position: relative;
  display: inline-block;
  padding: 0 5px;
  width: 2.25rem;
  height: 2.25rem;
  text-align: center;
  background: #1756C6;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.crypto-start__step-balloon:before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  border: 4px solid transparent;
  border-left: 4px solid #1756C6;
  z-index: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.crypto-start__step-en {
  font-size: 0.3125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 0.3125rem;
}

.crypto-start__step-number {
  font-size: 1.1875rem;
  line-height: 0.7;
}

.crypto-start__step-title {
  font-size: 1.375rem;
  line-height: 1.1875;
  color: #1756C6;
}
@media screen and (min-width: 600px) {
  .crypto-start__step-title {
    font-size: 2rem;
  }
}

.crypto-start__step-img {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 194/145;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .crypto-start__step-img {
    max-width: 12.125rem;
  }
}

.crypto-start__step-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.crypto-start__step-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
}
@media screen and (min-width: 600px) {
  .crypto-start__step-text {
    font-size: 1.125rem;
  }
}

.crypto-start__notice {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 1.4;
}

.service {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  background-color: #EBF1FC;
}

.service__list {
  padding-block: 2rem 2.5rem;
  padding-inline: 1rem;
  display: -ms-grid;
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 600px) {
  .service__list {
    padding-inline: 1.5625rem;
  }
}

.service__item {
  background-color: #FFFFFF;
  border: 2px solid #1756C6;
  border-radius: 1rem;
  padding-inline: 1rem;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 600px) {
  .service__item {
    padding-inline: 1.625rem;
  }
}

.service__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-block: 1rem 1.5rem;
}

.service__rank {
  max-width: 4.5625rem;
  width: 100%;
  aspect-ratio: 1/1;
}

.service__rank img {
  height: 100%;
}

.service__title {
  font-size: 1.625rem;
  line-height: 1.2;
}
@media screen and (min-width: 600px) {
  .service__title {
    font-size: 2.5rem;
  }
}

.service__title a {
  color: #003085;
  text-decoration: underline;
}

.service__image {
  aspect-ratio: 618/311;
}

.service__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.service__highlight {
  margin-top: 1.5rem;
  background-color: #EBF1FC;
  padding-block: 0.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.0625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service__highlight-text {
  font-size: 0.875rem;
  line-height: 1.2083333333;
  color: #003085;
}
@media screen and (min-width: 600px) {
  .service__highlight-text {
    font-size: 1.5rem;
  }
}

.service__button {
  display: block;
  text-align: center;
  padding-block: 1rem;
  border-radius: 3.125rem;
  color: #FFFFFF;
  line-height: 1.2;
  font-size: 1rem;
  background-color: #D64747;
  -webkit-box-shadow: 0 3px 0 #B32719;
          box-shadow: 0 3px 0 #B32719;
  position: relative;
  width: 8.75rem;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (min-width: 600px) {
  .service__button {
    width: 14.25rem;
    font-size: 1.25rem;
    padding-block: 1.125rem;
  }
}

.service__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  width: 0.625rem;
  height: 0.625rem;
  border-top: 3px solid #FFFFFF;
  border-right: 3px solid #FFFFFF;
}
@media screen and (min-width: 600px) {
  .service__button::after {
    right: 1.5625rem;
  }
}

.service__coin {
  margin-top: 1.5rem;
}

.service__coin-title {
  background-color: #1756C6;
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1.1875;
  text-align: center;
  padding-block: 0.8125rem;
}
@media screen and (min-width: 600px) {
  .service__coin-title {
    font-size: 2rem;
  }
}

.service__coin-list {
  background-color: #EBF1FC;
  border-inline: 2px solid #1756C6;
  border-bottom: 2px solid #1756C6;
  padding-block: 1.0625rem 1.5rem;
  padding-inline: 1.8125rem;
}

.service__coin-list.service__coin-list--minnanocoin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}

.service__coin-list.service__coin-list--minnanocoin .service__coin-item {
  width: 2.8125rem;
}

.service__coin-item-wrapper {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  -ms-grid-columns: 1fr 0.5rem 1fr 0.5rem 1fr 0.5rem 1fr 0.5rem 1fr 0.5rem 1fr 0.5rem 1fr 0.5rem 1fr;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.5rem;
}
@media screen and (min-width: 600px) {
  .service__coin-item-wrapper {
    -ms-grid-columns: (1fr)[10];
    grid-template-columns: repeat(10, 1fr);
  }
}

.service__coin-name {
  display: block;
  font-size: 0.375rem;
  color: #003085;
  line-height: 1.1666666667;
  text-align: center;
}

.service__coin-heads {
  margin-top: 1.0625rem;
}

.service__coin-head {
  max-width: 14.25rem;
  width: 100%;
  margin-inline: auto;
  background-color: #FFFFFF;
  border: 1px solid #1756C6;
  border-radius: 3.125rem;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #1756C6;
  padding-block: 0.5rem;
}

.service__coin-heads[open] .service__coin-head {
  display: none;
}

.service__features {
  margin-top: 1.5rem;
}

.service__features-header {
  background-color: #1756C6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service__features-icon {
  max-width: 4.875rem;
  width: 100%;
  aspect-ratio: 78/59;
}

.service__features-icon img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.service__features-title {
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1.1875;
}
@media screen and (min-width: 600px) {
  .service__features-title {
    font-size: 2rem;
  }
}

.service__features-list {
  border-inline: 4px solid #1756C6;
  border-bottom: 4px solid #1756C6;
  padding-block: 1rem;
  padding-left: 2.1875rem;
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 600px) {
  .service__features-list {
    padding-left: 3.625rem;
  }
}

.service__feature {
  font-size: 1rem;
  line-height: 1.1875;
  color: #003085;
  position: relative;
}
@media screen and (min-width: 600px) {
  .service__feature {
    font-size: 2rem;
  }
}

.service__feature-highlight {
  margin-top: 0.625rem;
  font-size: 0.6875rem;
  line-height: 1.2;
  color: #333333;
  display: block;
}
@media screen and (min-width: 600px) {
  .service__feature-highlight {
    font-size: 1.1875rem;
  }
}

.service__feature::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/vector.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1.125rem;
  height: 1.125rem;
  top: 0.5rem;
  left: -1.6875rem;
}
@media screen and (min-width: 600px) {
  .service__feature::before {
    left: -1.9375rem;
  }
}

.service__footer {
  margin-top: 1.5rem;
}

.service__cta {
  display: block;
  text-align: center;
  padding-block: 1rem;
  border-radius: 3.125rem;
  color: #FFFFFF;
  font-size: 1.375rem;
  line-height: 1.2142857143;
  background-color: #D64747;
  -webkit-box-shadow: 0 3px 0 #B32719;
          box-shadow: 0 3px 0 #B32719;
  position: relative;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (min-width: 600px) {
  .service__cta {
    font-size: 1.75rem;
  }
}

.service__cta::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.125rem;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  width: 0.625rem;
  height: 0.625rem;
  border-top: 3px solid #FFFFFF;
  border-right: 3px solid #FFFFFF;
}
@media screen and (min-width: 600px) {
  .service__cta::after {
    right: 4.9375rem;
  }
}

.service__feature-sub {
  font-size: 0.875rem;
}

.search-box {
  background-color: #1756C6;
  padding: 1rem 1.375rem 1.25rem 1.1875rem;
}

.search-box__title {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.2142857143;
  text-align: center;
}

.search-box__highlight {
  font-size: 2rem;
  line-height: 1.1875;
}

.search-box__highlight-yellow {
  color: #FFF372;
}

.search-box__search {
  margin-top: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFFFFF;
}

.search-box__label {
  padding-left: 1.25rem;
}

.search-box__input {
  border: none;
  height: 3.0625rem;
  outline: none;
  padding-inline: 0.625rem;
  width: 100%;
}

.search-box__filters {
  margin-top: 0.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6875rem;
  overflow-x: scroll;
  white-space: nowrap;
  scrollbar-width: none;
}

.search-box__select {
  background-color: #FFFFFF;
  color: #696969;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../image/icon/toggle.svg);
  background-size: 10px 10px;
  background-position: right 6px center;
  background-repeat: no-repeat;
  padding-block: 0.25rem;
  padding-inline: 0.4375rem 1.1875rem;
}

.search-box__result {
  margin-top: 1.125rem;
  color: #FFFFFF;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.search-box__count {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.2666666667;
  margin-right: 0.375rem;
}

.recommend {
  margin-block: 1.5rem;
  margin-inline: 1rem;
}
@media screen and (min-width: 600px) {
  .recommend {
    margin-inline: 1.5rem;
  }
}

.recommend__inner {
  background-color: #EBF1FC;
  padding-inline: 1rem;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 600px) {
  .recommend__inner {
    padding-inline: 1.25rem;
  }
}

.recommend__lead {
  text-align: center;
}

.recommend__lead-text {
  color: #FFFFFF;
  background-color: #1756C6;
  border-radius: 4.25rem;
  padding-block: 1rem;
  padding-inline: 2.9375rem 2.1875rem;
  font-size: 0.875rem;
  line-height: 1.2083333333;
  display: inline-block;
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 600px) {
  .recommend__lead-text {
    font-size: 1.5rem;
  }
}

.recommend__lead-text::before {
  content: "";
  position: absolute;
  top: 94%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #1756C6;
}

.recommend__lead-rank {
  margin-top: 0.625rem;
  font-size: 1.6875rem;
  line-height: 1.1875;
  color: #003085;
}
@media screen and (min-width: 600px) {
  .recommend__lead-rank {
    font-size: 2rem;
  }
}

.recommend__lead-rank-emphasis {
  color: #D64747;
}

.recommend__title {
  margin-top: 0.5rem;
  background-image: url(../image/img/recommend_bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 1.9375rem 2.375rem;
}

.recommend__title-logo {
  max-width: 12.5rem;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 242/54;
}
@media screen and (min-width: 600px) {
  .recommend__title-logo {
    max-width: 15.125rem;
  }
}

.recommend__title-logo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.recommend__title-copy {
  margin-inline: 1.25rem;
  margin-top: 0.8125rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #003085;
}
@media screen and (min-width: 600px) {
  .recommend__title-copy {
    font-size: 1.875rem;
  }
}

.recommend__banner {
  margin-top: 1.3125rem;
  margin-inline: auto;
  width: 70%;
  aspect-ratio: 376/282;
  display: block;
}
@media screen and (min-width: 600px) {
  .recommend__banner {
    max-width: 23.5rem;
    width: 100%;
  }
}

.recommend__banner img {
  height: 100%;
}

.recommend__wrapper {
  padding-inline: 0.375rem;
  background-color: #FFFFFF;
  margin-top: 0.75rem;
}

.recommend__features-list {
  border-top: 4px solid #1756C6;
}

.recommend__fees {
  margin-top: 1.5rem;
}

.recommend__list {
  border-collapse: collapse;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (auto)[2];
  grid-template-rows: repeat(2, auto);
}

.recommend__list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.recommend__list > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.recommend__list > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.recommend__list > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}

.recommend__list > *:nth-child(5) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}

.recommend__list > *:nth-child(6) {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
}
.recommend__fees-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  text-align: center;
  border: 1px solid #CCCCCC;
}

.recommend__fee {
  border: 1px solid #CCCCCC;
  text-align: center;
}

.recommend__fee-title {
  border-bottom: 1px solid #CCCCCC;
  background-color: #1756C6;
  color: #FFFFFF;
  font-size: 0.6875rem;
  line-height: 1.2;
  padding-block: 0.75rem;
}
@media screen and (min-width: 600px) {
  .recommend__fee-title {
    font-size: 1.25rem;
  }
}

.recommend__fee-price {
  color: #D64747;
  font-size: 1.5rem;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding-block: 0.75rem;
}
@media screen and (min-width: 600px) {
  .recommend__fee-price {
    font-size: 2.5rem;
  }
}

.recommend__note {
  font-size: 0.75rem;
  line-height: 1.1666666667;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.recommend__cta {
  margin-top: 3.4375rem;
  text-align: center;
}

.recommend__cta-text {
  font-size: 1.25rem;
  line-height: 1.2083333333;
  position: relative;
  display: inline-block;
  padding-inline: 0.625rem;
}
@media screen and (min-width: 600px) {
  .recommend__cta-text {
    font-size: 1.5rem;
  }
}

.recommend__cta-text:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 3px;
  height: 100%;
  background: #333333;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

.recommend__cta-text:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: black;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

.recommend__cta-button {
  display: block;
  text-align: center;
  padding-block: 1rem;
  border-radius: 3.125rem;
  color: #FFFFFF;
  font-size: 1.375rem;
  line-height: 1.2142857143;
  background-color: #D64747;
  -webkit-box-shadow: 0 3px 0 #B32719;
          box-shadow: 0 3px 0 #B32719;
  position: relative;
  width: 100%;
  margin-top: 0.5rem;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (min-width: 600px) {
  .recommend__cta-button {
    font-size: 1.75rem;
  }
}

.recommend__cta-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  width: 0.625rem;
  height: 0.625rem;
  border-top: 3px solid #FFFFFF;
  border-right: 3px solid #FFFFFF;
}
@media screen and (min-width: 600px) {
  .recommend__cta-button::after {
    right: 4.9375rem;
  }
}

.c-lower__inner {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 1.875rem 1.5rem;
}

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

.c-lower__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 3.75rem;
}

.c-lower__title {
  border-bottom: 1px solid #D9D9D9;
  color: #054D79;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  padding: 1rem 0;
}

.c-lower__content {
  margin-bottom: 0.625rem;
  padding: 1rem 0;
}

.c-lower__box {
  border: 1px solid #F2FAFF;
}

.c-lower__box-item {
  border-bottom: 1px solid #F2FAFF;
  padding: 0.5rem 1rem;
}

.c-lower__box-item:last-of-type {
  border-bottom: none;
}

.c-lower__box-item-title {
  color: #0774B5;
  display: block;
  font-size: 0.625rem;
  line-height: 100%;
  margin-bottom: 0.25rem;
}

.c-lower__text {
  font-size: 0.875rem;
  line-height: 150%;
}

.c-lower__text-link {
  text-decoration: underline;
}

.c-lower__text-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.c-lower__subtitle {
  color: #054D79;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.c-lower__table {
  border-collapse: collapse;
  margin-bottom: 5.625rem;
  overflow-x: auto;
  width: 100%;
}

.c-lower__table table {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.c-lower__table-head:nth-of-type(1),
.c-lower__table-desc:nth-of-type(1) {
  max-width: 8.875rem;
}

.c-lower__table-head:nth-of-type(2),
.c-lower__table-desc:nth-of-type(2) {
  max-width: 9.75rem;
}

.c-lower__table-head:nth-of-type(3),
.c-lower__table-desc:nth-of-type(3) {
  max-width: 15.3125rem;
}

.c-lower__table-head:nth-of-type(4),
.c-lower__table-desc:nth-of-type(4) {
  max-width: 8rem;
}

.c-lower__table-head {
  background-color: #F2FAFF;
  border: 1px solid #F2FAFF;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 150%;
  padding: 0.625rem;
}

.c-lower__table-desc {
  border: 1px solid #F2FAFF;
  font-size: 0.875rem;
  line-height: 150%;
  padding: 0.625rem 0.75rem;
  vertical-align: middle;
}

.c-lower__dot {
  padding-left: 0.9375rem;
  position: relative;
}

.c-lower__dot::before {
  content: "・";
  left: 0;
  position: absolute;
  top: 0;
}
/*# sourceMappingURL=styles.css.map */