/* 10万円LP制作所 - スタイルシート */

/* リセット & 基本設定 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --border-color: #e2e8f0;
  --font-family: "Roboto", "Noto Sans JP", sans-serif;

  --primary-color: #015ab4;
  --secondary-color: #049bd7;
  --accent-orange: #f97316;
  --text-color: #002b5b;
  --text-muted: #64748b;
  --bg-color: #ffffff;
  --bg-muted: #f8fafc;
  --white: #fff;
}

body {
  color: var(--text-color);
  background-color: var(--bg-color);
  font-family: var(--font-family);
  line-height: 1.75;

  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.marker {
  background: linear-gradient(transparent 60%, #ff914287 60%);
}

/* ヘッダー */
#header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);

  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 768px) {
  .header-content {
    height: 80px;
  }
}

.logo {
  display: inline-block;
  background-image: radial-gradient(circle, rgba(4, 155, 215, 1) 0%, rgba(1, 90, 180, 1) 100%);
  -webkit-background-clip: text;
  font-size: 1.5rem;
  font-weight: 900;

  -webkit-text-fill-color: transparent;
}

/* @media (min-width: 768px) {
	.logo {
		font-size: 1.875rem;
	}
} */

.nav-desktop {
  display: none;
  align-items: center;

  gap: 1.14rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
  text-decoration: none;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;

  gap: 0.25rem;
}

.nav-link:hover {
  color: var(--accent-orange);
}

.phone {
  position: relative;
  padding-left: 32px;
  text-decoration: none;
  letter-spacing: -0.04em;
  color: var(--primary-color);
  font-size: 25px;
  font-weight: 700;
}

.phone::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  content: "";
  transform: translateY(-50%);
  background: url(./img/tel-icon.png) no-repeat center center / contain;
}

.header-right {
  display: none;
}

.header__open {
  display: block;
}

.drawer-icon {
  position: relative;
  z-index: 1050;
  width: 36px;
  height: 21px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  width: 36px;
  height: 3px;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
  border-radius: 6px;
  background: var(--primary-color);
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}
.drawer-content {
  position: fixed;
  z-index: 1002;
  top: 0;
  right: 0;
  display: block;
  width: 320px;
  height: 100vh;
  padding: 86px 40px 40px;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  background-color: var(--white);
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.drawer-content__link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.48px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;

  gap: 10px;
}

.drawer-content__button {
  margin-top: 24px;
  text-align: center;
}

.drawer-content__button > .cta-button {
  font-size: 20px;
}

#js-drawer-icon.header__open.drawer-icon {
  z-index: 1010;
  border: none;
  background-color: transparent;
}
.phone-link {
  display: none;
}

@media (min-width: 1024px) {
  .header__open {
    display: none;
  }

  .drawer-content {
    display: none;
  }
}

/* ボタン */
.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;

  gap: 10px;
}

.cta-button .cta-icon {
  fill: #fff;
}

.cta-button:hover .cta-icon {
  fill: var(--accent-orange);
}

.cta-icon {
  width: 24px;
  height: 24px;
}

.btn-style6 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  border: 2px solid var(--accent-orange);
  background-color: var(--accent-orange);
  font-weight: 600;
}

.btn-style6::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
  transition: width 0.3s ease;
  background-color: var(--white);
}

.btn-style6:hover {
  color: var(--accent-orange);
}

.btn-style6:hover::before {
  width: 100%;
}

.size-medium {
  padding: 0.75em 1.5em;
  font-size: 1rem;
}

.width-auto {
  width: auto;
}

.radius-medium {
  border-radius: 8px;
}

.nav-mobile {
  display: flex;
}

@media (min-width: 768px) {
  .nav-mobile {
    display: none;
  }
}

/* ヒーローセクション */
.hero {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column-reverse;
  width: 100%;
  margin-top: 64px;
  padding-bottom: 0;
  color: var(--white);
  background-color: var(--white);
}

/* 背景画像エリア（スマホ: 上部に配置） */
.hero-bg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 400px;
  margin-top: -80px;

  clip-path: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top center;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 40px 30px 100px 30px;
  background: linear-gradient(120deg, #015ab4 0%, #015ab4 35%, #9fd2ff 100%);

  gap: 20px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-title {
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.accent-number {
  margin: 0 5px;
  color: var(--accent-orange);
  font-family: "Roboto", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
}

.hero-price {
  color: var(--accent-orange);
  font-size: 2rem;
  font-weight: 800;
}

.hero-subtitle {
  margin-bottom: 0;
  text-align: left;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-description {
  margin-bottom: 1.5rem;
  text-align: left;
  opacity: 0.9;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-direction: column;
  margin-top: 10px;

  gap: 10px;
}

.hero-feature {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;

  gap: 0.5rem;
}

.hero-feature img {
  width: 24px;
  height: 24px;
}

.hero .cta-button {
  width: fit-content;
}

/* --- PC・タブレット向け上書き (min-width: 768px) --- */
@media (min-width: 768px) {
  .hero {
    align-items: center;
    flex-direction: row; /* 横並びに戻す */
    min-height: 84vh;
    margin-top: 70px;
    background: linear-gradient(60deg, #015ab4 0%, #015ab4 35%, #9fd2ff 100%);
  }

  .hero-bg {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    width: 64%;
    height: 100%;
    margin-top: 0;

    clip-path: polygon(12vw 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 21, 45, 0.2);
  }

  .hero-bg img {
    object-position: right;
  }

  .hero-container {
    padding: 0 30px;
  }

  .hero-content {
    padding: 50px 0;
    background: transparent;

    clip-path: none;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .accent-number {
    font-size: 4.5rem;
  }

  .hero-price {
    font-size: 2.5rem;
  }

  .hero-title {
    margin-bottom: 20px;
  }

  .hero-subtitle {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }

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

  .hero-feature {
    font-size: 1.15rem;
  }
}

/* ロゴカルーセル */
.logo-carousel-section {
  padding: 3rem 0;
  text-align: center;
}

.logo-carousel-title {
  position: relative;
  display: inline-block;
  justify-content: center;
  margin: 0 auto 1rem;
  padding: 0 2rem;
  text-align: center;
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .logo-carousel-title {
    padding: 0 2rem;
    font-size: 1rem;
  }
}

.logo-carousel-title::before,
.logo-carousel-title::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 300;
}

.logo-carousel-title::before {
  left: 0;
  content: "\\";
}

.logo-carousel-title::after {
  right: 0;
  content: "/";
}

@media (min-width: 768px) {
  .logo-carousel-title {
    padding: 0 3rem;
    font-size: 1rem;
  }

  .logo-carousel-title::before,
  .logo-carousel-title::after {
    font-size: 1rem;
  }
}

.logo-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.logo-carousel {
  display: flex;
  animation: scroll 30s linear infinite;

  gap: 3rem;
}

.logo-carousel img {
  width: auto;
  height: 120px;
  transition: all 0.3s ease;

  object-fit: contain;
}

.logo-carousel img:hover {
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* セクション共通 */
.section {
  padding: 5rem 0;
}

.section.bg-muted {
  background-color: var(--bg-muted);
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 800;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-description {
  max-width: 800px;
  margin-right: auto;
  margin-bottom: 3rem;
  margin-left: auto;
  text-align: center;
  color: var(--primary-color);
  font-size: 1.125rem;
  font-weight: 500;
}

/* 課題セクション */
.section.problems {
  padding: 7rem 0;
  background-color: #5b59584d;
  background-image: radial-gradient(circle at 20% 30%, rgba(100, 100, 100, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(120, 120, 120, 0.4) 0%, transparent 40%), radial-gradient(circle at 40% 70%, rgba(90, 90, 90, 0.35) 0%, transparent 45%), radial-gradient(circle at 70% 80%, rgba(110, 110, 110, 0.3) 0%, transparent 50%), radial-gradient(circle at 10% 90%, rgba(95, 95, 95, 0.35) 0%, transparent 40%), radial-gradient(circle at 90% 60%, rgba(105, 105, 105, 0.3) 0%, transparent 45%);
}

.section.problems .section-title {
  position: relative;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 1000px;
  height: auto;
  padding: 8px 8px;
  color: var(--white);
  border-top: 1px solid var(--white);
  border-right: 0 solid var(--white);
  border-bottom: 1px solid var(--white);
  border-left: 0 solid var(--white);
  background: #ffffff33;

  margin-inline: auto;
  gap: 10px;
}

.section.problems .section-title::after {
  position: absolute;
  top: -50px;
  right: 100px;
  width: 60px;
  height: 60px;
  content: "";
  background: url(img/squiggle.svg) no-repeat center center / contain;
}

.problems-grid {
  display: grid;
  max-width: 1000px;
  margin: 0 auto;

  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  padding: 1.5rem;
  color: var(--white);
  border-radius: 0.65rem;
  background-color: #373d42;
  font-size: 1.2rem;
  font-weight: 500;
}

.problem-card strong {
  color: var(--accent-orange);
  font-size: 1.3rem;
  font-weight: 700;
}

/* サービス概要 */
.service {
  position: relative;
  z-index: 1;
}

.service::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.45;
  background: url(img/bg-deco.svg) no-repeat center center / cover;
}

.service-grid {
  display: grid;
  max-width: 1000px;
  margin: 0 auto;

  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  border-radius: 0.65rem;
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-icon {
  overflow: hidden;
  width: 100%;
  height: 300px;
  border-top-left-radius: 0.65rem;
  border-top-right-radius: 0.65rem;
}

.service-icon img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

@media (min-width: 768px) {
  .service-icon {
    height: 200px;
  }
}
.service-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 2rem;
}

.service-card-title {
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.service-card-description {
  font-weight: 500;
}

/* 特徴セクション */

.features {
  padding: 60px 0;
  background-color: var(--white);
}

.features .section-title {
  margin-bottom: 5rem;
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;

  gap: 3rem;
}

.feature-item {
  position: relative;
  margin-bottom: 60px;
  padding: 0;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-number {
  position: absolute;
  z-index: 0;
  top: -50px;
  left: 0;
  color: #fff9f0;
  font-size: 6rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.feature-content-wrapper {
  display: flex;
  flex-direction: column;

  gap: 0;
}

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

.feature-text {
  z-index: 10;
  flex: 1;
}

.feature-title {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.feature-description {
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.8;
}

.feature-image-wrapper {
  position: relative;
  flex: 1;
  width: 100%;
}

.feature-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.feature-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 280px;
  padding: 30px;
  transform: translate(-50%, -50%);
  border-radius: 12px;
}

/* 特徴ビジュアルのスタイル */
.feature-item:nth-child(4n + 1) .feature-visual,
.feature-item:nth-child(4n + 3) .feature-visual {
  color: var(--white);
}
.feature-item:nth-child(4n + 2) .feature-visual,
.feature-item:nth-child(4n + 4) .feature-visual {
  color: var(--white);
}

.feature-check-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.9375rem;
  font-weight: 500;

  gap: 10px;
}

.feature-check-item:last-child {
  margin-bottom: 0;
}

.feature-check-item img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--primary-color);
}

.feature-stat {
  margin-bottom: 10px;
  text-align: center;
  color: var(--white);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.feature-stat-description {
  text-align: center;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
}

.lp-type-item {
  margin-bottom: 20px;
}

.lp-type-item:last-child {
  margin-bottom: 0;
}

/* タブレット以上 */
@media (min-width: 768px) {
  .features {
    padding: 100px 0;
  }

  .features .section-title {
    margin-bottom: 3rem;
  }

  .section-header {
    margin-bottom: 100px;
  }

  .section-label {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .feature-item {
    margin-bottom: 60px;
    padding: 0;
  }

  .feature-number {
    position: absolute;
    z-index: 0;
    top: auto;
    bottom: -30px;
    left: 0;
    font-size: 10rem;
  }

  .feature-item-reverse .feature-number {
    right: 0;
    left: auto;
  }

  .feature-content-wrapper {
    align-items: center;
    flex-direction: row;

    gap: 60px;
  }

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

  .feature-item-reverse .feature-number {
    right: -20px;
  }

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

  .feature-image-wrapper {
    position: relative;
  }

  .feature-visual {
    min-width: 320px;
    padding: 40px;
  }

  .feature-check-item {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .feature-stat {
    font-size: 4rem;
  }

  .feature-stat-description {
    font-size: 1rem;
  }

  .lp-type-title {
    font-size: 1.125rem;
  }

  .lp-type-description {
    font-size: 0.9375rem;
  }
}

/* 比較表 */
.table-wrapper {
  overflow: hidden;
  overflow-x: auto;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-table {
  overflow: hidden;
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
  padding: 25px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #eee;
}
.comparison-table th {
  color: var(--primary-color);
  background: rgba(0, 43, 92, 0.08);
  font-size: 1.1rem;
  line-height: 1.4;
}

.comparison-table td:first-child {
  color: var(--primary-color);
  font-weight: 600;
}

/* ハイライト列（10万円LP製作所）のスタイル */
.comparison-table .highlight-col {
  color: var(--accent-orange);
  border-bottom-color: #ffe0b2;
  background: #fff9f0;
  font-weight: 800;
}
/* ハイライトセルの文字色 */
.comparison-table .highlight-cell {
  color: var(--accent-orange);
  font-size: 1.2rem;
  font-weight: 800;
}

.scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.8rem;
  animation: bounce 2s infinite;
  text-align: center;
  color: var(--primary-color);
  border-radius: 8px;
  background-color: rgba(43, 61, 177, 0.1);
  font-size: 0.9rem;
  font-weight: 700;

  gap: 0.5rem;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

@media (min-width: 628px) {
  .scroll-hint {
    display: none;
  }
}

/* フローセクション */
.flow .section-title {
  margin-bottom: 4rem;
}

.flow-steps {
  display: flex;
  align-items: center;
  align-items: stretch;
  flex-direction: column;
  margin: 0 auto;

  gap: 3rem;
}

@media (min-width: 901px) {
  .flow-steps {
    align-items: stretch;
    flex-direction: row;
    justify-content: center;

    gap: 1.2rem;
  }
}

.flow-step {
  position: relative;
  flex: 1;
  padding: 3rem 1.3rem 1.6rem;
  text-align: center;
  border: solid 1px var(--primary-color);
  border-radius: 1rem;
}

.flow-step img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

@media (min-width: 901px) {
  .flow-step {
    padding: 3rem 1.3rem 1.6rem;
  }
}

.flow-number {
  position: absolute;
  top: -20px;
  left: 50%;
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  transform: translateX(-50%);
  color: white;
  border-radius: 9999px;
  background: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 700;
}

.flow-step-title {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.45;
}

.flow-step-description {
  min-height: calc(16px * 2 * 1.75);
  text-align: center;
  color: var(--text-color);
  font-size: 1rem;
}

@media (min-width: 901px) {
  .flow-step-title {
    min-height: calc(1.4rem * 2 * 1.45);
  }
  .flow-step-description {
    text-align: left;
  }
}

.flow-arrow {
  display: none;
  align-self: center;
  text-align: center;
}

.flow-arrow img {
  width: 16px;
  height: 16px;
}

@media (min-width: 1024px) {
  .flow-arrow {
    display: block;
  }
}

.flow-notes {
  max-width: 500px;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 0.65rem;
  background-color: rgba(248, 250, 252, 0.5);
}

.flow-notes-title {
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.flow-notes-list {
  padding-left: 1.5rem;
  list-style: disc;
  color: var(--text-muted);
}

.flow-notes-list li {
  margin-bottom: 0.5rem;
}

/* 料金セクション */
.price {
  position: relative;
  z-index: 1;
}

.price::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.45;
  background: url(img/bg-deco.svg) no-repeat center center / cover;
}

.price-card {
  position: relative;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .price-card {
    padding: 60px;
  }
}

.price-card::before {
  position: absolute;
  top: 20px;
  right: -60px;
  padding: 10px 60px;
  content: "RECOMMENDED";
  transform: rotate(45deg);
  color: var(--white);
  background: var(--accent-orange);
  font-size: 0.9rem;
  font-weight: bold;
}

.price-title {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: bold;
}

.price-amount {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}

@media (min-width: 768px) {
  .price-amount {
    font-size: 4rem;
  }
}

.price-amount span {
  color: #999;
  font-size: 1.2rem;
  font-weight: normal;
}

.pricing-section-title {
  margin: 3rem 0 1rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.price-feature {
  margin: 30px 0;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

@media (min-width: 768px) {
  .price-feature {
    padding: 0 20px 0;
  }
}

.price-feature li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 30px;
  font-size: 1.1rem;
}

.price-feature li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  content: "";
  transform: translateY(-50%);
  background: url(img/checked-orange.png) no-repeat center center / contain;
}

.price .cta-button {
  margin-top: 2rem;
}

/* FAQセクション */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  padding: 1.5rem;
  border-radius: 0.65rem;
  background-color: rgba(0, 43, 92, 0.08);
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
}

.faq-item-question {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;

  gap: 1rem;
}

@media (min-width: 481px) {
  .faq-item-question {
    padding: 1.2rem 1.2rem 0;
  }
}

.faq-item-q {
  color: var(--accent-orange);
  font-family: "Roboto";
  font-size: 2rem;
  font-weight: 700;
}

.faq-item-answer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
  padding: 0;

  gap: 1rem;
}

@media (min-width: 481px) {
  .faq-item-answer {
    margin-top: 0;
    padding: 1.2rem;
  }
}

.faq-item-a {
  color: var(--accent-orange);
  font-family: "Roboto";
  font-size: 2rem;
  font-weight: 700;
}

.faq-item h3 {
  color: var(--dark-blue);
  font-size: 1.15rem;
  font-weight: 700;
}

.faq-item p {
  font-size: 1rem;
}

.faq-answer a {
  text-decoration: underline;
  color: var(--primary-color);
}

/* お問い合わせセクション */
.section.contact {
  color: var(--white);
  background: var(--bg-muted);
}

.section.contact .section-description {
  color: var(--primary-color);
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

#hubspot-form {
  padding: 2rem;
  border-radius: 0.65rem;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* フッター */
.footer {
  padding: 3rem 0 1.5rem;
  color: white;
  background-color: var(--primary-color);
}

.footer-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .footer-content {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-links a {
  margin-left: 20px;
  transition: color 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.footer-links a:hover {
  color: var(--main-green);
}

.footer-copyright {
  padding-top: 2rem;
  text-align: center;
  opacity: 0.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

/* スムーススクロール */
html {
  scroll-behavior: smooth;
}
