@charset "UTF-8";
/*
	font
*******************************/
/*
	color（Figma variables 準拠）
*******************************/
/*
	radius
*******************************/
/*
	breakpoint
*******************************/
/*
	テキストスタイル
*******************************/
/*
	メディアクエリ
*******************************/
/*
	LP1｜開業1年目のホームページ失敗図鑑
	Figma確定版（node 306:1363=PC / 377:1058=SP）を実装。
	色・タイポ・余白は setting/_variables.scss のデザイントークンに準拠。
*******************************/
/*
	共通パーツ
*******************************/
.container {
  margin-inline: auto;
  width: min(1200px, 100% - 80px);
}
@media screen and (max-width: 768px) {
  .container {
    width: calc(100% - 32px);
  }
}

.section {
  padding-block: 100px;
}
@media screen and (max-width: 768px) {
  .section {
    padding-block: 56px;
  }
}
.section-criteria, .section-compare {
  background: #eef4fb;
}

.u-mark {
  background: #ffe957;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-inline: 0.08em;
}

.u-blue {
  color: #225a9b;
}

.sectionHead {
  margin-bottom: 60px;
}
.sectionHeadEyebrow {
  font-size: 12px;
  font-size: 1.2rem;
  color: #225a9b;
  font-family: "Roboto Mono", ui-monospace, monospace;
  letter-spacing: 0.04em;
}
.sectionHeadTitle {
  font-size: 40px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 12px;
}
.sectionHeadLead {
  font-size: 16px;
  font-size: 1.6rem;
  color: #595650;
  line-height: 1.7;
  margin-top: 16px;
}
.sectionHead-invert .sectionHeadEyebrow {
  color: rgba(255, 255, 255, 0.75);
}
.sectionHead-invert .sectionHeadTitle {
  color: #fff;
}
.sectionHead-invert .sectionHeadLead {
  color: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width: 768px) {
  .sectionHead {
    margin-bottom: 32px;
  }
  .sectionHeadTitle {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  gap: 12px;
  justify-content: center;
  text-align: center;
  transition: background-color 0.15s ease;
}
.btn-cta {
  font-size: 16px;
  font-size: 1.6rem;
  background: #e89a12;
  box-shadow: 0 1px 1px rgba(20, 20, 18, 0.04), 0 8px 14px rgba(20, 20, 18, 0.2);
  color: #fff;
  padding: 16px 28px;
}
.btn-cta:hover {
  background: #cc840a;
}
.btnArrow {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
}

/*
	プロモーション表記バー（最上部・濃色）
*******************************/
.prBar {
  background: #161514;
  padding-block: 8px;
}
.prBarText {
  font-size: 12px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-inline: auto;
  padding-inline: 16px;
  text-align: center;
  width: min(1200px, 100%);
}
@media screen and (max-width: 768px) {
  .prBarText {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: left;
  }
}

/*
	ヘッダー（白地・ロゴ＋ナビ＋CTA）
*******************************/
.siteHeader {
  background: #fff;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
  z-index: 50;
}
.siteHeaderInner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-inline: auto;
  min-height: 70px;
  padding-block: 12px;
  width: min(1200px, 100% - 80px);
}
.siteHeaderBrand {
  border-left: 6px solid #225a9b;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 16px;
}
.siteHeaderBrandTitle {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
.siteHeaderBrandSub {
  font-size: 12px;
  font-size: 1.2rem;
  color: #595650;
}
.siteHeaderMenu {
  align-items: center;
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.siteHeaderCta {
  flex-shrink: 0;
  padding: 8px 20px;
  font-size: 14px;
  font-size: 1.4rem;
}
.siteHeaderToggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .siteHeaderToggle {
    align-items: center;
    background: none;
    border: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 24px;
    justify-content: center;
    margin-left: auto;
    padding: 0;
    width: 28px;
  }
  .siteHeaderToggleBar {
    background: #161514;
    border-radius: 2px;
    height: 2px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    width: 24px;
  }
  .siteHeaderToggle[aria-expanded=true] .siteHeaderToggleBar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .siteHeaderToggle[aria-expanded=true] .siteHeaderToggleBar:nth-child(2) {
    opacity: 0;
  }
  .siteHeaderToggle[aria-expanded=true] .siteHeaderToggleBar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .siteHeaderMenu {
    background: #fff;
    border-bottom: 1px solid #d9d9d9;
    box-shadow: 0 10px 16px -8px rgba(20, 20, 18, 0.2);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    margin-left: 0;
    padding: 8px 24px 24px;
    position: absolute;
    right: 0;
    top: 100%;
  }
  .siteHeaderMenu.is-open {
    display: flex;
  }
  .siteHeaderCta {
    margin-top: 16px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .siteHeaderInner {
    gap: 12px;
    min-height: 70px;
    width: calc(100% - 40px);
  }
  .siteHeaderBrand {
    border-left-width: 4px;
  }
  .siteHeaderMenu {
    padding-inline: 16px;
  }
}

.siteNav {
  display: flex;
  gap: 28px;
}
.siteNavLink {
  font-size: 14px;
  font-size: 1.4rem;
  border-bottom: 3px solid transparent;
  color: #595650;
  padding-bottom: 4px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.siteNavLink:hover {
  border-bottom-color: #225a9b;
  color: #161514;
}
@media screen and (max-width: 1024px) {
  .siteNav {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .siteNavLink {
    border-bottom: 1px solid #d9d9d9;
    padding: 14px 4px;
    width: 100%;
  }
  .siteNavLink:hover {
    border-bottom-color: #d9d9d9;
    color: #225a9b;
  }
}

/*
	ヒーロー
*******************************/
.hero {
  background: #eef4fb;
  border-bottom: 12px solid #225a9b;
  overflow: hidden;
  padding-block: 60px 100px;
}
.heroInner {
  align-items: center;
  column-gap: 80px;
  display: grid;
  grid-template-areas: "heading card" "desc    card" "action  card";
  grid-template-columns: 1fr auto;
  margin-inline: auto;
  row-gap: 40px;
  width: min(1200px, 100% - 80px);
}
.heroHeading {
  font-weight: 700;
  grid-area: heading;
  letter-spacing: -0.01em;
  line-height: 1.33;
}
.heroLead {
  font-size: 56px;
  font-size: 5.6rem;
}
.heroSub {
  font-size: 40px;
  font-size: 4rem;
}
.heroMark {
  font-size: 56px;
  font-size: 5.6rem;
  display: inline-block;
  margin-top: 8px;
}
.heroDesc {
  font-size: 16px;
  font-size: 1.6rem;
  color: #595650;
  grid-area: desc;
  line-height: 1.7;
}
.heroAction {
  grid-area: action;
}
.heroVisual {
  align-self: center;
  grid-area: card;
  position: relative;
  width: 360px;
}
.heroVisual::before, .heroVisual::after {
  background: #eef4fb;
  border: 1px solid #161514;
  border-radius: 12px;
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}
.heroVisual::before {
  transform: translate(44px, -24px) rotate(7deg);
}
.heroVisual::after {
  transform: translate(24px, -14px) rotate(4deg);
}
@media screen and (max-width: 768px) {
  .hero {
    padding-block: 32px 48px;
  }
  .heroInner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    grid-template-areas: none;
    width: calc(100% - 40px);
  }
  .heroVisual {
    width: 100%;
  }
  .heroVisual .zukanCard-feature {
    width: calc(100% - 32px);
  }
  .heroVisual .zukanCardBody {
    gap: 6px;
    padding: 12px 14px 14px;
  }
  .heroVisual .zukanCardCause {
    line-height: 1.5;
  }
  .heroVisual .zukanCardLevel {
    padding-top: 8px;
  }
  .heroVisual::before, .heroVisual::after {
    height: 100%;
    inset: auto;
    left: 0;
    top: 0;
    transform-origin: center bottom;
    width: calc(100% - 32px);
  }
  .heroVisual::before {
    transform: translate(16px, -16px) rotate(2deg);
  }
  .heroVisual::after {
    transform: translate(8px, -8px) rotate(1deg);
  }
  .heroAction .btn {
    width: 100%;
  }
  .heroLead {
    font-size: 40px;
    font-size: 4rem;
  }
  .heroSub {
    font-size: 20px;
    font-size: 2rem;
  }
  .heroMark {
    font-size: 40px;
    font-size: 4rem;
  }
  .heroHeading {
    margin-bottom: 28px;
  }
}

/*
	図鑑カード（ヒーローNo.0／Chapter1のNo.1〜6で共通）
*******************************/
.zukanCard {
  background: #fff;
  border: 1px solid #161514;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(20, 20, 18, 0.04), 0 8px 28px -16px rgba(20, 20, 18, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.zukanCard-feature {
  position: relative;
  z-index: 1;
}
.zukanCardFigure {
  border-bottom: 1px solid #d9d9d9;
  padding: 12px;
  position: relative;
}
.zukanCardFigure img {
  border: 1px solid #161514;
  border-radius: 4px;
  width: 100%;
}
.zukanCardNo {
  font-size: 12px;
  font-size: 1.2rem;
  background: #161514;
  border-radius: 0 12px 0 12px;
  color: #fff;
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-style: italic;
  font-weight: 700;
  padding: 8px 12px;
  position: absolute;
  right: -1px;
  top: -1px;
  z-index: 2;
}
.zukanCardBody {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px 20px;
}
.zukanCardRow {
  align-items: center;
  display: flex;
  gap: 12px;
}
.zukanCardRow-cause {
  align-items: flex-start;
}
.zukanCardLabel {
  font-size: 14px;
  font-size: 1.4rem;
  color: #595650;
  flex-shrink: 0;
  width: 36px;
}
.zukanCardWamei {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
}
.zukanCardGakumei {
  font-size: 12px;
  font-size: 1.2rem;
  color: #161514;
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-style: italic;
}
.zukanCardCause {
  font-size: 14px;
  font-size: 1.4rem;
  color: #161514;
  line-height: 1.71;
}
.zukanCardCause strong {
  font-weight: 700;
}
.zukanCardLevel {
  align-items: center;
  border-top: 1px dashed #d9d9d9;
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
}
.zukanCardLevel .zukanCardLabel {
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "Roboto Mono", ui-monospace, monospace;
  width: auto;
}
.zukanCardDots {
  display: flex;
  gap: 4px;
}
.zukanCardDot {
  background: #d9d9d9;
  border-radius: 999px;
  height: 9px;
  width: 9px;
}
.zukanCardDot.is-on {
  background: #e0341c;
}

/*
	Chapter1：失敗図鑑グリッド
*******************************/
.zukanVol {
  align-items: center;
  color: #595650;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}
.zukanVol::before, .zukanVol::after {
  background: #d9d9d9;
  content: "";
  flex: 1;
  height: 1px;
}
.zukanVol span {
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "Roboto Mono", ui-monospace, monospace;
}
@media screen and (max-width: 768px) {
  .zukanVol {
    display: none;
  }
}

.zukanGrid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .zukanGrid {
    grid-template-columns: 1fr;
  }
}

/*
	Chapter2：3つの視点
*******************************/
.criteriaGrid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .criteriaGrid {
    grid-template-columns: 1fr;
  }
}

.criteriaCard {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(20, 20, 18, 0.04), 0 8px 28px -16px rgba(20, 20, 18, 0.16);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  position: relative;
}
.criteriaCard::before {
  background: #225a9b;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 4px;
}
.criteriaCardTitle {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
}
.criteriaCardText {
  font-size: 15px;
  font-size: 1.5rem;
  color: #595650;
  line-height: 1.8;
  margin-top: 16px;
}
.criteriaCardFoot {
  border-top: 1px dashed #d9d9d9;
  margin-top: 20px;
  padding-top: 16px;
}
.criteriaCardFootLabel {
  font-size: 12px;
  font-size: 1.2rem;
  color: #595650;
  margin-bottom: 8px;
}

.tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 12px;
  font-size: 1.2rem;
  align-items: center;
  background: #fbe6e1;
  border-radius: 999px;
  color: #e0341c;
  display: inline-flex;
  font-weight: 700;
  gap: 4px;
  padding: 4px 12px;
}
.tagNo {
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-style: italic;
}

.calloutBox {
  background: #e5eff9;
  border: 1.5px solid #225a9b;
  border-radius: 12px;
  margin-top: 40px;
  padding: 32px 40px;
}
.calloutBoxLead {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.calloutBoxText {
  font-size: 16px;
  font-size: 1.6rem;
  color: #161514;
  line-height: 1.6;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .calloutBox {
    padding: 24px 20px;
  }
}

/*
	Chapter3：セルフ診断
*******************************/
.check {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 420px;
}
@media screen and (max-width: 768px) {
  .check {
    gap: 24px;
    grid-template-columns: 1fr;
  }
}

.checkList {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(20, 20, 18, 0.04), 0 8px 28px -16px rgba(20, 20, 18, 0.2);
  overflow: hidden;
}
.checkList_item {
  border-bottom: 1px solid #d9d9d9;
}
.checkList_item:last-child {
  border-bottom: 0;
}

.checkItem {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 12px;
  padding: 12px 16px;
}
.checkItemInput {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}
.checkItemBox {
  align-items: center;
  background: #eef4fb;
  border: 1.747px solid #d9d9d9;
  border-radius: 4px;
  display: flex;
  flex-shrink: 0;
  height: 24px;
  justify-content: center;
  position: relative;
  width: 24px;
}
.checkItemBox::before {
  color: #225a9b;
  content: "✓";
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.12s ease;
}
.checkItemNo {
  font-size: 12px;
  font-size: 1.2rem;
  color: #595650;
  flex-shrink: 0;
  font-family: "Roboto Mono", ui-monospace, monospace;
  width: 1.6em;
}
.checkItemText {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7;
}
.checkItemInput:checked + .checkItemBox::before {
  opacity: 1;
}
.checkItemInput:focus-visible + .checkItemBox {
  outline: 2px solid #225a9b;
  outline-offset: 2px;
}

.checkResult {
  align-items: center;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(20, 20, 18, 0.04), 0 8px 28px -16px rgba(20, 20, 18, 0.16);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  position: sticky;
  text-align: center;
  top: 24px;
}
.checkResultText {
  font-size: 14px;
  font-size: 1.4rem;
  color: #595650;
}
.checkResultText-sp {
  display: none;
}
.checkResultCta {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .checkResult {
    position: static;
  }
  .checkResult .checkResultCta {
    padding: 16px 20px;
  }
  .checkResult .checkResultText-pc {
    display: none;
  }
  .checkResult .checkResultText-sp {
    display: inline;
  }
}

.checkGauge {
  height: 160px;
  position: relative;
  width: 160px;
}
.checkGaugeSvg {
  height: 100%;
  transform: rotate(-90deg);
  width: 100%;
}
.checkGaugeTrack {
  fill: none;
  stroke: #eef4fb;
  stroke-width: 10;
}
.checkGaugeBar {
  fill: none;
  stroke: #225a9b;
  stroke-dasharray: 326.726;
  stroke-dashoffset: calc(326.726px * (1 - var(--check-ratio, 0)));
  stroke-linecap: round;
  stroke-width: 10;
  transition: stroke-dashoffset 0.4s ease;
}
.checkGaugeNum {
  font-size: 40px;
  font-size: 4rem;
  font-weight: 700;
  left: 0;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-60%);
}
.checkGaugeUnit {
  font-size: 12px;
  font-size: 1.2rem;
  bottom: 44px;
  color: #595650;
  left: 0;
  position: absolute;
  right: 0;
}

/*
	Chapter4：比較表
*******************************/
@media screen and (max-width: 768px) {
  .compareTableScroll {
    margin-inline: -16px;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    padding-inline: 16px;
  }
}

.compareTableWrap {
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .compareTableWrap {
    min-width: 100%;
    width: max-content;
  }
}

.compareTable {
  background: #fff;
  width: 100%;
}
.compareTable th, .compareTable td {
  border-bottom: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  padding: 14px 12px;
  text-align: center;
  vertical-align: middle;
}
.compareTable th:last-child, .compareTable td:last-child {
  border-right: 0;
}
.compareTable tbody tr:last-child th, .compareTable tbody tr:last-child td {
  border-bottom: 0;
}
.compareTable tr > :first-child {
  color: #595650;
  padding-left: 20px;
  text-align: left;
}
.compareTable thead tr, .compareTableTotal {
  background: #eef4fb;
}
.compareTableHead {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
}
.compareTableHead-wp {
  background: #225a9b;
  color: #fff;
}
.compareTableItem {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  white-space: nowrap;
}
.compareTableTotal .compareTableItem {
  font-weight: 700;
}
.compareTableCell {
  font-size: 14px;
  font-size: 1.4rem;
}
.compareTableCell-wp {
  background: #eef4fb;
  font-weight: 700;
}
.compareTableCell-totalWp {
  background: #225a9b;
  color: #fff;
}
.compareTableMark {
  font-size: 18px;
  font-size: 1.8rem;
  color: #161514;
  display: block;
}
.compareTableCell-totalWp .compareTableMark, .compareTableHead-wp {
  color: #fff;
}
.compareTableNote {
  font-size: 12px;
  font-size: 1.2rem;
  color: #161514;
  display: block;
  margin-top: 4px;
}
.compareTableCell-totalWp .compareTableNote {
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .compareTable {
    table-layout: fixed;
    width: 680px;
  }
  .compareTable tr > :first-child {
    width: 132px;
  }
  .compareTableItem {
    white-space: normal;
  }
}

.compareNote {
  font-size: 12px;
  font-size: 1.2rem;
  color: #595650;
  margin-top: 16px;
}

.compareSummary {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.9;
  margin-top: 24px;
}
.compareSummary strong {
  font-weight: 700;
}

.linkBanner {
  align-items: center;
  background: #fff;
  border: 1px dashed #225a9b;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 24px;
}
.linkBannerText {
  font-size: 15px;
  font-size: 1.5rem;
  flex: 1;
}
.linkBannerEm {
  color: #225a9b;
  font-weight: bold;
}
.linkBannerArrow {
  color: #161514;
}
.linkBanner:hover {
  background: #eef4fb;
}
@media screen and (max-width: 768px) {
  .linkBanner {
    gap: 8px;
    padding: 14px 16px;
  }
  .linkBannerText {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

/*
	Chapter5：サーバー3選
*******************************/
.rankGrid {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .rankGrid {
    grid-template-columns: 1fr;
  }
}

.rankCard {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(20, 20, 18, 0.04), 0 8px 28px -16px rgba(20, 20, 18, 0.16);
  padding: 24px;
}
.rankCard-best {
  border-color: #225a9b;
}
.rankCardHead {
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.rankCardBadge {
  font-size: 16px;
  font-size: 1.6rem;
  align-items: center;
  border-radius: 999px;
  box-shadow: 0 -3px 6px 0 rgba(0, 0, 0, 0.15) inset;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  width: 32px;
}
.rankCardBadge-1 {
  background: #e89a12;
}
.rankCardBadge-2 {
  background: #aeb7c4;
}
.rankCardBadge-3 {
  background: #c58d54;
}
.rankCardName {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
.rankCardRating {
  font-size: 12px;
  font-size: 1.2rem;
  color: #161514;
  margin-top: 2px;
}
.rankCardStars {
  font-size: 14px;
  font-size: 1.4rem;
  color: #161514;
}
.rankCardPoints {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rankPoint {
  font-size: 14px;
  font-size: 1.4rem;
  align-items: flex-start;
  display: flex;
  gap: 10px;
  line-height: 1.6;
}
.rankPointTag {
  font-size: 11px;
  font-size: 1.1rem;
  border-radius: 4px;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
  padding: 2px 8px;
  text-align: center;
  width: 48px;
}
.rankPointTag-good {
  background: #e5eff9;
  color: #225a9b;
}
.rankPointTag-bad {
  background: #fbe6e1;
  color: #e0341c;
}

/*
	Chapter6：編集部の結論（推薦）
*******************************/
.section-recommend {
  background: #225a9b;
}

.recommendCard {
  align-items: center;
  background: #fff;
  border-radius: 16px;
  display: flex;
  gap: 40px;
  padding: 40px;
}
.recommendCardVisual {
  flex-shrink: 0;
  width: 320px;
}
.recommendCardBody {
  flex: 1;
  min-width: 0;
}
.recommendCardBadge {
  font-size: 12px;
  font-size: 1.2rem;
  background: #e0341c;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding: 4px 12px;
}
.recommendCardBadge em {
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-style: italic;
}
.recommendCardName {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 12px;
}
.recommendCardRating {
  font-size: 14px;
  font-size: 1.4rem;
  color: #595650;
  margin-top: 8px;
}
.recommendCardStars {
  font-size: 16px;
  font-size: 1.6rem;
  color: #e89a12;
}
.recommendCardPoints {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.recommendCardPoints li {
  font-size: 14px;
  font-size: 1.4rem;
  display: flex;
  gap: 8px;
  line-height: 1.6;
}
.recommendCardCheck {
  color: #225a9b;
  flex-shrink: 0;
  font-weight: 700;
}
.recommendCardAction {
  flex-shrink: 0;
  text-align: center;
  width: 310px;
}
.recommendCardCta {
  width: 100%;
}
.recommendCardNote {
  font-size: 12px;
  font-size: 1.2rem;
  color: #595650;
  line-height: 1.6;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .recommendCard {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }
  .recommendCardVisual {
    width: min(280px, 100%);
  }
  .recommendCardBody, .recommendCardAction {
    width: 100%;
  }
  .recommendCardName {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

/*
	Chapter7：FAQ
*******************************/
.faqItem {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(20, 20, 18, 0.04), 0 8px 28px -16px rgba(20, 20, 18, 0.12);
  margin-bottom: 12px;
  padding-inline: 20px;
}
.faqItemQ {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 12px;
  list-style: none;
  padding-block: 20px;
}
.faqItemQ::-webkit-details-marker {
  display: none;
}
.faqItemMark {
  font-size: 19px;
  font-size: 1.9rem;
  color: #225a9b;
  font-weight: 700;
}
.faqItemText {
  font-size: 16px;
  font-size: 1.6rem;
  flex: 1;
  font-weight: 700;
}
.faqItemToggle {
  flex-shrink: 0;
  height: 20px;
  position: relative;
  width: 20px;
}
.faqItemToggle::before, .faqItemToggle::after {
  background: #225a9b;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.faqItemToggle::before {
  height: 2px;
  width: 14px;
}
.faqItemToggle::after {
  height: 14px;
  transition: transform 0.2s ease;
  width: 2px;
}
.faqItemAnswer {
  display: grid;
  grid-template-rows: 1fr;
}
.faqItemAnswerInner {
  min-height: 0;
  overflow: hidden;
}
.faqItemAnswerBody {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.7;
  padding: 0 32px 20px;
}
.faqItemLink {
  color: #225a9b;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faqItemLink:hover {
  text-decoration: none;
}
.faqItem.is-enhanced .faqItemAnswer {
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faqItem.is-enhanced.is-open .faqItemAnswer {
  grid-template-rows: 1fr;
}
.faqItem.is-open .faqItemToggle::after, .faqItem:not(.is-enhanced)[open] .faqItemToggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}
@media (prefers-reduced-motion: reduce) {
  .faqItem.is-enhanced .faqItemAnswer {
    transition: none;
  }
}
/*# sourceMappingURL=this.css.map */