/* =============================================================
   PC base styles
   ============================================================= */

/* =============================================================
   assistup - 仮想デスクトップページ専用スタイル
   ============================================================= */

/* 仮想デスクトップページ固有のCSS変数上書きはここに記述 */

/* =============================================================
   セクションタイトル個別余白
   font-size / font-weight / text-align は components/section.css の
   .section-title / .section-title--center が dual-class で提供する。
   ここではページ固有の margin-bottom 等のみを記述。
   ============================================================= */

.desktop-about__title,
.desktop-necessity__title,
.desktop-capabilities__title {
  margin-bottom: 24px;
}

.desktop-problems__title,
.desktop-reasons__title,
.desktop-faq__title,
.desktop-additions__title {
  margin-bottom: 60px;
}

.desktop-problems__title {
  margin-bottom: 40px;
}

.desktop-failures__title {
  margin-bottom: 0;
}

.desktop-trust__title {
  margin-bottom: 30px !important;
}

/* =============================================================
   MV（メインビジュアル）セクション
   ============================================================= */

.desktop-mv {
  position: relative;
  overflow: hidden;
  min-height: 535px;
  padding-block: 45px;
  background: #16a291;
  background-size: cover;
  color: #ffffff;
}

.desktop-mv__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 565px) minmax(0, 663px);
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  max-width: 1200px;
}

.desktop-mv__content {
  max-width: 565px;
}

.desktop-mv__badge {
  display: inline-grid;
  grid-template-columns: 24px auto;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.desktop-mv__badge img {
  width: 24px;
  height: 24px;
}

.desktop-mv__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
  white-space: nowrap;
}

.desktop-mv__description {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.desktop-mv__price {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 24px;
  overflow: hidden;
  background: #ffffff;
  color: #111111;
  border-radius: 1px;
  padding-right: 8px;
}

.desktop-mv__price-label {
  display: inline-grid;
  align-items: center;
  justify-content: center;
  background: #ffd724;
  font-size: 14px;
  font-weight: 700;
  padding: 3px 13px;
}

.desktop-mv__price-value {
  font-size: 20px;
  font-weight: 700;
}

.desktop-mv__price-unit {
  font-size: 12px;
}

.desktop-mv__trial {
  position: relative;
  text-align: center;
  max-width: 442px;
}

.desktop-mv__trial-heading {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #ffd724;
}

.desktop-mv__trial-heading strong {
  font-weight: 700;
}

.desktop-mv__trial-footnote-inline {
  font-size: 10px;
  vertical-align: super;
  position: relative;
  top: -4px;
}

.desktop-mv__trial-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}

.desktop-mv__trial-note::before,
.desktop-mv__trial-note::after {
  content: "";
  width: 8px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.desktop-mv__trial-note::before {
  background-image: url("../../img/desktop/mv-slash-right.svg");
}

.desktop-mv__trial-note::after {
  background-image: url("../../img/desktop/mv-slash-left.svg");
}

.desktop-mv__trial-btn {
  display: inline-grid;
  grid-template-columns: auto 21px;
  align-items: center;
  justify-content: center;
  gap: 21px;
  width: 100%;
  max-width: 442px;
  height: 74px;
  background: #ff8802;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: filter 0.2s ease;
  isolation: isolate;
}

.desktop-mv__trial-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100px at 50% -20%, rgba(255, 169, 89, 0.9) 0%, rgba(255, 169, 89, 0.9) 50%, rgba(255, 169, 89, 0.3) 55%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.desktop-mv__trial-btn::after {
  content: "";
  position: relative;
  z-index: 1;
  width: 21px;
  height: 21px;
  background: url("../../img/common/icon-arrow-b-white.svg") center / contain no-repeat;
}

.desktop-mv__trial-btn:hover {
  filter: brightness(0.9);
}

.desktop-mv__trial-footnote {
  font-size: 12px;
  font-weight: 500;
  text-align: right;
  margin-top: 8px;
}

.desktop-mv__visual img {
  width: 100%;
  height: auto;
  max-width: 663px;
}

/* =============================================================
   共通セクションスタイル
   ============================================================= */

.section-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.section-lead {
  font-size: 18px;
  text-align: center;
  margin-bottom: 64px;
}

/* =============================================================
   仮想デスクトップとは (PC_仮想デスクトップとは)
   ============================================================= */

.desktop-about {
  padding: 100px 0;
  background: #edfdfb;
}

.desktop-about__header {
  text-align: center;
  margin-bottom: 60px;
}

.desktop-about__illust {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  padding: 80px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.desktop-about__illust-title {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}

.desktop-about__illust-content {
  margin-bottom: 40px;
  text-align: center;
}

.desktop-about__illust-content img {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
}

.desktop-about__note {
  background: rgba(242, 244, 248, 0.6);
  border-radius: 5px;
  padding: 28px 67px;
}

.desktop-about__note p {
  margin: 0;
}

/* =============================================================
   Windows VPSとの違い (PC_違い)
   ============================================================= */
.desktop-difference__table-container {
  width: 100%;
  margin: 0 auto;
}

.desktop-difference__table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid #dbe5f3;
}

.desktop-difference__th {
  height: 70px;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  padding: 0 20px;
}

.desktop-difference__th:not(:last-child) {
  border-right: 1px solid #dbe5f3;
}

.desktop-difference__th--category {
  width: 20%;
}

.desktop-difference__th--vps,
.desktop-difference__th--desktop {
  width: 40%;
}

.desktop-difference__th--category,
.desktop-difference__th--vps {
  font-size: 14px;
  background: #f2f4f8;
}

.desktop-difference__th--desktop {
  font-size: 16px;
  background: #16a291;
  color: #ffffff;
}

.desktop-difference__td {
  height: 70px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  padding: 0 20px;
  border-top: 1px solid #dbe5f3;
}

.desktop-difference__td:not(:last-child) {
  border-right: 1px solid #dbe5f3;
}

.desktop-difference__td--category {
  background: #f2f4f8;
}

.desktop-difference__td--vps {
  background: #ffffff;
}

.desktop-difference__td--desktop {
  background: #daf2d0;
}

.desktop-difference__table-wrapper {
  margin-bottom: 0.5em;
}

.desktop-difference__description {
  text-align: end;
}

/* =============================================================
   こんなお悩みありませんか？ (PC_お悩み)
   ============================================================= */

.desktop-problems {
  padding: 100px 0;
  background: #f4f4f5;
  position: relative;
}

.desktop-problems__grid {
  display: grid;
  grid-template-columns: repeat(5, 202px);
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.desktop-problems__card {
  display: grid;
  grid-template-rows: 60px auto;
  align-items: center;
  justify-items: center;
  gap: 10px;
  background: #d9d9d9;
  border-radius: 9px;
  width: 202px;
  padding: 29px 25px;
  position: relative;
}

.desktop-problems__icon {
  width: 60px;
  height: 60px;
  display: grid;
  align-items: center;
  justify-content: center;
}

.desktop-problems__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.desktop-problems__text {
  font-size: 14px;
  text-align: center;
  margin: 0;
}

.desktop-problems__divider {
  width: 100%;
  height: 74px;
  display: grid;
  align-items: center;
  justify-content: center;
  position: relative;
}

.desktop-problems__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 74px;
  background: #000;
}

.desktop-problems__solution {
  background: #ffffff;
  border-radius: 10px;
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.desktop-problems__solution-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.desktop-problems__solution-highlight {
  display: inline-block;
}

.desktop-problems__solution-accent {
  color: #16a291;
}

.desktop-problems__solution-grid {
  display: grid;
  grid-template-columns: repeat(5, 202px);
  align-items: stretch;
  gap: 18px;
  justify-content: center;
  padding: 0 60px;
}

.desktop-problems__solution-card {
  display: grid;
  grid-template-rows: 46px auto;
  align-items: center;
  justify-items: center;
  background: #ffffff;
  border: 1px solid #dbe5f3;
  border-radius: 9px;
  width: 202px;
  padding: 33px 10px 20px;
  position: relative;
}

.desktop-problems__solution-card::before {
  content: "";
  position: absolute;
  top: -17.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background: url("../../img/common/icon-check-green.svg") center / contain no-repeat;
}

.desktop-problems__solution-icon {
  width: 46px;
  height: 46px;
  display: grid;
  align-items: center;
  justify-content: center;
}

.desktop-problems__solution-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.desktop-problems__solution-text {
  font-size: 14px;
  text-align: center;
  margin: 0;
  padding: 15px 8px 0;
}

.desktop-problems__solution-text strong {
  font-weight: 500;
}

/* =============================================================
   あなたに合うのは仮想デスクトップ？Windows VPS？ (PC_必要)
   ============================================================= */

.desktop-necessity {
  padding: 100px 0;
  background: #ffffff;
}

.desktop-necessity__header {
  text-align: center;
  margin-bottom: 50px;
}

.desktop-necessity__label {
  font-size: 22px;
  font-weight: 500;
  color: #16a291;
  margin-bottom: 0;
}

.desktop-necessity__subtitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.desktop-necessity__checklist {
  background: url("../../img/common/necessity-bg.svg") center / cover no-repeat;
  min-height: 266px;
  border-radius: 10px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 268px 1fr;
  align-items: center;
  gap: 20px;
  padding: 7px 172px 67px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.desktop-necessity__visual img {
  width: 297px;
  height: 189px;
  object-fit: cover;
}

.desktop-necessity__items {
  display: grid;
  gap: 0;
  padding-top: 20px;
}

.desktop-necessity__question {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 0.5em;
}

.desktop-necessity__question:not(:first-child) {
  margin-top: 0.5em;
}

.desktop-necessity__item {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

.desktop-necessity__item:not(:last-child) {
  margin-bottom: 0.5em;
}

.desktop-necessity__result {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.desktop-necessity__result p:not(:last-child) {
  margin-bottom: 0.5em;
}

.desktop-necessity__recommend {
  background: #eefafa;
  border-radius: 5px;
  padding: 10px;
  max-width: 779px;
  margin: 0 auto;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.desktop-necessity__recommend p:not(:last-child) {
  margin-bottom: 0.5em;
}

.desktop-necessity__recommend-text {
  font-size: 22px;
  font-weight: 700;
  color: #16a291;
  margin: 0;
}

/* =============================================================
   仮想デスクトップでできること (PC_できること)
   ============================================================= */

.desktop-capabilities {
  padding: 100px 0 70px;
  background: #edfdfb;
}

.desktop-capabilities__header {
  text-align: center;
  margin-bottom: 50px;
}

.desktop-capabilities__subtitle {
  font-size: 18px;
  font-weight: 500;
}

.desktop-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.desktop-capabilities__card {
  display: grid;
  grid-template-columns: 150px 1fr;
  background: #ffffff;
  border: 1px solid #f4f4f5;
  border-radius: 10px;
  align-items: center;
  gap: 25px;
  padding: 27px 65px;
}

.desktop-capabilities__card-text {
  text-align: end;
  grid-column: span 2;
}

.desktop-capabilities__icon {
  width: 150px;
  height: 150px;
  background: #16A291;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desktop-capabilities__icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.desktop-capabilities__card-title {
  font-size: 20px;
  margin: 0;
}

.desktop-capabilities__scenes-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.desktop-capabilities__scenes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.desktop-capabilities__scenes {
  text-align: center;
}

.desktop-capabilities__scenes-text {
  text-align: end;
  grid-column: span 3;
  margin-bottom: 70px;
}

.desktop-capabilities__scenes img {
  width: 100%;
  height: auto;
  aspect-ratio: 281/265;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 10px;
  /* 画像に青いオーバーレイをかける */
  filter: brightness(0.85);
}

.desktop-capabilities__scenes-title {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}

.desktop-capabilities__cta {
  text-align: center;
  max-width: 385px;
  margin: 0 auto;
}

.desktop-capabilities__cta-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
}

.desktop-capabilities__cta-label::before,
.desktop-capabilities__cta-label::after {
  content: "";
  width: 8px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.desktop-capabilities__cta-label::before {
  background-image: url("../../img/desktop/mv-slash-right-black.svg");
}

.desktop-capabilities__cta-label::after {
  background-image: url("../../img/desktop/mv-slash-left-black.svg");
}

.desktop-capabilities__cta-btn {
  display: grid;
  grid-template-columns: auto 16px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 65px;
  background: #ffffff;
  border: 2px solid #1977f2;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #1977f2;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.desktop-capabilities__cta-btn::after {
  content: "";
  width: 11px;
  height: 18px;
  background: url("../../img/common/icon_arrow-blue.svg") center / contain no-repeat;
}

.desktop-capabilities__cta-btn:hover {
  background: #1977f2;
  color: #ffffff;
}

.desktop-capabilities__cta-btn:hover::after {
  background-image: url("../../img/common/icon_arrow-white.svg");
}

/* =============================================================
   仮想デスクトップでよくある失敗 (PC_失敗)
   ============================================================= */

.desktop-failures {
  padding: 100px 0;
  /* TODO: 画像を assets/img/desktop/failures-bg.png として配置後、以下を有効化 */
  /* background: url("../../img/desktop/failures-bg.png") no-repeat center; */
  /* background-size: cover; */
  background: #f4f4f5; /* 暫定: 薄グレー背景 */
}

.desktop-failures__header {
  text-align: center;
  margin-bottom: 50px;
}

.desktop-failures__subtitle {
  font-size: 24px;
  font-weight: 700;
}

.desktop-failures__highlight {
  color: #16a291;
}

.desktop-failures__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 379px));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  justify-content: center;
}

.desktop-failures__card {
  width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  gap: 24px;
  align-items: start;
}

.desktop-failures__icon {
  display: none;
}

.desktop-failures__content {
  display: contents;
}

.desktop-failures__problem {
  background: url("../../img/common/failure-problem-bg.svg") no-repeat center;
  background-size: cover;
  border-radius: 0px;
  min-height: 310px;
  display: grid;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  justify-items: center;
  padding: 44px 28px;
  position: relative;
}

.desktop-failures__problem::before {
  content: "";
  grid-row: 1;
  width: 200px;
  height: 150px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 12px;
}

.desktop-failures__card:nth-child(1) .desktop-failures__problem::before {
  background-image: url("../../img/desktop/icon-mismatch.webp");
}

.desktop-failures__card:nth-child(2) .desktop-failures__problem::before {
  background-image: url("../../img/desktop/icon-help.webp");
}

.desktop-failures__card:nth-child(3) .desktop-failures__problem::before {
  background-image: url("../../img/desktop/icon-secure.webp");
}

.desktop-failures__card:nth-child(4) .desktop-failures__problem::before {
  background-image: url("../../img/desktop/icon-inconsistent.webp");
}

.desktop-failures__card:nth-child(5) .desktop-failures__problem::before {
  background-image: url("../../img/desktop/icon-large_expenditure.webp");
}

.desktop-failures__card:nth-child(6) .desktop-failures__problem::before {
  background-image: url("../../img/desktop/icon-unauthorized_access.webp");
}

.desktop-failures__problem-text {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin: 0;
  /* JS (initFailuresGrid) で全 6 つの高さが最大値に揃えられた時、
     テキストがその領域内で縦軸センターに来るよう grid + center */
  display: grid;
  align-items: center;
  justify-content: center;
}

.desktop-failures__solution {
  background: #ffffff;
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 105px;
}

.desktop-failures__solution p {
  text-align: left;
  margin: 0;
}

/* =============================================================
   Winserverが選ばれる5つの理由 (PC_5つの理由)
   ============================================================= */

.desktop-reasons {
  padding: 100px 0;
  background: #ffffff;
}

.desktop-reasons__main {
  margin-bottom: 32px;
}

.desktop-reasons__main-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f4f4f5;
  border-radius: 15px;
  min-height: 510px;
  max-width: 1200px;
  margin: 0 auto 32px;
  align-items: center;
  gap: 32px;
  padding: 50px 60px;
}

/* gridから通常のブロック要素に変更 
.desktop-reasons__main-content {
}
*/

.desktop-reasons__number {
  font-family: "Barlow", sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #16a291;
  margin: 0 0;
}

.desktop-reasons__main-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 20px;
}

.desktop-reasons__main-text {
  margin: 0 0 36px;
}

.desktop-reasons__main-features {
  background: #ffffff;
  border-radius: 3px;
  padding: 12px 29px;
  display: grid;
  gap: 4px;
}

.desktop-reasons__feature {
  display: grid;
  grid-template-columns: 19px 1fr;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.desktop-reasons__feature::before {
  content: "";
  width: 19px;
  height: 19px;
  background: url("../../img/common/icon-check-deepblue.svg") center / contain no-repeat;
}

.desktop-reasons__feature svg {
  display: none;
}

.desktop-reasons__main-visual {
  width: 100%;
  height: auto;
}

.desktop-reasons__main-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 588/330;
  object-fit: cover;
  border-radius: 10px;
}

.desktop-reasons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.desktop-reasons__card {
  background: #f4f4f5;
  border-radius: 10px;
  padding: 23px;
}

.desktop-reasons__card-number {
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: #16a291;
  margin: 0 0 8px;
}

.desktop-reasons__card-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}

.desktop-reasons__card-text {
  margin: 0;
}

/* =============================================================
   料金プラン (PC_料金プラン)
   ============================================================= */
.desktop-pricing.desktop-pricing-padding {
  padding: 100px 0px;
}

/* =============================================================
   ご利用内容に応じて追加が必要なもの (PC_ご利用内容に応じて追加が必要なもの)
   ============================================================= */
   
.desktop-additions {
  padding: 100px 0;
  background: #f4f4f5;
}

.desktop-additions__table-container {
  width: 100%;
  margin: 0 auto;
}

.desktop-additions__table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid #dbe5f3;
}

.desktop-additions__th {
  height: 70px;
  width: 50%;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  padding: 0 20px;
  background: #16a291;
}

.desktop-additions__td {
  height: 70px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  padding: 0 20px;
  border-top: 1px solid #dbe5f3;
  background: #ffffff;
}

.desktop-additions__table-wrapper {
  margin-bottom: 0.5em;
}

.desktop-additions__description {
  text-align: end;
}

/* =============================================================
   利用シーン別のおすすめ構成
   ============================================================= */

.desktop-recommend_build {
  padding: 0;
  padding-top: 100px;
}

.desktop-recommend_build__item {
  justify-content: center;
  display: grid;
  margin-bottom: 3em;
}

.desktop-recommend_build__item-title-area {
  width: 100%;
  display: flex;
  justify-content: center;
}

.desktop-recommend_build__item-title {
  width: 400px;
  text-align: center;
  background: #16A291;
  color: #ffffff;
  padding: 5px;
  border-radius: 25px;
}

.desktop-recommend_build__button-area {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.desktop-recommend_build__button-area a {
  margin: 0;
}

.desktop-recommend_build__item-text {
  text-align: center;
  margin-top: 10px;
}

.desktop-recommend_build__apply-button {
  display: grid;
  grid-template-columns: auto 16px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 385px;
  height: 65px;
  margin: 0 auto;
  background: #ff8802;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #ff8802;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.desktop-recommend_build__apply-button::after {
  content: "";
  width: 10px;
  height: 16px;
  background: url(../../img/common/icon_arrow-white.svg) center / contain no-repeat;
}

/* =============================================================
   他社比較
   ============================================================= */

.desktop-comparison {
  padding: 100px 0;
  background: #ffffff;
}

/* テーブルラッパ: PC base は左右 20px の余白を常時確保。
    モバイルで横スクロールに切り替わる時 (@media 768) は右側だけ 0 にして
    テーブル右端をビューポート右端まで流す（左 20px は維持）。
.desktop-comparison__table-wrapper {
}
*/

.desktop-comparison__table {
  width: 100%;
  max-width: 1195px;
  margin: 0 auto 16px;
  border-collapse: collapse;
  table-layout: fixed;
}

.desktop-comparison__table th,
.desktop-comparison__table td {
  width: 20%;
}

.desktop-comparison__header {
  height: 70px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  vertical-align: middle;
}

.desktop-comparison__header--feature {
  background: transparent;
}

.desktop-comparison__header--winserver {
  color: #16a291;
  font-size: 24px;
  font-weight: 500;
}

.desktop-comparison__header--other {
  color: #111111;
  font-size: 16px;
  font-weight: 500;
}

.desktop-comparison__cell {
  height: 70px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  vertical-align: middle;
  border: 1px solid #dbe5f3;
}

.desktop-comparison__cell--feature {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

.desktop-comparison tbody tr:nth-child(odd) .desktop-comparison__cell--feature {
  background: #16a291;
  padding: 10px;
}

.desktop-comparison tbody tr:nth-child(even) .desktop-comparison__cell--feature {
  background: #16d7c1;
  padding: 10px;
}

.desktop-comparison__cell--winserver {
  background: #edfdfb;
  color: #16a291;
  font-size: 18px;
  font-weight: 500;
}

.desktop-comparison__cell--point {
  background: #ffff00;
  color: #16a291;
  font-size: 18px;
  font-weight: 500;
}

.desktop-comparison__note {
  text-align: right;
  font-size: 16px;
  color: #111111;
  margin: 0;
}

/* =============================================================
   FAQセクション
   ============================================================= */

.desktop-faq {
  padding: 100px 0;
  background: #ffffff;
}

.desktop-faq__list {
  margin: 0 auto 60px;
}

.desktop-faq__item {
  background: #f2f4f8;
  margin-bottom: 16px;
  overflow: hidden;
}

.desktop-faq__question {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 12px 50px;
  background: #f2f4f8;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.desktop-faq__question:hover {
  background: #e8ecf0;
}

.desktop-faq__question[aria-expanded="true"] {
  background: #f2f4f8;
}

.desktop-faq__q-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-faq__q-icon img {
  width: 22px;
  height: auto;
}

.desktop-faq__q-text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.54px;
}

.desktop-faq__toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
}

.desktop-faq__toggle-icon img {
  position: absolute;
  width: 40px;
  height: 40px;
  transition: opacity 0.3s ease;
}

.desktop-faq__question[aria-expanded="false"] .desktop-faq__icon-minus {
  opacity: 0;
}

.desktop-faq__question[aria-expanded="false"] .desktop-faq__icon-plus {
  opacity: 1;
}

.desktop-faq__question[aria-expanded="true"] .desktop-faq__icon-minus {
  opacity: 1;
}

.desktop-faq__question[aria-expanded="true"] .desktop-faq__icon-plus {
  opacity: 0;
}

/* outer は height: 0 → JS が scrollHeight を inline で設定して transition。
   inner は padding 固定 (開いた時のレイアウト)。 */
.vps-faq__answer {
  background: #ffffff;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.vps-faq__answer-inner {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: start;
  gap: 40px;
  padding: 46px 50px;
}

.desktop-faq__a-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-faq__a-icon img {
  width: 22px;
  height: auto;
}

.desktop-faq__a-text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.54px;
}

/* =============================================================
   Winserverの仮想デスクトップが安心して使える理由
   ============================================================= */

.desktop-trust {
  padding: 100px 0 0;
  background: #ffffff;
}

.desktop-trust__subtitle {
  text-align: center;
  margin: 0 0 32px;
}

.desktop-trust__description {
  max-width: 1028px;
  margin: 40px auto 55px;
  text-align: center;
}

.desktop-trust__description-title {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 16px;
}

.desktop-trust__description-text {
  font-size: 16px;
  margin: 0;
}

.desktop-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.desktop-trust__card {
  background: #ffffff;
  border: 1px solid #dbe5f3;
  border-radius: 5px;
  padding: 40px;
  text-align: center;
}

.desktop-trust__icon {
  margin-bottom: 22px;
  text-align: center;
}

.desktop-trust__icon img {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto;
}

.desktop-trust__card-title {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 22px;
}

.desktop-trust__card-text {
  margin: 0;
}

/* NOTE: 料金プランのスタイルは layout/desktop-shared.css に移動されました */

/* =============================================================
   トライアルCTA（仮想デスクトップ TOP）
   ============================================================= */

.desktop-trial-top-cta {
  padding: 60px 0;
}

/* =============================================================
   @media (max-width: 1024px)
   ============================================================= */

@media (max-width: 1024px) {
  .desktop-mv {
    min-height: auto;
    padding-block: 64px;
  }

  .desktop-mv__inner {
    /* 既存タイポ var(--space-mg) を SP 値（32px）に揃えて修正 */
    gap: 32px;
  }

  .desktop-mv__visual {
    width: 100%;
    max-width: 100%;
  }

  .desktop-mv__visual img {
    width: 100%;
    height: auto;
  }

  .desktop-capabilities__grid {
    grid-template-columns: 1fr;
  }

  .desktop-capabilities__card-text {
    grid-column: span 1;
  }

  .desktop-capabilities__scenes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .desktop-capabilities__scenes-text {
    grid-column: span 2;
  }

  .desktop-recommend_build__button-area {
    gap: 40px;
  }

  .desktop-recommend_build__button-area .btn-more-link {
    text-align: center;
  }

  .desktop-about__illust {
    padding: 40px 60px;
  }

  .desktop-problems__grid,
  .desktop-problems__solution-grid {
    grid-template-columns: repeat(auto-fit, minmax(202px, 1fr));
    gap: 16px;
  }

  .desktop-necessity__checklist {
    padding: 7px 20px 37px;
    justify-content: center;
    grid-template-columns: 268px auto;
  }

  .desktop-failures__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0 30px;
  }

  .desktop-failures__card {
    width: 100%;
    max-width: 100%;
    grid-template-rows: auto auto;
    gap: 24px;
  }

  .desktop-failures__problem {
    min-height: auto;
    padding: 32px 24px;
  }

  .desktop-failures__problem::before {
    width: 150px;
    height: 120px;
  }

  .desktop-reasons__main-card {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    padding: 40px 30px;
  }

  .desktop-reasons__main-visual {
    width: 100%;
    height: auto;
    order: -1;
  }

  .desktop-reasons__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .desktop-trust__grid {
    grid-template-columns: 1fr;
  }

  .desktop-mv__badge {
    font-size: 18px;
  }
  .desktop-mv__description {
    font-size: 20px;
  }
  .desktop-mv__price-value {
    font-size: 18px;
  }
  .desktop-mv__trial-note {
    font-size: 16px;
  }
  .section-title {
    font-size: 26px;
  }
  .section-lead {
    font-size: 16px;
  }
  .desktop-about__illust-title {
    font-size: 20px;
  }
  .desktop-problems__solution-title {
    font-size: 26px;
  }
  .desktop-necessity__label {
    font-size: 20px;
  }
  .desktop-necessity__subtitle {
    font-size: 16px;
  }
  .desktop-necessity__item {
    font-size: 16px;
  }
  .desktop-necessity__result {
    font-size: 16px;
  }
  .desktop-necessity__recommend-text {
    font-size: 20px;
  }
  .desktop-capabilities__subtitle {
    font-size: 16px;
  }
  .desktop-capabilities__card-title {
    font-size: 18px;
  }
  .desktop-capabilities__scenes-title {
    font-size: 26px;
  }
  .desktop-capabilities__scenes-title {
    font-size: 20px;
  }
  .desktop-capabilities__cta-btn {
    font-size: 18px;
  }
  .desktop-failures__problem-text {
    font-size: 18px;
  }
  .desktop-reasons__card-number {
    font-size: 26px;
  }
  .desktop-reasons__card-title {
    font-size: 20px;
  }
  .desktop-faq__q-text {
    font-size: 16px;
  }
  .desktop-faq__a-text {
    font-size: 16px;
  }
  .desktop-trust__description-title {
    font-size: 20px;
  }
  .desktop-trust__card-title {
    font-size: 20px;
  }
}

/* =============================================================
   @media (max-width: 768px)
   ============================================================= */

@media (max-width: 768px) {
  .desktop-about__title,
  .desktop-problems__title,
  .desktop-necessity__title,
  .desktop-capabilities__title,
  .desktop-failures__title,
  .desktop-reasons__title,
  .desktop-faq__title,
  .desktop-additions__title,
  .desktop-trust__title {
    margin-bottom: 16px;
  }

  .desktop-problems__title,
  .desktop-reasons__title,
  .desktop-faq__title,
  .desktop-additions__title,
  .desktop-trust__title {
    margin-bottom: 40px;
  }

  .desktop-problems__title {
    margin-bottom: 32px;
  }

  .desktop-mv__inner {
    position: relative;
    display: block;
    text-align: left;
    gap: 32px;
    width: 100%;
    padding-inline: 0;
  }

  .desktop-mv__content {
    display: block;
    max-width: 100%;
  }

  .desktop-mv__badge {
    justify-content: flex-start;
    gap: 8px;
    grid-template-columns: 30px auto;
    font-size: 24px;
    margin-bottom: 12px;
  }

  .desktop-mv__title {
    text-align: left;
    margin-bottom: 12px;
    font-size: 42px;
  }

  .desktop-mv__description {
    text-align: left;
    max-width: 100%;
    margin-bottom: 14px;
    font-size: 16px;
  }

  .desktop-mv__price {
    justify-content: flex-start;
    margin-bottom: 68px;
  }

  .desktop-mv__trial {
    max-width: 442px;
    margin: 0 auto;
  }

  .desktop-mv__trial-btn {
    margin-inline: 0;
    font-size: 20px;
    height: 60px;
  }

  .desktop-mv__trial-footnote-inline {
    top: -1px;
  }

  .desktop-mv__trial-footnote {
    text-align: right;
    margin-top: 6px;
  }

  .desktop-mv__visual {
    position: absolute;
    right: inherit;
    top: 202px;
    width: 170px;
    max-width: 55%;
    left: 150px;
  }

  .desktop-mv__visual img {
    width: 100%;
    height: auto;
  }

  .desktop-mv {
    padding: 30px 20px;
  }

  .desktop-mv__badge img {
    width: 30px;
    height: 30px;
  }

  .desktop-mv__trial-heading {
    margin-bottom: 12px;
    padding-bottom: 12px;
    font-size: 16px;
  }

  .desktop-mv__trial-note {
    gap: 8px;
    font-size: 15px;
  }

  .desktop-about {
    padding: 60px 0;
  }

  .desktop-about__header {
    margin-bottom: 40px;
    padding: 0;
  }

  .desktop-about__title {
    text-align: center;
    padding: 0 20px;
  }

  .desktop-about__description {
    padding: 0;
  }

  .desktop-about__illust {
    padding: 20px 20px;
  }

  .desktop-about__note {
    padding: 20px 20px;
  }

  .desktop-problems {
    padding: 60px 0 0;
  }

  .desktop-problems__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
  }

  .desktop-problems__card {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto;
    align-items: center;
    justify-items: start;
    width: 100%;
    padding: 12px;
    gap: 8px;
    border-radius: 5px;
  }

  .desktop-problems__icon {
    width: 40px;
    height: 40px;
    justify-self: center;
  }

  .desktop-problems__text {
    font-size: 12px;
    text-align: left;
    justify-self: start;
  }

  .desktop-problems__divider {
    height: 50px;
  }

  .desktop-problems__divider::before {
    height: 50px;
  }

  .desktop-problems__solution {
    padding: 60px 20px;
    width: 100vw;
    margin-left: -20px;
    border-radius: 0;
  }

  .desktop-problems__solution-title {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .desktop-problems__solution-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
  }

  .desktop-problems__solution-card {
    grid-template-columns: 1fr;
    grid-template-rows: 32px auto;
    align-items: center;
    justify-items: center;
    width: 100%;
    padding: 24px 8px 16px;
    border-radius: 5px;
  }

  .desktop-problems__solution-card::before {
    width: 18px;
    height: 18px;
    top: 8px;
    left: 8px;
    transform: none;
  }

  .desktop-problems__solution-icon {
    width: 32px;
    height: 32px;
  }

  .desktop-problems__solution-text {
    font-size: 12px;
    text-align: left;
    padding: 12px 4px 0;
  }

  .desktop-necessity {
    padding: 0px 0 60px;
  }

  .desktop-necessity__header {
    margin-bottom: 32px;
  }

  .desktop-necessity__label {
    font-size: 14px;
  }

  .desktop-necessity__subtitle {
    font-size: 16px;
  }

  .desktop-necessity__checklist {
    grid-template-columns: 1fr;
    border-radius: 5px;
    padding: 24px 20px;
    min-height: auto;
    gap: 16px;
    background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
    position: relative;
    margin-bottom: 60px;
  }

  .desktop-necessity__checklist::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: #e8e8e8;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }

  .desktop-necessity__visual img {
    width: 100%;
    height: auto;
    max-width: 297px;
    margin: 0 auto;
    display: block;
  }

  .desktop-necessity__items {
    gap: 4px;
    padding-top: 0;
  }

  .desktop-necessity__item {
    font-size: 14px;
    letter-spacing: -0.8px;
  }

  .desktop-necessity__item:not(:last-child) {
    margin-bottom: 0.5em;
  }

  .desktop-necessity__result {
    padding: 0 20px;
    margin-top: 60px;
  }

  .desktop-necessity__recommend {
    padding: 16px 20px;
    margin: 0;
    max-width: 100%;
    width: 100%;
  }

  .desktop-necessity__recommend-text {
    font-size: 14px;
  }

  .desktop-capabilities {
    padding: 60px 0;
  }

  .desktop-capabilities__header {
    margin-bottom: 32px;
  }

  .desktop-capabilities__subtitle {
    font-size: 16px;
  }

  .desktop-capabilities__grid {
    gap: 16px;
    margin-bottom: 60px;
  }

  .desktop-capabilities__card {
    grid-template-columns: 60px 1fr;
    height: auto;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 5px;
  }

  .desktop-capabilities__icon {
    width: 52px;
    height: 52px;
  }

  .desktop-capabilities__card-title {
    font-size: 16px;
  }

  .desktop-capabilities__scenes-title {
    margin-bottom: 32px;
  }

  .desktop-capabilities__scenes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0;
  }

  .desktop-capabilities__scenes img {
    width: 100%;
    height: auto;
    aspect-ratio: 167/158;
    object-fit: cover;
    border-radius: 5px;
  }

  .desktop-capabilities__scenes-title {
    font-size: 16px;
    margin-top: 6px;
  }

  .desktop-capabilities__cta {
    padding: 0 20px;
  }

  .desktop-capabilities__cta-label {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .desktop-capabilities__cta-btn {
    height: 52px;
  }

  .desktop-failures {
    padding: 60px 0;
  }

  .desktop-failures__header {
    margin-bottom: 32px;
  }

  .desktop-failures__subtitle {
    font-size: 18px;
  }

  .desktop-failures__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }

  .desktop-failures__card {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto;
    gap: 12px;
    align-items: start;
  }

  .desktop-failures__icon {
    display: grid;
    width: 80px;
    height: auto;
    padding: 0;
    align-items: center;
  }

  .desktop-failures__icon img {
    max-height: 60px;
  }

  .desktop-failures__content {
    display: grid;
    grid-template-rows: auto auto;
    gap: 12px;
  }

  .desktop-failures__problem {
    margin-top: 0;
    padding: 12px 16px 16px;
    padding-top: 12px;
  }

  .desktop-failures__problem-text {
    font-size: 14px;
  }

  .desktop-failures__solution {
    padding: 12px;
    border-radius: 5px;
  }

  .desktop-failures__solution p {
    font-size: 13px;
  }

  .desktop-reasons {
    padding: 60px 0;
    padding-bottom: 0;
  }

  .desktop-reasons__main {
    margin-bottom: 20px;
  }

  .desktop-reasons__main-card {
    grid-template-columns: 1fr;
    height: auto;
    padding: 16px;
    gap: 14px;
    border-radius: 0px;
    margin-bottom: 0;
  }

  .desktop-reasons__number {
    font-size: 30px;
  }

  .desktop-reasons__main-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .desktop-reasons__main-text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .desktop-reasons__main-features {
    padding: 16px;
  }

  .desktop-reasons__feature {
    font-size: 14px;
  }

  .desktop-reasons__main-visual {
    width: 100%;
    height: auto;
    order: -1;
  }

  .desktop-reasons__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
  }

  .desktop-reasons__card {
    padding: 16px;
    border-radius: 5px;
  }

  .desktop-reasons__card-number {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .desktop-reasons__card-title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .desktop-reasons__card-text {
    font-size: 14px;
  }

  .desktop-faq {
    padding: 60px 0;
  }

  .desktop-faq__question {
    grid-template-columns: 40px 1fr 30px;
  }

  .desktop-faq__question {
    padding: 20px 10px;
    gap: 12px;
  }

  .desktop-faq__toggle-icon {
    width: 30px;
    height: 30px;
  }

  .vps-faq__answer-inner {
    padding: 20px 10px;
    gap: 12px;
  }

  .desktop-faq__a-text {
    font-size: 14px;
  }

  .desktop-comparison__title {
    margin-bottom: 0;
  }

  .desktop-comparison__table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 0 20px; /* 左 20 維持、右はビューポートまで流す */
  }

  .desktop-comparison__table {
    font-size: 14px;
    width: 1000px;
    max-width: none;
  }

  .desktop-comparison__table th,
  .desktop-comparison__table td {
    width: auto;
    min-width: 100px;
  }

  .desktop-comparison__header {
    height: 60px;
    font-size: 14px;
  }

  .desktop-comparison__header--winserver {
    font-size: 16px;
  }

  .desktop-comparison__cell {
    height: auto;
    font-size: 14px;
    padding: 8px 4px;
  }

  .desktop-comparison__cell--winserver {
    font-size: 16px;
  }

  .desktop-comparison__note {
    font-size: 12px;
    padding: 0;
  }

  .desktop-difference {
    padding: 0 0 60px;
  }

  .desktop-difference__title {
    margin-bottom: 0;
  }

  .desktop-difference__table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 0 20px; /* 左 20 維持、右はビューポートまで流す */
  }

  .desktop-difference__table {
    font-size: 14px;
    width: 1000px;
    max-width: none;
  }

  .desktop-difference__table th,
  .desktop-difference__table td {
    width: auto;
    min-width: 100px;
  }

  .desktop-trust {
    padding: 60px 0 0;
  }

  .desktop-trust__title {
    margin-bottom: 20px !important;
  }

  .desktop-trust__description {
    font-size: 14px;
    padding: 0;
    margin: 0 auto 30px;
  }

  .desktop-trust__description-title {
    font-size: 18px;
  }

  /* グリッドを1カラムに、各カードを「アイコン左 60px + 見出し/テキスト右」の横レイアウト */
  .desktop-trust__grid {
    grid-template-columns: 1fr;
  }

  .desktop-trust__card {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-areas:
      "icon title"
      "icon text";
    align-items: flex-start;
    column-gap: 16px;
    padding: 20px;
    text-align: left;
  }

  .desktop-trust__icon {
    grid-area: icon;
    width: 60px;
    margin-bottom: 0;
  }

  .desktop-trust__icon img {
    width: 60px;
    height: 60px;
  }

  .desktop-trust__card-title {
    grid-area: title;
    font-size: 16px;
    margin: 0 0 10px;
  }

  .desktop-trust__card-text {
    grid-area: text;
    font-size: 14px;
  }

  /* ----- 個別調整 ----- */

  /* PC で <br> を入れている長文を mobile では1行化（手動<br>を消す） */
  .desktop-problems__text br,
  .desktop-problems__solution-text br,
  .desktop-reasons__card-text br {
    display: none;
  }

  /* よくある失敗の人型イラスト(::before)はモバイルで非表示 */
  .desktop-failures__problem::before {
    display: none;
  }

  /* FAQ リストと「その他のよくある質問はこちら」ボタンの間隔 */
  .desktop-faq__list {
    margin-bottom: 30px;
  }

  .desktop-mv__badge {
    font-size: 16px;
  }

  .desktop-mv__trial-btn::after {
    width: 16px;
    height: 16px;
  }

  .desktop-mv__price-value {
    font-size: 16px;
  }
  .desktop-mv__trial-note {
    font-size: 14px;
  }
  .section-title {
    font-size: 22px;
  }
  .section-lead {
    font-size: 14px;
  }
  .desktop-about__illust-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .desktop-problems__solution-title {
    font-size: 22px;
  }
  .desktop-necessity__label {
    font-size: 18px;
  }
  .desktop-necessity__subtitle {
    font-size: 14px;
  }
  .desktop-necessity__item {
    font-size: 14px;
  }
  .desktop-necessity__result {
    font-size: 14px;
  }
  .desktop-necessity__recommend-text {
    font-size: 18px;
  }
  .desktop-capabilities__subtitle {
    font-size: 14px;
  }
  .desktop-capabilities__card-title {
    font-size: 16px;
  }
  .desktop-capabilities__scenes-title {
    font-size: 22px;
  }
  .desktop-capabilities__scenes-title {
    font-size: 18px;
  }
  .desktop-capabilities__cta-btn {
    font-size: 16px;
  }

  .desktop-reasons__card-number {
    font-size: 22px;
  }

  .desktop-faq__q-text {
    font-size: 14px;
  }
  .desktop-faq__a-text {
    font-size: 14px;
  }

  .desktop-trust__description-title {
    font-size: 18px;
  }

  .desktop-about__illust-content {
    margin-bottom: 20px;
  }

  .desktop-trial-top-cta {
    padding-top: 20px;
  }

  .desktop-recommend_build__apply-button {
    max-width: 343px;
    height: 52px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .desktop-comparison__table {
    width: 660px;
  }
  .desktop-difference__table {
    width: 660px;
  }
  .desktop-about__note p {
    font-size: 14px;
  }
}
