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

a {
  color: #000000;
  text-decoration: none;
}

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 {
  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;
  margin: 0 auto;
}

.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;
} */

/* お知らせ一覧 */
/* --------------------------------------------------- */
.news-box ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin: 100px 0;
}

.content-inner {
  padding: 8px;
}

.news-box ul li {
  background: #fff3ef;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
}

.news-box ul li:hover {
  transform: translateY(-10px);
  transition: all 0.5s;
}

.time-tag {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.time-tag .tag {
  background: #e73c7e;
  color: #fff;
  padding: 0 3px;
  border-radius: 4px;
}

.time-tag .tag a {
  color: #fff;
}

/* ページネーションの汎用スタイル */
.news-box .nav-links ul {
  background: none;
  margin-top: 32px;
}

.news-box .nav-links ul li {
  display: flex;
  padding: 8px;
  background: none;
  box-shadow: none;

}

.news-box .nav-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.news-box .nav-links li>* {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  height: 45px;
}

.news-box .nav-links li>*:not(.dots) {
  width: 45px;
  border-radius: 50%;
  color: #000000;
  background: #efefef;
  transition: color 0.3s ease, background 0.3s ease;
}

.news-box .nav-links li>.current,
.news-box .nav-links li>a:hover {
  color: #ffffff;
  background: #000000;
}

/* フィーチャーセクション */
/* .feature-section {
  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;

  margin: 0 auto;
}

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

/* .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: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
  text-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.security {
  background: none;
} */

/* 料金プランセクション */
/* .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 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;
  text-align: center;
}
.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;
} */

/* レスポンシブデザイン */
@media (max-width: 1200px) {

  .hero-content,
  .feature-content,
  .services-content {
    padding: 0 40px;
  }

  .cta-content {
    padding: 80px 100px;
  }
}

@media (max-width: 768px) {

  /* .nav-content {
    padding: 0 20px;
  } */

  .nav-links {
    gap: 32px;
  }

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

  .news-box ul {
    grid-template-columns: 1fr 1fr;

  }

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

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

  .heading {
    font-size: 36px;
  }

  .subheading {
    font-size: 28px;
  }

  .cta-content {
    padding: 60px 40px;
  }

  .footer {
    padding: 60px 20px;
  }

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

  .credits-row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 520px) {
  /* .nav-content {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    height: auto;
  } */

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

  .hero-content {
    gap: 40px;
  }

  .heading {
    font-size: 28px;
  }

  .text {
    font-size: 16px;
  }

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

  .news-box ul {
    grid-template-columns: 1fr;

  }

  .cta-content {
    padding: 40px 20px;
  }
}
