@charset "utf-8";
/* guide_common.css
++++++++++++++++++++++++++++++++++++++++
* NOTE
++++++++++++++++++++++++++++++++++++++++
- Charset: utf-8
- Return code: LF
++++++++++++++++++++++++++++++++++++++++ */

/* 株式取引手数料比較テーブル
++++++++++++++++++++++++++++++++++++++++ */
.guide-compare_table {
  --base-lts: var(--value-lts-normal);

  display: block;
  margin: 24px auto 0;
  padding: 0;
  text-align: center;
  line-height: 1.2;
  word-break: keep-all;
  letter-spacing: var(--base-lts);
  text-indent: var(--base-lts);
}
.guide-compare_table > table {
  min-width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  table-layout: fixed;
  background: var(--color-white);
}
.guide-compare_table th,
.guide-compare_table td {
  padding: 8px;
  border: solid var(--color-gray-secondary);
  border-width: 1px 1px 0 0;
  vertical-align: middle;
}
.guide-compare_table th {
  background-color: var(--color-gray-primary);
  font-weight: var(--value-fw-normal, normal);
}
.guide-compare_table th:first-child,
.guide-compare_table td:first-child {
  border-left-width: 1px;
}
.guide-compare_table tbody > tr:where(:last-child) > th,
.guide-compare_table tbody > tr:where(:last-child) > td {
  border-bottom-width: 1px;
}
.guide-compare_table thead:where(:first-of-type) > tr:where(:first-child) > th:where(:first-child) {
  border-top-left-radius: 8px;
}
.guide-compare_table thead:where(:first-of-type) > tr:where(:first-child) > th:where(:last-child) {
  border-top-right-radius: 8px;
}
.guide-compare_table tbody:where(:last-of-type) > tr:where(:last-child) > th:where(:first-child) {
  border-bottom-left-radius: 8px;
}
.guide-compare_table tbody:where(:last-of-type) > tr:where(:last-child) > td:where(:last-child) {
  border-bottom-right-radius: 8px;
}

@media (max-width: 767.98px) {
  .guide-compare_table th,
  .guide-compare_table td {
    height: 56px;
  }
  .guide-compare_table thead th {
    padding-inline: 8px;
  }
}
@media (min-width: 768px) {
  .guide-compare_table th,
  .guide-compare_table td {
    height: 64px;
  }
  .guide-compare_table thead th {
    padding-inline: 12px;
  }
}
/* SP scroll full */
@media (max-width: 767.98px) {
  .guide-compare_table.-scrollfull-sp {
    display: flex;
    min-width: 100%;
    margin-left: -16px;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    word-break: keep-all;
  }
  .guide-compare_table.-scrollfull-sp  > table {
    min-width: calc(100% - 16px);
    margin-left: 16px;
  }
}
/**/
.guide-compare_table thead th b {
  font-weight: var(--value-fw-normal);
}
.guide-compare_table thead th small {
	font-size: clamp(1.2rem, calc(12/360 * 100vw), 1.6rem);
}
/* value */
.guide-compare_table ._value {
  position: relative;
  display: inline-block;
}
.guide-compare_table ._value b {
  font-weight: var(--value-fw-normal);
}
.guide-compare_table ._value > sup {
  position: absolute;
  top: 0;
  left: 100%;
  display: block;
  margin-left: 0.025em;
  color: var(--color-gray-quaternary);
}
/* stand out */
.guide-compare_table ._standout {
  color: var(--guide-compare_table-standout-c, inherit);
}
.guide-compare_table ._standout th,
.guide-compare_table ._standout td {
  border-top-width: 2px;
  border-bottom-width: 2px;
  border-top-color: var(--guide-compare_table-standout-bdc, var(--color-gray-secondary));
  border-bottom-color: var(--guide-compare_table-standout-bdc, var(--color-gray-secondary));
}
.guide-compare_table ._standout th:first-child {
  border-left-width: 2px;
  border-left-color: var(--guide-compare_table-standout-bdc, var(--color-gray-secondary));
}
.guide-compare_table ._standout td:last-child {
  border-right-width: 2px;
  border-right-color: var(--guide-compare_table-standout-bdc, var(--color-gray-secondary));
}
.guide-compare_table ._standout th {
  background-color: var(--guide-compare_table-standout-bgc, var(--color-gray-primary));
  font-weight: var(--value-fw-bold, bold);
}
.guide-compare_table ._standout td {
  background-color: var(--guide-compare_table-standout-bgc, var(--color-white));
}
.guide-compare_table ._standout ._value {
  display: flex;
  align-items: end;
  width: fit-content;
  margin: 0 auto;
  font-weight: var(--value-fw-bold);
  line-height: 1;
}
.guide-compare_table ._standout ._value b {
  transform: translateY(3px);
  font-size: 2.4rem;
  line-height: 1.1;
  font-weight: inherit;
}
.guide-compare_table ._standout ._value b.-lg {
  font-size: 3.2rem;
  line-height: 0.9;
}
.guide-compare_table ._standout ._value small {
  font-size: 2rem;
  margin-left: 8px;
}
@media (max-width: 767.98px) {
  .guide-compare_table ._standout td {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .guide-compare_table ._standout th {
    font-size: 1.8rem;
  }
}
/* modifier kabu */
.guide-compare_table.-kabu {
  --guide-compare_table-standout-c: var(--color-service-kabu);
  --guide-compare_table-standout-bdc: currentColor;
  --guide-compare_table-standout-bgc: #e9f1f9;
}
/* modifier vip */
.guide-compare_table.-vip {
  --guide-compare_table-standout-c: var(--color-illustration-yellow);
  --guide-compare_table-standout-bdc: var(--color-illustration-yellow);
  --guide-compare_table-standout-bgc: #fffef7;
}
.guide-compare_table.-vip ._standout th {
  color: var(--color-rich-black);
}

/* annotation */
.guide-compare_annotation {
  display: block;
  margin: 16px auto 0;
  color: var(--color-gray-quaternary);
  font-size: 1.2rem;
}
.guide-compare_annotation .date {
  display: block;
}
.guide-compare_annotation .date::before {
  content: "※";
}


/* tool app
++++++++++++++++++++++++++++++++++++++++ */
.guide-tool_app {
  display: grid;
  overflow: hidden;
  max-width: 712px;
  margin: 24px auto;
  padding: 0;
}
.guide-tool_app > ._logo {
  align-self: end;
  max-width: calc(292px + 32px);
  width: clamp(240px, calc(240/360 * 100vw), 290px);
  margin: 0 auto;
  padding: 0;
}

.guide-tool_app > figure {
  position: relative;
  display: block;
  max-width: 332px;
  margin: 0 auto;
  padding: 0;
}
.guide-tool_app > figure::before {
  position: absolute;
  top: 0;
  aspect-ratio: 678/810;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  content: "";
}
.guide-tool_app > figure.-kabu::before {
  background-image: url(/assets/images/mock/kabu-mockup-screen-bg@2x.webp);
}

.guide-tool_app > figure ._movie {
  position: absolute;
  top: 0;
}

.guide-tool_app > ul {
  align-self: start;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 16px auto 0;
  padding: 0;
  list-style: none;
  font-feature-settings: "halt";
  --base-lts: var(--value-lts-normal)
}
.guide-tool_app > ul > li {
  margin: 0;
}
.guide-tool_app > ul .m-icon_square.-check {
  --icon-width: 2.2rem;
  padding-left: 34px;
}
.guide-tool_app > ul .m-icon_square.-check::before {
  top: 3px;
}

@media (max-width: 767.98px) {
  .guide-tool_app {
    grid-template-columns: 1fr;
    margin-inline: -16px;
  }

  .guide-tool_app > figure {
    order: -1;
    width: 100%;
    aspect-ratio: 324/420;
    margin: 0 auto;
  }
  .guide-tool_app > figure::before {
    left: 17%;
    height: 100%;
  }
  .guide-tool_app > figure ._movie {
    left: 50%;
    transform: translateX(-50%);
    width: calc(192/324 * 100%);
  }

  .guide-tool_app > ul {
    width: calc(284/360 * 100vw);
    width: 284px;
  }
}
@media (min-width: 768px) {
  .guide-tool_app {
    grid-template-columns: 1fr minmax(0.34583333%, 340px);
    gap: 0 78px;
    align-content: center;
    align-items: center;
  }

  .guide-tool_app > figure {
    grid-row-end: span 2;
    width: 100%;
    aspect-ratio: 340/416;
    max-width: 340px;
    margin-top: 32px;
  }
  .guide-tool_app > figure::before {
    left: 0;
    right: 0;
    bottom: 0;
  }
  .guide-tool_app > figure ._movie {
    left: 2%;
    width: 55.2%;
  }

  .guide-tool_app > ul {
    max-width: fit-content;
    font-size: 1.6rem;
  }
}


/* wp columg index list
++++++++++++++++++++++++++++++++++++++++ */
.guide-columnlist {
  position: relative;
  display: grid;
  margin: 0;
}
.guide-columnlist > ._card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background-color: #f8f8f8;
}

.guide-columnlist > ._card > a {
  width: 50%;
  color: inherit;
  text-decoration: none;

  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.guide-columnlist > ._card > figure {
  display: block;
  overflow: hidden;
  width: 50%;
  margin: -16px 16px -16px -16px;
}
.guide-columnlist > ._card img {
  width: 100%;
  aspect-ratio: 840 / 492;
  transition: transform .45s ease;
}

@media (hover: hover) {
  .guide-columnlist > ._card:hover {
    background-color: #eaf4f8;
    color: #0067c3;
  }
  .guide-columnlist > ._card:hover img {
    transform: scale(1.1);
  }
}
@media (max-width: 767.98px) {
  .guide-columnlist {
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 24px;
  }
  .guide-columnlist > ._card {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .guide-columnlist > ._card > figure {
    margin-top: -8px;
    margin-bottom: -8px;
  }
}
@media (min-width: 768px) {
  .guide-columnlist {
    gap: 32px;
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
    margin-bottom: 40px;
  }
  .guide-columnlist > ._card > figure {
    width: 50%;
  }
}

