/* YTGuard Value ページ専用スタイル */

/* 動画セクション */
.ytguard-value-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.ytguard-value-mv__video {
  position: relative;
  width: 70%;
  height: 0;
  padding-bottom: 39.375%; /* 16:9 アスペクト比 (70% * 56.25%) */
}

@media (max-width: 749px) {
  .ytguard-value-mv__video {
    width: 90%;
    padding-bottom: 50.625%; /* 16:9 アスペクト比 (90% * 56.25%) */
  }
}

.ytguard-value-mv__videoElement {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* メインコンテンツエリア */
.ytguard-value-main {
  padding-top: 0;
  padding-bottom: 4rem;
}

@media (max-width: 749px) {
  .ytguard-value-main {
    padding-top: 0;
    padding-bottom: 2.4rem;
  }
}

/* セクションスタイル（ytguardページと同じ） */
.ytguard-section {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid #e0e0e0;
}

.ytguard-section:first-of-type,
.ytguard-section--first {
  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__content {
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 749px) {
  .ytguard-section__content {
    width: 90%;
  }
}

.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__exampleBox {
  background-color: #f8f8f8;
  border-radius: 1.2rem;
  padding: 2.4rem 3rem;
  margin: 3rem auto;
  text-align: center;
  max-width: 800px;
}

@media (max-width: 749px) {
  .ytguard-section__exampleBox {
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
  }
}

.ytguard-section__exampleTitle {
  font-weight: 700;
  color: #393636;
  margin: 0 0 1.6rem 0;
  line-height: 1.8;
  text-align: center;
}

@media (min-width: 750px) {
  .ytguard-section__exampleTitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 749px) {
  .ytguard-section__exampleTitle {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
}

.ytguard-section__exampleList {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  color: #393636;
  display: inline-block;
  text-align: left;
}

.ytguard-section__exampleList li {
  line-height: 1.8;
  margin-bottom: 0.8rem;
  text-align: left;
  position: relative;
  padding-left: 1.5rem;
}

.ytguard-section__exampleList li:last-child {
  margin-bottom: 0;
}

.ytguard-section__exampleList li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #393636;
}

/* exampleBox内のリストは✔で表示 */
.ytguard-section__exampleBox .ytguard-section__exampleList li::before {
  content: "✔";
}

@media (min-width: 750px) {
  .ytguard-section__exampleList li {
    font-size: 1.6rem;
  }
}

@media (max-width: 749px) {
  .ytguard-section__exampleList li {
    font-size: 1.4rem;
  }
}

.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__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--inline {
  margin: 2rem auto 3rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media (max-width: 749px) {
  .ytguard-section__list--inline {
    margin: 1.5rem auto 2rem auto;
  }
}

.ytguard-section__list--inline li {
  text-align: left;
  width: auto;
  max-width: 100%;
}

/* 箇条書きリスト（•マーク） */
.ytguard-section__list--bullet {
  margin: 2rem 0 0 0;
  width: 100%;
}

.ytguard-section__list--bullet li {
  text-align: left;
  color: #000;
}

.ytguard-section__list--bullet li::before {
  content: '•';
  color: #000;
}

.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__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__box--narrow {
  width: 60%;
  margin-bottom: 3rem;
}

@media (max-width: 749px) {
  .ytguard-section__box--narrow {
    width: 85%;
    margin-bottom: 2rem;
  }
}

.ytguard-section__list li:last-child {
  margin-bottom: 0;
}

.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__example {
  margin-top: 2rem;
}

.ytguard-section__example p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 750px) {
  .ytguard-section__example p {
    font-size: 1.6rem;
  }
}

@media (max-width: 749px) {
  .ytguard-section__example p {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
}

.ytguard-section__exampleList {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}

.ytguard-section__exampleItem {
  position: relative;
  padding-left: 3rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

@media (min-width: 750px) {
  .ytguard-section__exampleItem {
    font-size: 1.6rem;
  }
}

@media (max-width: 749px) {
  .ytguard-section__exampleItem {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}

.ytguard-section__exampleItem.-success::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00a5bd;
  font-weight: bold;
  font-size: 1.8rem;
}

.ytguard-section__exampleItem.-error::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: bold;
  font-size: 1.8rem;
}

@media (max-width: 749px) {
  .ytguard-section__exampleItem.-success::before,
  .ytguard-section__exampleItem.-error::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__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内リンク（service/ytguardと同じデザイン） */
.faqItem__A .link-blue {
  color: #007bff;
  text-decoration: underline;
  transition: color 0.3s;
}
.faqItem__A .link-blue:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* セクションコンテンツ内の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 3つの特徴セクション */
.ytguard-features {
  padding: 4rem 0;
  margin: 3rem 0;
  text-align: center;
}

@media (max-width: 749px) {
  .ytguard-features {
    padding: 3rem 0;
    margin: 2rem 0;
  }
}

.ytguard-features__title {
  color: #393636;
  font-weight: 700;
  margin: 0 0 3rem 0;
  text-align: center;
}

@media (min-width: 750px) {
  .ytguard-features__title {
    font-size: 2.4rem;
  }
}

@media (max-width: 749px) {
  .ytguard-features__title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

.ytguard-features__list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: nowrap;
}

@media (max-width: 749px) {
  .ytguard-features__list {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}

.ytguard-features__item {
  background-color: #fff;
  border: 2px solid #00a5bd;
  border-radius: 1.2rem;
  padding: 2.4rem 2rem;
  position: relative;
  flex: 1;
  max-width: 300px;
  min-width: 250px;
  text-align: center;
}

@media (max-width: 749px) {
  .ytguard-features__item {
    max-width: 100%;
    width: 100%;
    min-width: auto;
    padding: 2rem 1.6rem;
  }
}

.ytguard-features__number {
  position: absolute;
  top: -1.2rem;
  left: 2rem;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #00a5bd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  z-index: 1;
}

@media (max-width: 749px) {
  .ytguard-features__number {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.4rem;
    top: -1rem;
    left: 1.6rem;
  }
}

.ytguard-features__itemTitle {
  color: #393636;
  font-weight: 700;
  margin: 1.6rem 0 1.2rem 0;
  text-align: center;
}

@media (min-width: 750px) {
  .ytguard-features__itemTitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 749px) {
  .ytguard-features__itemTitle {
    font-size: 1.6rem;
    margin: 1.2rem 0 1rem 0;
  }
}

.ytguard-features__separator {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 0 auto 1.6rem;
}

@media (max-width: 749px) {
  .ytguard-features__separator {
    margin-bottom: 1.2rem;
  }
}

.ytguard-features__icon {
  margin: 0 auto 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
}

@media (max-width: 749px) {
  .ytguard-features__icon {
    width: 6rem;
    height: 6rem;
    margin-bottom: 1.2rem;
  }
}

.ytguard-features__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ytguard-features__text {
  color: #393636;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

@media (min-width: 750px) {
  .ytguard-features__text {
    font-size: 1.6rem;
  }
}

@media (max-width: 749px) {
  .ytguard-features__text {
    font-size: 1.4rem;
  }
}

/* 料金プランセクション */
.ytguard-pricing {
  background-color: #fff;
  border: 2px solid #00a5bd;
  border-radius: 1.2rem;
  padding: 3rem;
  margin: 3rem auto;
  max-width: 800px;
  position: relative;
  text-align: center;
}

@media (max-width: 749px) {
  .ytguard-pricing {
    padding: 2.4rem 2rem;
    border-radius: 1rem;
    margin: 2rem auto;
  }
}

.ytguard-pricing__badge {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e74c3c;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.6rem;
  white-space: nowrap;
  z-index: 1;
}

@media (max-width: 749px) {
  .ytguard-pricing__badge {
    font-size: 1.4rem;
    padding: 0.6rem 1.6rem;
    top: -1.2rem;
  }
}

.ytguard-pricing__headline {
  color: #393636;
  font-weight: 700;
  margin: 2rem 0 1.6rem 0;
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 750px) {
  .ytguard-pricing__headline {
    font-size: 2rem;
  }
}

@media (max-width: 749px) {
  .ytguard-pricing__headline {
    font-size: 1.6rem;
    margin: 1.6rem 0 1.2rem 0;
  }
}

.ytguard-pricing__highlight {
  color: #00a5bd;
  font-weight: 700;
}

.ytguard-pricing__description {
  color: #393636;
  line-height: 1.8;
  margin: 0 0 2.4rem 0;
  text-align: center;
}

@media (min-width: 750px) {
  .ytguard-pricing__description {
    font-size: 1.6rem;
  }
}

@media (max-width: 749px) {
  .ytguard-pricing__description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}

/* 導入ステップセクション */
.ytguard-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: nowrap;
  margin: 3rem 0;
}

@media (max-width: 749px) {
  .ytguard-steps {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
  }
}

.ytguard-steps__item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 1.2rem;
  padding: 2.4rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 300px;
  min-width: 250px;
  text-align: center;
}

@media (max-width: 749px) {
  .ytguard-steps__item {
    max-width: 100%;
    width: 100%;
    min-width: auto;
    padding: 2rem 1.6rem;
  }
}

.ytguard-steps__number {
  color: #00a5bd;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

@media (max-width: 749px) {
  .ytguard-steps__number {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.ytguard-steps__title {
  color: #393636;
  font-weight: 700;
  margin: 0 0 1.2rem 0;
  text-align: center;
}

@media (min-width: 750px) {
  .ytguard-steps__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 749px) {
  .ytguard-steps__title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}

.ytguard-steps__description {
  color: #393636;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

@media (min-width: 750px) {
  .ytguard-steps__description {
    font-size: 1.6rem;
  }
}

@media (max-width: 749px) {
  .ytguard-steps__description {
    font-size: 1.4rem;
  }
}

/* 安心ポイントセクション */
.ytguard-reassurance__title {
  color: #00a5bd;
  font-weight: 700;
  text-align: center;
  margin: 0 0 2rem 0;
}

@media (min-width: 750px) {
  .ytguard-reassurance__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 749px) {
  .ytguard-reassurance__title {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
}

.ytguard-reassurance {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}

.ytguard-reassurance__item {
  color: #393636;
  line-height: 1.8;
  margin: 0 0 1.2rem 0;
  text-align: center;
}

.ytguard-reassurance__item:last-child {
  margin-bottom: 0;
}

@media (min-width: 750px) {
  .ytguard-reassurance__item {
    font-size: 1.6rem;
  }
}

@media (max-width: 749px) {
  .ytguard-reassurance__item {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}

/* 導入企業のお声セクション */
.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;
  }
}

/* 売上公式セクション */
.revenue-formula {
  background-color: #f0f8fa;
  border-radius: 2rem;
  padding: 4rem 3rem;
  margin: 3rem 0;
  text-align: center;
}

@media (max-width: 749px) {
  .revenue-formula {
    padding: 3rem 2rem;
    border-radius: 1.6rem;
    margin: 2rem 0;
  }
}

.revenue-formula__title {
  color: #00a5bd;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1.6rem 0;
  text-align: center;
}

@media (min-width: 750px) {
  .revenue-formula__title {
    font-size: 3.6rem;
  }
}

@media (max-width: 749px) {
  .revenue-formula__title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }
}

.revenue-formula__titleLine {
  display: block;
}

.revenue-formula__subtitle {
  color: #393636;
  line-height: 1.8;
  margin: 0 0 3rem 0;
  text-align: center;
}

@media (min-width: 750px) {
  .revenue-formula__subtitle {
    font-size: 1.6rem;
  }
}

@media (max-width: 749px) {
  .revenue-formula__subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}

.revenue-formula__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 0 3rem 0;
  flex-wrap: wrap;
}

@media (max-width: 749px) {
  .revenue-formula__flow {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .revenue-formula__flow {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .revenue-formula__arrow {
    transform: rotate(90deg);
  }
}

.revenue-formula__box {
  border-radius: 1.2rem;
  padding: 1.8rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  box-sizing: border-box;
}

@media (max-width: 749px) {
  .revenue-formula__box {
    padding: 1.4rem 1.8rem;
    min-width: 110px;
    border-radius: 1rem;
  }
}

.revenue-formula__box--visit,
.revenue-formula__box--button {
  background-color: #00a5bd;
  color: #fff;
}

.revenue-formula__box--success {
  background-color: #fff;
  border: 2px solid #e74c3c;
  color: #e74c3c;
}

.revenue-formula__boxText {
  font-weight: 600;
  white-space: nowrap;
}

@media (min-width: 750px) {
  .revenue-formula__boxText {
    font-size: 1.6rem;
  }
}

@media (max-width: 749px) {
  .revenue-formula__boxText {
    font-size: 1.3rem;
  }
}

.revenue-formula__arrow {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #393636;
  flex-shrink: 0;
}

@media (max-width: 749px) {
  .revenue-formula__arrow {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 10px;
  }
}

.revenue-formula__description {
  color: #393636;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

@media (min-width: 750px) {
  .revenue-formula__description {
    font-size: 1.6rem;
  }
}

@media (max-width: 749px) {
  .revenue-formula__description {
    font-size: 1.4rem;
  }
}

