/* YTGuard ページ専用スタイル */

/* =========================================
   BASE STYLES
   ========================================= */
:root {
  --common-primary: #00a5bd;
  --common-primary-dark: #0061a4;
  --lp-primary: #00a5bd;
  --lp-primary-dark: #0061a4;
  --lp-accent: #ff4757;
  --lp-text-main: #333333;
  --lp-text-light: #666666;
  --lp-bg-light: #f0f9ff;
  --lp-white: #ffffff;
  --lp-shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
  --lp-shadow-float: 0 20px 50px rgba(0, 165, 189, 0.15);
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-en: "Jost", "Helvetica Neue", Arial, sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jp);
  font-size: 1.6rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 749px) {
  html {
    font-size: 50%;
  }

  body {
    font-size: 1.4rem;
  }
}

/* Reset & Utilities */
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* Layout Containers */
.l-main {
  width: 100%;
  overflow: hidden;
}

.l-inner {
  width: 90%;
  max-width: 1220px;
  margin: 0 auto;
  position: relative;
}

/* サービスページに合わせたコンテンツ幅（common.css の l-inner-sm: 1200px に準拠） */
.l-inner-sm {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-sizing: border-box;
}

/* モバイルでも幅を維持（common.css は min-width のみで width を指定するため） */
@media screen and (max-width: 749px) {
  .ytguard-main .l-inner-sm,
  .page-main .l-inner-sm {
    width: 90%;
    max-width: 1200px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Buttons */
.button {
  background: linear-gradient(90deg, #00a5bd 0%, #0061a4 100%);
  border: solid 2px #fff;
  border-radius: 5rem;
  color: #fff;
  text-align: center;
  padding: 1.4rem 4.4rem;
  display: inline-block;
  box-shadow: 0 0 6px rgba(0, 103, 117, 0.3);
  font-weight: 700;
  position: relative;
  cursor: pointer;
}

/* Typography */
.lp-section-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 5rem;
  line-height: 1.4;
  color: var(--lp-text-main);
  position: relative;
}

.lp-section-title .en {
  display: block;
  font-family: var(--font-en);
  color: var(--lp-primary);
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.lp-section-title.-center {
  text-align: center;
}

.lp-section-title.-white {
  color: #fff;
}

/* Hero Action Button */
.lp-button.-main {
  background: linear-gradient(90deg, var(--lp-primary) 0%, var(--lp-primary-dark) 100%);
  border: none;
  color: #fff;
  font-weight: 700;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-button.-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 165, 189, 0.3);
  opacity: 1;
}

.lp-button.-large {
  padding: 2rem 5rem;
  font-size: 1.8rem;
  min-width: 32rem;
  border-radius: 50px;
}

/* =========================================
   HERO SECTION (Optimized)
   ========================================= */
.lp-hero {
  position: relative;
  padding: 5rem 0 8rem;
  background: transparent;
}

.lp-hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.lp-hero__content {
  flex: 1.2;
  max-width: 65rem;
}

.lp-hero__tag {
  display: inline-block;
  background: #e0f7fa;
  color: var(--lp-primary-dark);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.6rem 1.8rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.lp-hero__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--lp-text-main);
}

.lp-hero__title .highlight {
  color: var(--lp-primary);
  position: relative;
  display: inline-block;
}

.lp-hero__title .highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 165, 189, 0.15);
  z-index: -1;
}

.lp-hero__lead {
  font-size: 1.7rem;
  line-height: 1.7;
  margin-bottom: 3.5rem;
  color: var(--lp-text-light);
}

/* 3 Features Cards in Hero (New) */
.lp-hero__features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.lp-hero-feat {
  flex: 1;
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 165, 189, 0.08);
  border: 1px solid rgba(0, 165, 189, 0.1);
  position: relative;
  transition: transform 0.3s;
}

.lp-hero-feat:hover {
  transform: translateY(-5px);
}

.lp-hero-feat__num {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 32px;
  height: 32px;
  background: var(--lp-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 4px 8px rgba(0, 165, 189, 0.3);
}

.lp-hero-feat__icon {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  display: block;
  object-fit: contain;
}

.lp-hero-feat__ttl {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--lp-text-main);
  margin-bottom: 0.5rem;
  display: block;
}

.lp-hero-feat__desc {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--lp-text-light);
  margin: 0;
}

.lp-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Visual Area：「3つの決定的な理由」の画像後ろと同じ雰囲気の1重（円＋グラデ） */
.lp-hero__visual {
  flex: 0.8;
  position: relative;
  max-width: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 縦の幅を基準にしたきれいな丸（高さ100% → 正方形 → 円） */
.lp-hero__visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 高さ100%＋aspect-ratio:1 で「縦の幅」を直径にする円 */
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(11, 162, 154, 0.25) 0%,
    rgba(11, 162, 154, 0.15) 35%,
    rgba(11, 162, 154, 0.08) 60%,
    transparent 80%
  );
  z-index: 0;
  pointer-events: none;
}

.lp-hero__visual-img {
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

/* Floating Badge */
.lp-float-badge {
  position: absolute;
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: var(--lp-shadow-card);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.3rem;
  z-index: 2;
  white-space: nowrap;
}

.lp-float-badge i {
  color: var(--lp-primary);
}

.lp-float-badge.-badge1 {
  top: 20px;
  right: -20px;
}

@keyframes lp-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Common sections mockup for structural integrity */
.dummy-header {
  height: 80px;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  font-weight: bold;
  color: #999;
}

.dummy-footer {
  height: 100px;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Hero */
@media (max-width: 960px) {
  .lp-hero__container {
    flex-direction: column;
    text-align: center;
  }

  .lp-hero__content {
    max-width: 100%;
  }

  .lp-hero__actions {
    align-items: center;
  }

  .lp-hero__features {
    justify-content: center;
  }

  .lp-hero__visual {
    display: none;
  }
}

@media (max-width: 749px) {
  .lp-hero {
    padding: 4rem 0 6rem;
  }

  .lp-hero__title {
    font-size: 2.8rem;
  }

  .lp-hero__features {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .lp-hero-feat {
    width: 100%;
    max-width: 320px;
  }

  .lp-button.-large {
    width: 100%;
    min-width: auto;
  }
}

/* ヒーローセクション */
.ytguard-hero {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

@media (max-width: 749px) {
  .ytguard-hero {
    padding-top: 2.4rem;
    padding-bottom: 4rem;
  }
}

.ytguard-hero__inner {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  position: relative;
}

@media (max-width: 749px) {
  .ytguard-hero__inner {
    flex-direction: column;
    gap: 2.4rem;
    align-items: center;
  }
}

.ytguard-hero__content {
  flex: 0 0 54%;
  max-width: 54%;
}

@media (max-width: 749px) {
  .ytguard-hero__content {
    flex: 1;
    max-width: 100%;
    width: 100%;
  }
}

.ytguard-hero__tag {
  display: inline-block;
  margin-bottom: 2rem;
}

@media (max-width: 749px) {
  .ytguard-hero__tag {
    margin-bottom: 1.6rem;
  }
}

.ytguard-hero__tag span {
  display: inline-block;
  background-color: #d4f0f4;
  color: #00a5bd;
  padding: 0.6rem 1.6rem;
  border-radius: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (max-width: 749px) {
  .ytguard-hero__tag span {
    font-size: 1.2rem;
    padding: 0.5rem 1.2rem;
    border-radius: 1.6rem;
  }
}

.ytguard-hero__title {
  margin: 0 0 2.4rem 0;
  line-height: 1.5;
  font-weight: 700;
  color: #393636;
}

@media (min-width: 750px) {
  .ytguard-hero__title {
    font-size: 4.4rem;
  }
}

@media (min-width: 750px) and (max-width: 1023px) {
  .ytguard-hero__title {
    font-size: 3.6rem;
  }
}

@media (max-width: 749px) {
  .ytguard-hero__title {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
    line-height: 1.6;
  }
}

.ytguard-hero__titleLine {
  display: block;
}

.ytguard-hero__highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.ytguard-hero__titleLine.ytguard-hero__highlight {
  display: inline-block;
}

.ytguard-hero__highlight::after {
  content: "";
  position: absolute;
  bottom: 0.15em;
  left: 0;
  right: 0;
  height: 0.5em;
  background: rgba(0, 165, 189, 0.25);
  z-index: -1;
  border-radius: 0.1em;
}

@media (max-width: 749px) {
  .ytguard-hero__highlight::after {
    height: 0.3em;
    bottom: 0.1em;
  }
}

.ytguard-hero__description {
  margin: 0 0 3rem 0;
  line-height: 1.8;
  color: #393636;
}

@media (min-width: 750px) {
  .ytguard-hero__description {
    font-size: 1.6rem;
  }
}

@media (max-width: 749px) {
  .ytguard-hero__description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}

.ytguard-hero__buttonGroup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.ytguard-hero__button {
  margin-bottom: 1rem;
}

.ytguard-hero__button .button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-right: 3.2rem;
}

.ytguard-hero__button .button::after {
  display: none;
}

.ytguard-hero__buttonIcon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  color: #fff;
}

@media (max-width: 749px) {
  .ytguard-hero__buttonIcon {
    width: 2rem;
    height: 2rem;
  }
}

.ytguard-hero__buttonGroup .ytguard-hero__note {
  margin: 0;
  color: #999;
  font-size: 1.3rem;
  line-height: 1.6;
  text-align: center;
  width: 100%;
}

@media (max-width: 749px) {
  .ytguard-hero__note {
    font-size: 1.2rem;
  }
}

.ytguard-hero__button--secondary {
  margin-top: 1.6rem;
}

@media (max-width: 749px) {
  .ytguard-hero__button--secondary {
    margin-top: 1.2rem;
  }
}

.ytguard-hero__centerButton {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  width: 100%;
}

@media (max-width: 749px) {
  .ytguard-hero__centerButton {
    margin-top: 2rem;
  }
}

.ytguard-hero__centerButton .button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-right: 3.2rem;
}

.ytguard-hero__centerButton .button::after {
  display: none;
}

.ytguard-hero__image {
  flex: 0 0 42%;
  max-width: 42%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 5.6rem;
}

@media (max-width: 749px) {
  .ytguard-hero__image {
    padding-top: 0;
  }
}

@media (max-width: 749px) {
  .ytguard-hero__image {
    flex: 1;
    max-width: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}

.ytguard-hero__imageWrap {
  position: relative;
  width: 95%;
}

@media (max-width: 749px) {
  .ytguard-hero__imageWrap {
    width: 100%;
  }
}

.ytguard-hero__image picture {
  display: block;
  width: 100%;
}

.ytguard-hero__image img.img_top {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2rem;
}

@media (max-width: 749px) {
  .ytguard-hero__image img.img_top {
    border-radius: 1.6rem;
  }
}

/* バッジ（画像の上に配置） */
.ytguard-hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 2rem;
  padding: 0.8rem 1.6rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

@media (max-width: 749px) {
  .ytguard-hero__badge {
    padding: 0.6rem 1.2rem;
    border-radius: 1.6rem;
    gap: 0.6rem;
  }
}

/* 承認率改善バッジ（右上） */
.ytguard-hero__badge--approval {
  top: 2rem;
  right: 2rem;
}

@media (max-width: 749px) {
  .ytguard-hero__badge--approval {
    top: 1rem;
    right: 1rem;
  }
}

/* 不正検知バッジ（下部） */
.ytguard-hero__badge--security {
  bottom: 2rem;
  left: 2rem;
}

@media (max-width: 749px) {
  .ytguard-hero__badge--security {
    bottom: 1rem;
    left: 1rem;
  }
}

.ytguard-hero__badgeIcon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

@media (max-width: 749px) {
  .ytguard-hero__badgeIcon {
    width: 1.6rem;
    height: 1.6rem;
  }
}

.ytguard-hero__badgeText {
  font-size: 1.4rem;
  font-weight: 600;
  color: #393636;
  white-space: nowrap;
}

@media (max-width: 749px) {
  .ytguard-hero__badgeText {
    font-size: 1.2rem;
  }
}

.ytguard-hero__badgeValue {
  font-size: 1.6rem;
  font-weight: 700;
  color: #393636;
  margin-left: 0.4rem;
}

@media (max-width: 749px) {
  .ytguard-hero__badgeValue {
    font-size: 1.4rem;
  }
}

/* 動画セクション */
.ytguard-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}

@media (max-width: 749px) {
  .ytguard-mv {
    margin-top: 4rem;
  }
}

.ytguard-mv__video {
  position: relative;
  width: 70%;
  height: 0;
  padding-bottom: 39.375%; /* 16:9 アスペクト比 (70% * 56.25%) */
}

@media (max-width: 749px) {
  .ytguard-mv__video {
    width: 90%;
    padding-bottom: 50.625%; /* 16:9 アスペクト比 (90% * 56.25%) */
  }
}

.ytguard-mv__videoElement {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* イントロセクション */
.ytguard-intro {
  margin-top: 4rem;
  margin-bottom: 6rem;
}

@media (max-width: 749px) {
  .ytguard-intro {
    margin-top: 2.4rem;
    margin-bottom: 4rem;
  }
}

.ytguard-intro__image {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  width: 100%;
}

@media (max-width: 749px) {
  .ytguard-intro__image {
    margin-bottom: 2rem;
  }
}

.ytguard-intro__image picture {
  display: block;
  width: 70%;
}

@media (max-width: 749px) {
  .ytguard-intro__image picture {
    width: 90%;
  }
}

.ytguard-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}

.ytguard-intro__text {
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.8;
}

@media (max-width: 749px) {
  .ytguard-intro__text {
    margin-bottom: 2rem;
    font-size: 1.4rem;
  }
}

@media (min-width: 750px) {
  .ytguard-intro__text {
    font-size: 1.8rem;
  }
}

.ytguard-intro__button {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.ytguard-intro__note {
  text-align: center;
  color: #999;
  font-size: 1.3rem;
  line-height: 1.6;
}

@media (max-width: 749px) {
  .ytguard-intro__note {
    font-size: 1.2rem;
  }
}

/* パンくずリスト背景 */
.breadcrumb__bg {
  background-color: #fff;
  padding: 1.6rem 0;
}

@media (max-width: 749px) {
  .breadcrumb__bg {
    padding: 1.2rem 0;
  }
}

/* パンくずリストのpadding-topを無効化（このページのみ） */
.breadcrumb {
  padding-top: 0;
}

/* 汎用セクション */
.ytguard-section {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid #e0e0e0;
}

.ytguard-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

@media (max-width: 749px) {
  .ytguard-section {
    margin-top: 4rem;
    padding-top: 4rem;
  }
  
  .ytguard-section:first-of-type {
    padding-top: 0;
  }
}

.ytguard-section__title {
  text-align: center;
  color: #00a5bd;
  font-weight: 700;
  line-height: 1.6;
}

@media (min-width: 750px) {
  .ytguard-section__title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 749px) {
  .ytguard-section__title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

.ytguard-section__box {
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0 6px rgba(0, 103, 117, 0.3);
  padding: 3rem;
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 749px) {
  .ytguard-section__box {
    padding: 2rem;
    border-radius: 1.6rem;
    width: 90%;
  }
}

.ytguard-section__subtitle {
  font-weight: 700;
  color: #00a5bd;
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 750px) {
  .ytguard-section__subtitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 749px) {
  .ytguard-section__subtitle {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
}

.ytguard-section__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.4rem 0;
}

@media (max-width: 749px) {
  .ytguard-section__list {
    margin-bottom: 2rem;
  }
}

.ytguard-section__list li {
  position: relative;
  padding-left: 3rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

@media (min-width: 750px) {
  .ytguard-section__list li {
    font-size: 1.6rem;
  }
}

@media (max-width: 749px) {
  .ytguard-section__list li {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}

.ytguard-section__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00a5bd;
  font-weight: bold;
  font-size: 1.8rem;
}

@media (max-width: 749px) {
  .ytguard-section__list li::before {
    font-size: 1.6rem;
  }
}

.ytguard-section__summary {
  text-align: center;
  font-weight: 700;
  color: #00a5bd;
  line-height: 1.8;
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 2px solid #e0e0e0;
}

@media (min-width: 750px) {
  .ytguard-section__summary {
    font-size: 1.8rem;
  }
}

@media (max-width: 749px) {
  .ytguard-section__summary {
    font-size: 1.6rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }
}

/* セクションコンテンツ（ボックス以外のレイアウト用） */
.ytguard-section__content {
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 749px) {
  .ytguard-section__content {
    width: 90%;
  }
}

/* セクションコンテンツ内のボックスは幅100% */
.ytguard-section__content .ytguard-section__box {
  width: 100%;
}

.ytguard-section__description {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 3rem;
}

@media (min-width: 750px) {
  .ytguard-section__description {
    font-size: 1.8rem;
  }
}

@media (max-width: 749px) {
  .ytguard-section__description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}

.ytguard-section__image {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  width: 100%;
}

@media (max-width: 749px) {
  .ytguard-section__image {
    margin-bottom: 2rem;
  }
}

.ytguard-section__image picture {
  display: block;
  width: 100%;
}

.ytguard-section__image img {
  width: 100%;
  height: auto;
  display: block;
}

.ytguard-section__button {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.ytguard-section__note {
  text-align: center;
  color: #999;
  font-size: 1.3rem;
  line-height: 1.6;
}

@media (max-width: 749px) {
  .ytguard-section__note {
    font-size: 1.2rem;
  }
}

/* リンクリスト */
.ytguard-section__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ytguard-section__linkItem {
  margin-bottom: 1.5rem;
}

.ytguard-section__linkItem:last-child {
  margin-bottom: 0;
}

.ytguard-section__link {
  color: #007bff;
  text-decoration: underline;
  line-height: 1.8;
  display: block;
  transition: color 0.3s;
  word-break: break-word;
}

@media (min-width: 750px) {
  .ytguard-section__link {
    font-size: 1.6rem;
  }
}

@media (max-width: 749px) {
  .ytguard-section__link {
    font-size: 1.4rem;
  }
}

.ytguard-section__link:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* FAQスタイル */
.faqList {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 750px) {
  .faqList {
    max-width: 1120px;
    margin: 0 auto;
  }
}

.faqItem + .faqItem {
  margin-top: 3rem;
}

@media (max-width: 749px) {
  .faqItem + .faqItem {
    margin-top: 1.5rem;
  }
}

.faqItem__Qbox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: #f3faff;
  border-radius: 1.4rem;
  padding: 3rem 3.5rem;
}

@media (max-width: 749px) {
  .faqItem__Qbox {
    padding: 1.5rem;
  }
}

.faqItem__Q {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  margin: 0;
  padding-left: 7rem;
}

@media (max-width: 749px) {
  .faqItem__Q {
    font-size: 1.4rem;
    padding-left: 5rem;
  }
}

.faqItem__Q::before {
  content: "Q";
  font-weight: bold;
  color: #fff;
  background: #00a5bd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 4rem;
  height: 4rem;
  margin-right: 3rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 749px) {
  .faqItem__Q::before {
    width: 3rem;
    height: 3rem;
    margin-right: 2rem;
    font-size: 1.4rem;
  }
}

.faqItem__Qbtn {
  position: relative;
  min-width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
}

@media (max-width: 749px) {
  .faqItem__Qbtn {
    min-width: 1.8rem;
    height: 1.8rem;
  }
}

.faqItem__Qbtn::before {
  content: "";
  background: url(../img/service/payment/icon_arrow.svg) center/100% no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s;
}

.faqItem.-active .faqItem__Qbtn::before {
  transform: scale(1, -1);
}

.faqItem__Abox {
  display: none;
  padding: 3rem 3.5rem 0;
}

@media (max-width: 749px) {
  .faqItem__Abox {
    padding: 1.5rem 1.5rem 0;
  }
}

.faqItem__A {
  line-height: 1.8;
  font-size: 1.6rem;
  margin: 0;
  position: relative;
  padding-left: 7rem;
}

@media (max-width: 749px) {
  .faqItem__A {
    font-size: 1.4rem;
    padding-left: 5rem;
  }
}

.faqItem__A::before {
  content: "A";
  font-weight: bold;
  color: #00a5bd;
  background: #e8f2f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 4rem;
  height: 4rem;
  margin-right: 3rem;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 749px) {
  .faqItem__A::before {
    width: 3rem;
    height: 3rem;
    margin-right: 2rem;
    font-size: 1.4rem;
  }
}

/* セクションコンテンツ内のFAQリスト */
.ytguard-section__content .faqList {
  width: 100%;
}


/* 最後のセクション */
.ytguard-section__final {
  text-align: center;
}

.ytguard-section__callout {
  background-color: #f3faff;
  border-radius: 2rem;
  padding: 3rem;
  margin: 3rem 0;
  text-align: center;
}

@media (max-width: 749px) {
  .ytguard-section__callout {
    padding: 2rem;
    border-radius: 1.6rem;
    margin: 2rem 0;
  }
}

.ytguard-section__calloutTitle {
  font-weight: 700;
  color: #00a5bd;
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 750px) {
  .ytguard-section__calloutTitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 749px) {
  .ytguard-section__calloutTitle {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
}

.ytguard-section__calloutText {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.ytguard-section__calloutText:last-child {
  margin-bottom: 0;
}

@media (min-width: 750px) {
  .ytguard-section__calloutText {
    font-size: 1.6rem;
  }
}

@media (max-width: 749px) {
  .ytguard-section__calloutText {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
}

/* メインコンテンツエリア */
.ytguard-main {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 749px) {
  .ytguard-main {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
}

/* 問題セクション */
.ytguard-problem {
  padding: 6rem 0;
  margin: 6rem 0;
}

@media (max-width: 749px) {
  .ytguard-problem {
    padding: 4rem 0;
    margin: 4rem 0;
  }
}

.ytguard-problem__label {
  text-align: center;
  color: #0ba29a;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

@media (max-width: 749px) {
  .ytguard-problem__label {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
}

.ytguard-problem__title {
  text-align: center;
  color: #393636;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 4rem 0;
}

@media (min-width: 750px) {
  .ytguard-problem__title {
    font-size: 3.2rem;
  }
}

@media (max-width: 749px) {
  .ytguard-problem__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

.ytguard-problem__cards {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
  justify-content: center;
}

@media (max-width: 749px) {
  .ytguard-problem__cards {
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 3rem;
  }
}

.ytguard-problem__card {
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 3rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 320px;
  text-align: center;
}

@media (max-width: 749px) {
  .ytguard-problem__card {
    padding: 2.4rem 1.6rem;
    max-width: 100%;
  }
}

.ytguard-problem__cardIcon {
  margin-bottom: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ytguard-problem__cardIcon img {
  width: 6rem;
  height: 6rem;
  color: #00a5bd;
}

@media (max-width: 749px) {
  .ytguard-problem__cardIcon img {
    width: 5rem;
    height: 5rem;
  }
}

.ytguard-problem__cardText {
  color: #393636;
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 749px) {
  .ytguard-problem__cardText {
    font-size: 1.4rem;
  }
}

.ytguard-problem__callout {
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 3rem;
  margin: 0 auto;
  max-width: 800px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
}

.ytguard-problem__callout::before {
  content: "";
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.2rem solid transparent;
  border-right: 1.2rem solid transparent;
  border-bottom: 1.2rem solid #fff;
}

@media (max-width: 749px) {
  .ytguard-problem__callout {
    padding: 2rem;
    border-radius: 1.2rem;
  }
  
  .ytguard-problem__callout::before {
    top: -0.8rem;
    border-left-width: 0.8rem;
    border-right-width: 0.8rem;
    border-bottom-width: 0.8rem;
  }
}

.ytguard-problem__calloutText {
  color: #393636;
  font-size: 1.8rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 749px) {
  .ytguard-problem__calloutText {
    font-size: 1.5rem;
  }
}

.ytguard-problem__calloutHighlight {
  color: #ff0000;
  font-weight: 700;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.ytguard-problem__calloutHighlight::after {
  content: "";
  position: absolute;
  bottom: 0.15em;
  left: 0;
  right: 0;
  height: 0.4em;
  background: rgba(255, 0, 0, 0.3);
  z-index: -1;
  border-radius: 0.1em;
}

@media (max-width: 749px) {
  .ytguard-problem__calloutHighlight::after {
    height: 0.3em;
    bottom: 0.1em;
  }
}

/* ソリューションセクション */
.ytguard-solution {
  padding: 6rem 0;
  margin: 6rem 0;
}

@media (max-width: 749px) {
  .ytguard-solution {
    padding: 4rem 0;
    margin: 4rem 0;
  }
}

.ytguard-solution__label {
  text-align: center;
  color: #0ba29a;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

@media (max-width: 749px) {
  .ytguard-solution__label {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
}

.ytguard-solution__title {
  text-align: center;
  color: #393636;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 4rem 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 750px) {
  .ytguard-solution__title {
    font-size: 3.2rem;
  }
}

@media (max-width: 749px) {
  .ytguard-solution__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

.ytguard-solution__content {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.ytguard-solution__item {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}

.ytguard-solution__item:last-child {
  margin-bottom: 0;
}

.ytguard-solution__item--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 749px) {
  .ytguard-solution__item {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 4rem;
  }
  
  .ytguard-solution__item--reverse {
    flex-direction: column;
  }
}

/* 画像・テキストを gap 分だけ狭めて 50%+gap+50%=100% にし、ずれを防ぐ */
.ytguard-solution__image {
  flex: 0 0 calc(50% - 2rem);
  max-width: calc(50% - 2rem);
  padding: 4rem;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ytguard-solution__image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 162, 154, 0.25) 0%, rgba(11, 162, 154, 0.15) 35%, rgba(11, 162, 154, 0.08) 60%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}

.ytguard-solution__image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 162, 154, 0.2) 0%, rgba(11, 162, 154, 0.12) 40%, rgba(11, 162, 154, 0.05) 65%, transparent 85%);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 749px) {
  .ytguard-solution__image {
    flex: 1;
    max-width: 100%;
    width: 100%;
    padding: 2rem;
  }
}

.ytguard-solution__image img {
  max-width: 80%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.ytguard-solution__text {
  flex: 0 0 calc(50% - 2rem);
  max-width: calc(50% - 2rem);
}

@media (max-width: 749px) {
  .ytguard-solution__text {
    flex: 1;
    max-width: 100%;
    width: 100%;
  }
}

.ytguard-solution__heading {
  color: #0ba29a;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 1.6rem 0;
  line-height: 1.6;
}

@media (max-width: 749px) {
  .ytguard-solution__heading {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
}

.ytguard-solution__subheading {
  color: #393636;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

@media (max-width: 749px) {
  .ytguard-solution__subheading {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
}

.ytguard-solution__description {
  color: #393636;
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 0 2.4rem 0;
}

@media (max-width: 749px) {
  .ytguard-solution__description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}

.ytguard-solution__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ytguard-solution__listItem {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
  color: #0ba29a;
  font-size: 1.6rem;
  line-height: 1.8;
}

.ytguard-solution__listItem:last-child {
  margin-bottom: 0;
}

@media (max-width: 749px) {
  .ytguard-solution__listItem {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
}

.ytguard-solution__checkIcon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

@media (max-width: 749px) {
  .ytguard-solution__checkIcon {
    width: 1.8rem;
    height: 1.8rem;
  }
}

/* 動画セクション */
.ytguard-movie {
  padding: 6rem 0;
  margin: 6rem 0;
}

@media (max-width: 749px) {
  .ytguard-movie {
    padding: 4rem 0;
    margin: 4rem 0;
  }
}

.ytguard-movie__label {
  text-align: center;
  color: #0ba29a;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

@media (max-width: 749px) {
  .ytguard-movie__label {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
}

.ytguard-movie__title {
  text-align: center;
  color: #393636;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 4rem 0;
}

@media (min-width: 750px) {
  .ytguard-movie__title {
    font-size: 3.2rem;
  }
}

@media (max-width: 749px) {
  .ytguard-movie__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

.ytguard-movie__player {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 3rem;
  background-color: #000;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 749px) {
  .ytguard-movie__player {
    margin-bottom: 2rem;
    border-radius: 1.2rem;
  }
}

.ytguard-movie__video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ytguard-movie__video.-paused {
  opacity: 1;
}

.ytguard-movie__playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s, transform 0.3s;
}

.ytguard-movie__playButton:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.ytguard-movie__playButton.-hidden {
  opacity: 0;
  pointer-events: none;
}

.ytguard-movie__playIcon {
  width: 8rem;
  height: 8rem;
  display: block;
}

@media (max-width: 749px) {
  .ytguard-movie__playIcon {
    width: 6rem;
    height: 6rem;
  }
}

.ytguard-movie__description {
  text-align: center;
  color: #393636;
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 0 3rem 0;
}

@media (max-width: 749px) {
  .ytguard-movie__description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}

.ytguard-movie__button {
  text-align: center;
  margin-bottom: 1.6rem;
}

.ytguard-movie__note {
  text-align: center;
  color: #999;
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 749px) {
  .ytguard-movie__note {
    font-size: 1.2rem;
  }
}

/* HOW TO START セクション */
.ytguard-start {
  background-color: #f0f9fa;
  padding: 6rem 0;
  margin: 6rem 0;
}

@media (max-width: 749px) {
  .ytguard-start {
    padding: 4rem 0;
    margin: 4rem 0;
  }
}

.ytguard-start__label {
  text-align: center;
  color: #0ba29a;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

@media (max-width: 749px) {
  .ytguard-start__label {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
}

.ytguard-start__title {
  text-align: center;
  color: #393636;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 4rem 0;
}

@media (min-width: 750px) {
  .ytguard-start__title {
    font-size: 3.2rem;
  }
}

@media (max-width: 749px) {
  .ytguard-start__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

.ytguard-start__steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 749px) {
  .ytguard-start__steps {
    flex-direction: column;
    gap: 2.4rem;
    align-items: center;
  }
}

.ytguard-start__step {
  flex: 1;
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

@media (max-width: 749px) {
  .ytguard-start__step {
    padding: 2.4rem 1.6rem;
    max-width: 100%;
    width: 100%;
  }
}

.ytguard-start__stepNumber {
  color: #0ba29a;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  letter-spacing: 0.1em;
}

@media (max-width: 749px) {
  .ytguard-start__stepNumber {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
}

.ytguard-start__stepIcon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  background-color: #0ba29a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ytguard-start__stepIcon img {
  width: 4rem;
  height: 4rem;
  filter: brightness(0) invert(1);
}

@media (max-width: 749px) {
  .ytguard-start__stepIcon {
    width: 6rem;
    height: 6rem;
    margin-bottom: 1.6rem;
  }
  
  .ytguard-start__stepIcon img {
    width: 3rem;
    height: 3rem;
  }
}

.ytguard-start__stepTitle {
  color: #393636;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1.6rem 0;
  line-height: 1.6;
}

@media (max-width: 749px) {
  .ytguard-start__stepTitle {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
}

.ytguard-start__stepDescription {
  color: #393636;
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 749px) {
  .ytguard-start__stepDescription {
    font-size: 1.4rem;
  }
}

.ytguard-start__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  flex-shrink: 0;
}

.ytguard-start__arrow img {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
}

@media (max-width: 749px) {
  .ytguard-start__arrow {
    display: none;
  }
}

/* 価格プランセクション */
.ytguard-plan {
  padding: 6rem 0;
  margin: 6rem 0;
  position: relative;
}

@media (max-width: 749px) {
  .ytguard-plan {
    padding: 4rem 0;
    margin: 4rem 0;
  }
}

.ytguard-plan__title {
  text-align: center;
  color: #0ba29a;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 3rem 0;
  position: relative;
  z-index: 1;
  padding-top: 0;
}

@media (min-width: 750px) {
  .ytguard-plan__title {
    font-size: 3.2rem;
  }
}

@media (max-width: 749px) {
  .ytguard-plan__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.ytguard-plan__box {
  background-color: #fff;
  border: 2px solid rgba(11, 162, 154, 0.3);
  border-radius: 2rem;
  padding: 3rem;
  margin: 0 auto 3rem;
  max-width: 800px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.ytguard-plan__box::before {
  content: "";
  position: absolute;
  top: -6rem;
  left: -6rem;
  width: 20rem;
  height: 20rem;
  background-color: rgba(11, 162, 154, 0.1);
  border-radius: 50%;
  z-index: 0;
}

@media (max-width: 749px) {
  .ytguard-plan__box::before {
    top: -4rem;
    left: -4rem;
    width: 12rem;
    height: 12rem;
  }
}

@media (max-width: 749px) {
  .ytguard-plan__box {
    padding: 2rem;
    border-radius: 1.6rem;
    margin-bottom: 2rem;
  }
}

.ytguard-plan__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
  position: relative;
  z-index: 1;
}

.ytguard-plan__cardsRow {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  width: 100%;
}

@media (max-width: 749px) {
  .ytguard-plan__cards {
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  
  .ytguard-plan__cardsRow {
    flex-direction: column;
    gap: 1.2rem;
  }
}

.ytguard-plan__card {
  background-color: rgba(11, 162, 154, 0.1);
  border-radius: 3rem;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-width: 280px;
  text-align: center;
}

@media (max-width: 749px) {
  .ytguard-plan__card {
    padding: 1.6rem 2rem;
    min-width: 100%;
    border-radius: 2rem;
  }
}

.ytguard-plan__cardLabel {
  color: #393636;
  font-size: 1.6rem;
}

@media (max-width: 749px) {
  .ytguard-plan__cardLabel {
    font-size: 1.4rem;
  }
}

.ytguard-plan__cardValue {
  color: #0ba29a;
  font-size: 2.4rem;
  font-weight: 700;
}

@media (max-width: 749px) {
  .ytguard-plan__cardValue {
    font-size: 2rem;
  }
}

.ytguard-plan__cardUnit {
  color: #393636;
  font-size: 1.6rem;
}

@media (max-width: 749px) {
  .ytguard-plan__cardUnit {
    font-size: 1.4rem;
  }
}

.ytguard-plan__cardTrial {
  color: #ff6b35;
  font-size: 1.6rem;
  font-weight: 600;
}

@media (max-width: 749px) {
  .ytguard-plan__cardTrial {
    font-size: 1.4rem;
  }
}

.ytguard-plan__cardTrialLabel {
  color: #393636;
  font-size: 1.6rem;
}

@media (max-width: 749px) {
  .ytguard-plan__cardTrialLabel {
    font-size: 1.4rem;
  }
}

.ytguard-plan__card--full {
  justify-content: center;
  text-align: center;
}

.ytguard-plan__card--full span {
  color: #393636;
  font-size: 1.6rem;
  font-weight: 600;
}

@media (max-width: 749px) {
  .ytguard-plan__card--full span {
    font-size: 1.4rem;
  }
}

.ytguard-plan__description {
  text-align: center;
  color: #393636;
  font-size: 1.8rem;
  line-height: 1.8;
  margin: 0 0 3rem 0;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

@media (max-width: 749px) {
  .ytguard-plan__description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

.ytguard-plan__button {
  text-align: center;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

.ytguard-plan__note {
  text-align: center;
  color: #999;
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

@media (max-width: 749px) {
  .ytguard-plan__note {
    font-size: 1.2rem;
  }
}

/* 導入企業のお声セクション */
.ytguard-voices {
  padding: 6rem 0;
  margin: 6rem 0;
}

@media (max-width: 749px) {
  .ytguard-voices {
    padding: 4rem 0;
    margin: 4rem 0;
  }
}

.ytguard-voices__title {
  text-align: center;
  color: #393636;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 4rem 0;
}

@media (min-width: 750px) {
  .ytguard-voices__title {
    font-size: 3.2rem;
  }
}

@media (max-width: 749px) {
  .ytguard-voices__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

.ytguard-voices__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 749px) {
  .ytguard-voices__list {
    gap: 1.6rem;
  }
}

.ytguard-voices__item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 1.6rem;
  padding: 2.4rem;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 749px) {
  .ytguard-voices__item {
    flex-direction: column;
    gap: 1.6rem;
    padding: 2rem;
    border-radius: 1.2rem;
  }
}

.ytguard-voices__logo {
  flex-shrink: 0;
  width: 15rem;
  height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
  padding: 2rem;
  box-sizing: border-box;
}

@media (max-width: 749px) {
  .ytguard-voices__logo {
    width: 12rem;
    height: 12rem;
    padding: 1.6rem;
  }
}

.ytguard-voices__logo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.ytguard-voices__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ytguard-voices__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

@media (max-width: 749px) {
  .ytguard-voices__content {
    width: 100%;
    gap: 1rem;
  }
}

.ytguard-voices__articleTitle {
  color: #393636;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 749px) {
  .ytguard-voices__articleTitle {
    font-size: 1.6rem;
  }
}

.ytguard-voices__readmore {
  color: #0ba29a;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
  align-self: flex-start;
}

.ytguard-voices__readmore:hover {
  opacity: 0.7;
}

@media (max-width: 749px) {
  .ytguard-voices__readmore {
    font-size: 1.3rem;
  }
}

