/* Productセクション */
.product-section,
.solution-section {
  padding: 80px 0;
  background-color: var(--greyback);
  position: relative;
  overflow: hidden;
  padding-bottom: 300px;
}

/* .product-section .section-header,
.solution-section .section-header {
  text-align: left;
  margin-bottom: 40px;
  padding-left: 20px;
} */

.product-section .title-with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.product-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-item:hover .product-image img {
  transform: scale(1.1);
}

.product-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 15px;
  color: var(--text-color);
}

.product-description {
  color: var(--light-text);
  margin: 0 0 20px;
  line-height: 1.6;
}

.product-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

.product-link i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.product-link:hover {
  color: var(--secondary-color);
}

.product-link:hover i {
  transform: translateX(5px);
}

.product-more {
  text-align: center;
}

.product-card-container {
  position: relative;
  width: 775px;
  max-width: 100%;
  margin: 80px auto 60px;
}

.one-ai-call-page .section-01 .card {
  margin: 100px auto 60px;
}

.product-page.one-ai-call-page .section-01 {
  padding: 250px;
}

@media (max-width: 1200px) {
  .product-page.one-ai-call-page .section-01 {
    padding: 150px;
  }
}

@media (max-width: 992px) {
  .product-page.one-ai-call-page .section-01 {
    padding: 100px;
  }

  .product-page .card-body img {
    width: 100% !important;
    max-width: 400px !important;
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .product-page.one-ai-call-page .section-01 {
    padding: 60px 20px;
  }

  .product-page .card {
    padding: 50px 30px;
  }

  .product-page .card-body img {
    width: 100% !important;
    max-width: 350px !important;
    height: auto !important;
  }
}

@media (max-width: 576px) {
  .product-page.one-ai-call-page .section-01 {
    padding: 40px 15px;
  }

  .product-page .card {
    padding: 40px 20px;
  }

  .product-page .card-body img {
    width: 100% !important;
    max-width: 300px !important;
    height: auto !important;
  }
}

.product-background-image {
  position: absolute;
  z-index: 0;
}

.product-bg-1 {
  width: 388px;
  height: 282px;
  background-image: url("../assets/images/product-background-01.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 230px;
  left: -100px;
}

.product-bg-2 {
  width: 383px;
  height: 340px;
  background-image: url("../assets/images/product-background-02.png");
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 150px;
  right: -80px;
}

.product-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.product-card .product-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0 0;
}

.product-card .product-image img {
  margin: 30px;
  width: 377px;
  height: 87px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s;
}

.product-card .product-content {
  position: relative;
  padding: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.product-card .product-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.36em;
  margin: 0 0 25px;
  color: var(--text-color);
  text-align: center;
}

.product-card .product-logo {
  margin: 20px 0;
  max-width: 200px;
}

.product-card .product-logo img {
  max-width: 100%;
  height: auto;
}

/* 製品ページ専用スタイル */
.page-hero {
  background-color: var(--primary-color);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.product-overview-section {
  padding: 80px 0;
  background-color: #fff;
}

.product-overview-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.product-overview-text {
  flex: 1;
}

.product-overview-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.product-overview-image {
  flex: 1;
}

.product-overview-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* お問い合わせセクション */
.contact-section {
  background-color: var(--light-background);
  padding: 60px 0;
  text-align: center;
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-color);
}

.contact-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--light-text);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .product-overview-content {
    flex-direction: column;
  }

  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .page-title {
    font-size: 2rem;
  }

  .page-description {
    font-size: 1rem;
  }
}

.product-page .section {
  padding: 40px 0 200px 0;
  background-color: var(--greyback);
}

.product-page .card {
  background: #ffffff;
  /* shadow02 */
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  width: 664px;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 0px 60px 0px;
}

.product-page .card-body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-page .card-body img {
  width: 486px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* プロダクトページ セクション02 */
/* .product-page .section-02 {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
} */

.product-page .section-02 .section-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.36em;
  color: #4f4cd7;
  margin-bottom: 60px;
}

.product-page .section-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.36em;
  color: var(--text-color);
  margin-bottom: 60px;
}

.product-page .section-title.mb-0 {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.36em;
  color: #4f4cd7;
  margin-bottom: 0;
}

.product-page .challenges-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.product-page .challenges-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
  padding: 40px;
  position: relative;
}

.product-page .challenge-items {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.product-page .challenge-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 20px;
}

.product-page .challenge-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.product-page .number-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
}

.product-page .challenge-item .number-circle {
  background-color: #f5f6f8;
}

.product-page .number-circle span {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--c1);
}

.product-page .challenge-icon {
  margin-top: 30px;
  margin-bottom: 20px;
}

.product-page .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-page .challenge-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.36em;
  margin-bottom: 20px;
}

.product-page .challenge-icon-large {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page .challenge-icon-large img {
  max-width: 100%;
  max-height: 100%;
}

.product-page .solutions-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
  padding: 40px;
  display: flex;
  gap: 40px;
  position: relative;
}

.product-page .solutions-image {
  flex: 0 0 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page .solutions-image img {
  max-width: 100%;
  height: auto;
}

.product-page .solutions-items {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.product-page .solution-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  width: 778px;
  max-width: 100%;
}

.product-page .solution-number {
  flex: 0 0 auto;
}

.product-page .solution-item .number-circle {
  background-color: #fff;
}

.product-page .solution-text {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.36em;
  margin: 0;
  padding-top: 10px;
  text-align: left;
}

.product-page .section-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.product-page .section-bg img {
  width: 100%;
  height: auto;
}

/* プロダクトページ セクション03 - One AI Callの特徴 */
/* .product-page .section-03 {
  padding: 80px 0;
  position: relative;
} */

.product-page .section-03 .section-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.36em;
  color: #4f4cd7;
  margin-bottom: 60px;
}

.product-page .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-page .feature-cards-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.product-page .feature-card {
  display: flex;
  gap: 30px;
  background-color: var(--greyback);
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s ease;
  width: 990px;
}

.feature-card .feature-image {
  max-width: 534px;
}

.product-page .feature-card.even .feature-content {
  padding-left: 50px;
}

.product-page .feature-card:hover {
  transform: translateY(-5px);
}

.product-page .feature-image {
  flex: 0 0 auto;
}

.product-page .image-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page .image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page .feature-content {
  flex: 1;
}

.product-page .feature-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.36em;
  margin-top: 0;
  margin-bottom: 15px;
  color: #000;
}

.product-page .feature-description {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.36em;
  color: #000;
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
  .product-page .challenge-items {
    flex-direction: column;
    align-items: center;
  }

  .product-page .challenge-item {
    max-width: 400px;
  }

  .product-page .solutions-card {
    flex-direction: column;
  }

  .product-page .solutions-image {
    margin: 0 auto;
  }

  .product-page .features-grid {
    grid-template-columns: 1fr;
  }

  .product-page .feature-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
  }
}

@media (max-width: 768px) {
  .product-page .section-02 .section-title,
  .product-page .section-03 .section-title {
    font-size: 24px;
  }

  .product-page .challenge-title,
  .product-page .solution-text,
  .product-page .feature-title {
    font-size: 22px;
  }

  .product-page .number-circle {
    width: 50px;
    height: 50px;
  }

  .product-page .number-circle span {
    font-size: 30px;
  }

  .product-page .feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
  }

  .product-page .feature-card.even .feature-content {
    padding-left: 0;
  }

  .product-page .image-circle {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }

  .product-page .flow-content {
    flex-direction: column;
    align-items: center;
  }

  .product-page .flow-header {
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .product-page .section-02,
  .product-page .section-03 {
    padding: 60px 0;
  }

  .product-page .challenges-card,
  .product-page .solutions-card,
  .product-page .feature-card {
    padding: 20px 15px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .product-page .challenge-title,
  .product-page .solution-text,
  .product-page .feature-title {
    font-size: 18px;
  }

  .product-page .feature-description {
    font-size: 14px;
    line-height: 1.5;
  }

  .product-page .feature-box .feature-image {
    height: 150px;
  }

  .product-page .flow-header {
    flex-direction: column;
    gap: 8px;
  }

  .product-page .phase-label {
    font-size: 12px;
    margin-right: 0;
    margin-bottom: 5px;
  }
}

.product-page .polygon-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 30px 0;
  position: relative;
  z-index: 1;
}

.product-page .polygon-divider img {
  max-width: 100%;
  height: auto;
}

/* セクション04 - コスト削減効果 */
/* .product-page .section-04 {
  padding: 80px 0;
  background-color: var(--greyback);
} */

.product-page .cost-reduction-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
}

.product-page .cost-reduction-cards.vertical {
  grid-template-columns: 1fr;
  align-items: center;
  text-align: center;
}

.product-page .cost-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
}

.product-page .cost-card.card-inner-horizontal {
  display: grid;
  grid-template-columns: 60px auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 30px;
  width: 990px;
  max-width: 100%;
  margin: 0 auto 30px;
}

.product-page .cost-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.product-page .cost-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-page .cost-icon img {
  width: 100%;
  height: auto;
}

.product-page .cost-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.product-page .cost-description {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

@media (max-width: 992px) {
  .product-page .cost-reduction-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-page .cost-card.card-inner-horizontal {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
  }
}

@media (max-width: 768px) {
  .product-page .cost-reduction-cards {
    grid-template-columns: 1fr;
  }

  .product-page .cost-title {
    font-size: 24px;
  }

  .product-page .cost-description {
    font-size: 14px;
  }
}

/* 機能紹介セクション */
/* .product-page .section-05 {
  padding: 80px 0;
  background-color: var(--greyback);
} */

.product-page .section-05 .heading {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

/* .product-page .heading {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
} */

.product-page .features-grid-container {
  max-width: 1200px;
  margin: 0 auto;
}

.product-page .features-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.product-page .feature-box {
  flex: 1;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
}

.product-page .feature-box .feature-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-page .feature-box .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page .feature-box .feature-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-page .feature-box .feature-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 15px;
  color: #000;
}

.product-page .feature-box .feature-description {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 1.36em;
  color: #000;
}

@media (max-width: 992px) {
  .product-page .features-row {
    flex-direction: column;
    gap: 20px;
  }

  .product-page .feature-box {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .product-page .section-05 .heading {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .product-page .feature-box .feature-title {
    font-size: 22px;
  }

  .product-page .feature-box .feature-description {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .product-page .section-05 {
    padding: 50px 0;
  }

  .product-page .feature-box .feature-image {
    height: 150px;
  }
}

.product-page .section-07 .heading {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.product-page .flow-steps {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-page .flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.product-page .flow-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
  width: 100%;
  padding: 60px;
  position: relative;
  margin-bottom: 20px;
}

.product-page .phase-label {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #4f4cd7;
  text-align: center;
  margin-bottom: 0;
  margin-right: 15px;
}

.product-page .flow-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-page .flow-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  flex: 0 0 auto;
  text-align: center;
}

.product-page .icon-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.product-page .flow-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.product-page .flow-icon img {
  width: 100%;
  height: auto;
}

.product-page .flow-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin: 0;
}

.product-page .flow-title.final-phase {
  text-align: center;
  margin-bottom: 20px;
}

.product-page .flow-description {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.36em;
  flex: 1;
  margin-left: 50px;
  display: flex;
  align-items: center;
}

.product-page p.flow-description {
  text-align: left;
}

.product-page .flow-arrow {
  display: flex;
  justify-content: center;
  margin: 10px 0 30px;
}

.product-page .arrow-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #4f4cd7;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page .arrow-circle img {
  width: 24px;
  height: 24px;
}

.product-page .flow-image {
  width: 242px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
}

.product-page .flow-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
  .product-page .flow-steps {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }

  .product-page .flow-card {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .product-page .section-07 .heading {
    font-size: 18px;
    line-height: 1.4;
  }

  .product-page .flow-steps {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
  }

  .product-page .phase-label {
    font-size: 14px;
  }

  .product-page .flow-title {
    font-size: 22px;
  }

  .product-page .flow-description {
    font-size: 14px;
    margin-left: 0;
  }

  .product-page .flow-card {
    padding: 20px;
  }

  .product-page .flow-content {
    flex-direction: column;
  }

  .product-page .flow-header {
    gap: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-page .icon-title-wrapper {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 576px) {
  .product-page .flow-steps {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  .product-page .phase-label {
    font-size: 12px;
    margin-right: 0;
    margin-bottom: 5px;
  }

  .product-page .flow-title {
    font-size: 18px;
    text-align: center;
  }

  .product-page .flow-description {
    font-size: 14px;
    text-align: center;
    margin-left: 0;
  }

  .product-page .flow-card {
    padding: 15px;
  }

  .product-page .flow-header {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
  }

  .product-page .icon-title-wrapper {
    flex-direction: column;
    gap: 5px;
  }

  .product-page .flow-icon {
    width: 36px;
    height: 36px;
  }

  .product-page .arrow-circle {
    width: 30px;
    height: 30px;
  }
}

/* 料金プランセクション */
.product-page .section-08 {
  padding: 80px 0;
}

.product-page .pricing-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.product-page .pricing-card {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
  padding: 50px 80px;
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.product-page .pricing-monthly {
  margin-bottom: 20px;
}

.product-page .pricing-amount {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.36em;
  color: #4f4cd7;
  margin: 0 0 15px;
}

.product-page .pricing-annual-amount {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.36em;
  color: #000000;
}

.product-page h4.pricing-annual-amount {
  margin-bottom: 0px;
}

.product-page .pricing-note {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.36em;
  color: #000000;
  margin: 0;
}

@media (max-width: 768px) {
  .product-page .pricing-card {
    padding: 40px 30px;
  }

  .product-page .pricing-amount {
    font-size: 28px;
  }

  .product-page .pricing-annual-amount {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .product-page .section-08 {
    padding: 60px 0;
  }

  .product-page .pricing-card {
    padding: 30px 20px;
  }

  .product-page .pricing-amount {
    font-size: 24px;
  }

  .product-page .pricing-annual-amount {
    font-size: 20px;
  }

  .product-page .pricing-note {
    font-size: 14px;
  }
}

/* コンタクトセクション */

.product-page .contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.product-page .contact-bg-image {
  position: absolute;
  object-fit: cover;
}

.product-page .contact-bg-image-1 {
  top: 300px;
  left: 128px;
  width: 165px;
  height: 146px;
}

.product-page .contact-bg-image-2 {
  top: -70px;
  right: 130px;
  width: 114px;
  height: 72px;
}

.product-page .contact-card-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.product-page .contact-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
}

.product-page .contact-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  text-align: center;
}

.product-page .contact-description {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #000;
  text-align: center;
}

.product-page .contact-icon {
  margin-bottom: 30px;
}

/* .product-page .contact-icon img {
  width: 50px;
  height: 50px;
} */

.product-page .contact-button {
  margin-top: 20px;
}

.product-page .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-page .contact-btn::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../assets/images/right-arrrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px;
  transform: rotate(-90deg);
}

.product-page .contact-btn:hover {
  background-color: #333;
}

@media (max-width: 768px) {
  .product-page .section-09 {
    padding: 60px 0;
  }

  .product-page .contact-card {
    padding: 30px 20px;
  }

  .product-page .contact-title {
    font-size: 24px;
  }

  .product-page .contact-description {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .product-page .section-09 {
    padding: 40px 0;
  }

  .product-page .contact-bg-image-1,
  .product-page .contact-bg-image-2 {
    width: 50%;
    height: auto;
  }

  .product-page .contact-card {
    padding: 20px 15px;
  }
}

.product-page .cost-card.card-inner-horizontal {
  display: grid;
  grid-template-columns: 60px auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 30px;
  width: 990px;
  max-width: 100%;
}

.product-page .cost-card-column {
  display: flex;
  flex-direction: column;
}

.product-page .number-column {
  justify-content: center;
  align-items: center;
}

.product-page .title-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 270px;
}

.product-page .title-column .cost-title {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 0;
}

.product-page .description-column {
  padding-left: 10px;
}

.product-page .card-inner-horizontal .cost-description {
  text-align: left;
  margin: 0;
}

@media (max-width: 768px) {
  .product-page .cost-card.card-inner-horizontal {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
  }

  .product-page .number-column,
  .product-page .title-column {
    justify-content: center;
    align-items: center;
  }

  .product-page .title-column .cost-title {
    text-align: center;
  }

  .product-page .description-column {
    padding-left: 0;
  }

  .product-page .card-inner-horizontal .cost-description {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .product-page .cost-card.card-inner-horizontal {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px;
    padding: 20px 15px;
  }

  .product-page .title-column {
    width: 100%;
  }

  .product-page .title-column .cost-title {
    font-size: 20px;
    text-align: center;
  }

  .product-page .card-inner-horizontal .cost-description {
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
  }
}
