/* 楽々選定ページ専用スタイル */

img.check {
  width: 30px;
  height: auto;
  object-fit: contain;
}

.main {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  /* height: 100vh; */
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.btn-primary.btn-alternate {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  width: 96px;
}

.btn-secondary:hover {
  background: #000000;
  color: #ffffff;
}

.btn-link {
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 16px;
  font-weight: bold;
}

/* .btn-link:hover {
  color: #666666;
} */

.chevron-right {
  width: 6.69px;
  height: 11.62px;
}

/* ヒーローセクション */
.hero-section {
  /* background: linear-gradient(
    90deg,
    rgba(152, 149, 248, 1) 0%,
    rgba(242, 169, 224, 1) 51%,
    rgba(224, 102, 112, 1) 100%
  ); */
  /* padding: 112px 0; */
  position: relative;
  overflow: hidden;
}
.hero-section video {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  text-align: center;
  /* max-width: 1280px; */
  margin: 0 auto;
  /* padding: 0 80px; */
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.tagline-wrapper {
  display: flex;
  align-items: center;
}

.tagline {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.heading {
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0;
}
.hero-section .heading {
  text-shadow: none;
}

.text {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  max-width: 800px;
  margin: 0;
}
.hero-section .text {
  color: #333;
}

.actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.actions .btn-link {
  color: #333;
  border: 1px solid #333;
}
/* .hero-decoration {
  position: absolute;
  right: 112px;
  bottom: 28px;
  width: 122.62px;
  height: 116.31px;
  background: rgba(217, 217, 217, 0.3);
  border-radius: 13px;
} */

/* フィーチャーセクション */
.feature-section {
  /* background: #ffffff; */
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

.feature-section.reverse .feature-content {
  flex-direction: row-reverse;
}

.feature-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 80px;
  /* max-width: 1280px; */
  margin: 0 auto;
  /* padding: 0 80px; */
}

.feature-image {
  flex: 1;
  /* height: 600px; */
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.subheading {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  margin: 0;
  text-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 4px;
}

.feature-item {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  margin: 0;
  text-align: start;
}

.security {
  background: none;
}
.security-text .section-description {
  color: #fff;
}

/* 料金プランセクション */
.price {
  background: #ffffff;
  padding: 112px 64px;
  border-top: 1px solid #000000;
}
.price .heading {
  text-shadow: none;
  color: #333;
}
.pricing {
  max-width: 960px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.pricing-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pricing-table-wrap::-webkit-scrollbar {
  height: 8px;
}
.pricing-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.pricing-table td span {
  font-size: 0.7rem;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
}
.pricing-table th {
  width: 32%;
  background: #f9fafb;
  font-weight: 700;
  color: #111827;
  border-right: 1px solid #e5e7eb;
}
.pricing-table td {
  color: #374151;
}
.pricing-table tr + tr th,
.pricing-table tr + tr td {
  border-top: 1px solid #e5e7eb;
}
.pricing-note {
  color: #6b7280;
  font-size: 14px;
}
.price .actions {
  justify-content: flex-start;
}
.price .btn.btn-primary {
  padding: 12px 20px;
}

/* 装飾要素 */
/* .feature-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.decoration {
  position: absolute;
  background: rgba(217, 217, 217, 0.3);
  border-radius: 13px;
}

.decoration-1 {
  right: 141px;
  top: 640px;
  width: 197.5px;
  height: 190.27px;
}

.decoration-2 {
  left: 141px;
  top: -6px;
  width: 129.1px;
  height: 126.4px;
}

.decoration-3 {
  left: -21px;
  top: 627px;
  width: 201.62px;
  height: 197.5px;
}

.decoration-4 {
  left: 408px;
  top: 47px;
  width: 66.24px;
  height: 64.88px;
}

.decoration-5 {
  right: 870px;
  top: 712px;
  width: 66.24px;
  height: 64.88px;
}

.decoration-6 {
  left: 300px;
  top: 300px;
  width: 155.76px;
  height: 150.62px;
}

.decoration-7 {
  right: 944px;
  top: 428px;
  width: 198.9px;
  height: 198.5px;
} */

/* その他のサービスセクション */
.other-services {
  background: #ffffff;
  padding: 112px 64px;
  border-top: 1px solid #000000;
}
.other-services .heading {
  text-shadow: none;
  color: #333;
}

.services-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.services-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.service-item {
  background: linear-gradient(90deg, #ad27fa 0%, #c61f57 50%, #941779 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 8px 16px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: all 0.5s;
}
.service-item:hover {
  transform: translateY(-5px);
  transition: all 0.5s;
}

.service-title {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
  margin: 0 0 16px 0;
}

.service-description {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

/* CTAセクション */
/* .cta-section {
  background: url("../img/AdobeStock_298585217.jpeg") center/cover no-repeat;
  position: relative;
  height: 417px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.cta-content {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 119px 210px;
  border-radius: 8px;
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}

.cta-content .heading {
  color: #ffffff;
  margin-bottom: 32px;
}

.cta-content .text {
  color: #ffffff;
  margin-bottom: 32px;
}

.cta-content .actions {
  justify-content: center;
} */

/* レスポンシブデザイン */

@media (max-width: 768px) {
  /* .nav-content {
    padding: 0 20px;
  } */

  .nav-links {
    gap: 32px;
  }
  .feature-section {
    padding: 60px 0;
  }

  /* .hero-content,
  .feature-content,
  .services-content {
    padding: 0 20px;
  } */

  .feature-content {
    flex-direction: column-reverse;
    gap: 0px;
  }

  .feature-section.reverse .feature-content {
    flex-direction: column;
  }

  .heading {
    font-size: 36px;
  }

  .subheading {
    font-size: 28px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .credits-row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  /* 料金表の最小幅とパディング調整 */
  .pricing-table {
    min-width: 720px;
  }
  .price {
    padding: 60px 20px;
  }
}

@media (max-width: 520px) {
  .heading {
    font-size: 28px;
  }
  .text {
    font-size: 16px;
  }
  .hero-content {
    padding: 0 24px;
    gap: 40px;
  }
  .subheading {
    font-size: 20px;
  }

  .actions {
    flex-direction: column;
    gap: 16px;
  }

  .security-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .other-services {
    background: #ffffff;
    padding: 112px 0px;
    border-top: 1px solid #000000;
  }

  .price {
    padding: 112px 0px;
  }
  .pricing-table {
    min-width: 640px;
  }
  .cta-title {
    font-size: 32px;
  }
}
