/* ==========================================================================
   Matomete Solar (まとめてソーラー) - Main Stylesheet
   Japanese Solar Power Management SaaS Landing Page
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens / CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --brand-blue: #14ADCE;
  --brand-yellow: #FED648;
  --black-text: #1E1E1E;
  --gray: #6E6E6E;
  --light-bg: #F5F8F9;
  --cream: #FFFBED;
  --white: #FFFFFF;
  --dark-bg: #F5F5F5;
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Noto Sans', 'Roboto', sans-serif;
  --max-width: 1320px;
  --base-font-size: 15px;
  --section-padding: 80px;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jp);
  font-size: var(--base-font-size);
  color: var(--black-text);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul,
ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. Header (.site-header)
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 60px;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  border-radius: 8px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 64px;
}

.header-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--brand-blue);
  transition: opacity 0.3s ease;
}

.header-nav-item:hover {
  opacity: 0.7;
}

.header-nav-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.header-nav-jp {
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-blue);
  border-radius: 8px;
  width: 140px;
  height: 41px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  border: none;
}

.btn-login:hover {
  background-color: #0e97b5;
}

.btn-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--brand-yellow);
  border-radius: 8px;
  height: 41px;
  padding: 0 8px 0 24px;
  color: var(--black-text);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  border: none;
}

.btn-signup:hover {
  background-color: #fdd020;
}

.btn-signup img {
  flex-shrink: 0;
}

.header-hamburger {
  display: none;
}

.mobile-menu {
  display: none;
}

/* --------------------------------------------------------------------------
   4. Section Headings (.section-heading)
   -------------------------------------------------------------------------- */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 24px;
  color: var(--brand-blue);
  letter-spacing: 5.76px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.section-heading-jp {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 40px;
  color: var(--black-text);
  letter-spacing: 4.8px;
}

/* --------------------------------------------------------------------------
   5. Hero Section (.hero-section)
   -------------------------------------------------------------------------- */
.hero-section {
  width: 100%;
  height: 790px;
  position: relative;
  overflow: hidden;
  background: url('/images/common/bg.png') top center / 1440px auto no-repeat, #e8f7fa;
}

.hero-bg {
  display: none;
}

.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 0 0 auto;
  padding-left: 120px;
  padding-top: 40px;
}

.hero-headings {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-text-row {
  display: inline-flex;
}

.hero-text-row.hero-text-sp {
  display: none;
}

.hero-text-line {
  font-size: 48px;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1;
  letter-spacing: 3.84px;
  border-bottom: 3px dashed var(--brand-blue);
  padding-bottom: 20px;
  display: inline-block;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-yellow);
  border-radius: 100px;
  padding: 0 10px 0 40px;
  height: 56px;
  font-size: 16px;
  font-weight: 700;
  color: var(--black-text);
  letter-spacing: 1.28px;
  gap: 20px;
  cursor: pointer;
  border: none;
  margin-top: 40px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.hero-cta:hover {
  background-color: #fdd020;
  transform: translateY(-1px);
}

.hero-cta img {
  flex-shrink: 0;
}

.hero-icons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 411px;
  margin-top: 40px;
}

.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--white) 0%, #f0f0f0 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
}

.hero-icon-circle img {
  width: 35px;
  height: 22px;
  object-fit: contain;
}

.hero-icon-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--black-text);
  text-align: center;
  letter-spacing: 0.18px;
  line-height: 1.06;
}

/* Hero visual (right side) */
.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  width: 720px;
  height: 100%;
}

.hero-circle {
  position: absolute;
  width: 520px;
  height: 520px;
  right: 80px;
  top: 210px;
  border-radius: 50%;
  overflow: hidden;
}

.hero-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-circle-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.hero-device-phone {
  position: absolute;
  width: 260px;
  height: auto;
  left: 80px;
  top: 272px;
  z-index: 2;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.16));
}

.hero-device-tablet {
  position: absolute;
  width: 440px;
  height: auto;
  right: 20px;
  top: 122px;
  z-index: 2;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.16));
}

/* --------------------------------------------------------------------------
   6. Concerns Section (.concerns-section)
   -------------------------------------------------------------------------- */
.concerns-section {
  padding: var(--section-padding) 0;
}

.concerns-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.concerns-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  letter-spacing: 2.4px;
}

.concerns-highlight {
  color: var(--brand-blue);
}

.concerns-subtitle {
  text-align: center;
  margin-top: 24px;
}

.concerns-title-sp {
  display: none;
}

.concerns-subtitle-sp {
  display: none;
}

.concerns-subtitle p {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.6;
}

.concerns-subtitle-price {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
}

.concerns-zero {
  font-family: var(--font-en);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: 3.52px;
  line-height: 0.7;
}

.concerns-content {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  gap: 60px;
}

.concerns-group {
  position: relative;
  width: 460px;
  height: 340px;
}

.concerns-illustration {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.concerns-blob {
  width: 373px;
  height: auto;
  display: block;
}

.concerns-blob-right {
  width: 320px;
  transform: scaleX(-1);
}

.concerns-person {
  position: absolute;
  bottom: 0;
}

.concerns-person-left {
  width: 70px;
  height: auto;
  left: 50%;
  transform: translate(-50%, -15%);
}

.concerns-person-right {
  width: 337px;
  height: 275px;
  object-fit: contain;
  left: 50%;
  transform: translate(-50%, 15%);
}

/* Concern bubbles */
.concerns-bubbles {
  position: absolute;
  inset: 0;
}

.concern-bubble-wrap {
  position: absolute;
  display: flex;
  flex-direction: column;
}

.concern-bubble-wrap.top-left {
  top: 20%;
  left: 0;
  align-items: flex-end;
}

.concern-bubble-wrap.bottom-left {
  bottom: 0;
  left: 0;
  align-items: flex-end;
}

.concern-bubble-wrap.right {
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  align-items: flex-start;
}

.concern-bubble {
  background-color: #EAEAEA;
  border-radius: 100px;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1.2px;
  line-height: 1.4;
  white-space: nowrap;
}

.concern-bubble-tail {
  line-height: 0;
}

.concern-bubble-tail-right {
  margin-left: 10px;
}

.concern-bubble-tail-left {
  margin-right: 10px;
}

/* --------------------------------------------------------------------------
   7. About Section (.about-section)
   -------------------------------------------------------------------------- */
.about-section {
  padding: var(--section-padding) 0;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-line {
  width: 2px;
  height: 80px;
  background: var(--brand-blue);
  margin: 0 auto 32px;
  opacity: 0.3;
}

/* Intro */
.about-intro {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}

.about-intro-image {
  flex: 0 0 520px;
}

.about-intro-image img {
  width: 100%;
  border-radius: 12px;
}

.about-intro-text {
  flex: 1;
}

.about-intro-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 2.4px;
  line-height: 1.6;
}

.about-intro-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.6px;
  margin-top: 32px;
}

/* DX Section */
.about-dx {
  margin-top: 80px;
  text-align: center;
}

.about-dx-label {
  position: relative;
  display: inline-block;
}

.about-dx-arrow {
  display: block;
  width: 170px;
  height: 85px;
  margin: 0 auto;
}

.about-dx-label-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
  white-space: nowrap;
}

.about-dx-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 2.4px;
  margin-top: 24px;
}

.about-dx-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.6px;
  margin-top: 20px;
}

/* Comparison boxes */
.about-comparison {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.about-comparison-box {
  flex: 1;
  min-height: 402px;
  border-radius: 0 20px 20px 20px;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.about-comparison-before {
  background-color: #EAEAEA;
}

.about-comparison-after {
  background-color: var(--cream);
}

.about-comparison-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-comparison-label span {
  display: inline-block;
  background: var(--gray);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
}

.about-comparison-label-blue span {
  background: var(--brand-blue);
}

.about-comparison-illust {
  width: 100%;
  height: 100%;
  min-height: 402px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-comparison-illust img {
  max-width: 90%;
  max-height: 260px;
  object-fit: contain;
  margin: 20px auto;
}

.about-comparison-arrow img {
  width: 100%;
  height: auto;
}

/* Stats area */
.about-stats-area {
  margin-top: 60px;
  position: relative;
}

.about-stats-bg {
  position: absolute;
  inset: 0;
  background: url('/images/top/background.png') center / cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
}

.about-stats-condition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  padding-top: 48px;
}

.about-stats-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 24px;
  border-radius: 8px;
  border: 3px solid;
}

.about-stats-tag-blue {
  background: var(--white);
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.about-stats-tag-red {
  background: var(--cream);
  border-color: #E33C3C;
  color: #E33C3C;
}

.about-stats-tag-label {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2.4px;
}

.about-stats-tag-number {
  font-family: 'Roboto', sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

.about-stats-condition-text {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2.4px;
}

/* Arrow + 削減効果 */
.about-stats-diamond {
  text-align: center;
  padding: 24px 0 8px;
  position: relative;
  z-index: 1;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.about-stats-arrow-img {
  display: block;
  width: 170px;
  height: 85px;
  margin: 0 auto;
}

.about-stats-arrow-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
  white-space: nowrap;
}

/* Result tags */
.about-stats-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  padding-top: 8px;
}

.about-stats-note {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.6px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

/* Workload list */
.about-stats-workload {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 456px;
  margin: 24px auto 0;
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
}

.about-stats-workload-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 16px;
  border-bottom: 3px dashed var(--gray);
}

.about-stats-workload-dot {
  width: 16px;
  height: 16px;
  background: var(--gray);
  border-radius: 2px;
  flex-shrink: 0;
}

.about-stats-workload-item span:last-child {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.12px;
}

/* Services area */
.about-services {
  margin-top: 60px;
  background: var(--brand-blue);
  border-radius: 20px;
  padding: 48px 80px;
}

.about-services-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.about-services-title-text {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2.4px;
}

.about-services-title-number {
  font-family: 'Roboto', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.about-services-icon-open {
  width: 52px;
  height: 52px;
}

.about-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.about-service-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-service-check {
  width: 22px;
  height: 20px;
  flex-shrink: 0;
}

.about-service-item span {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.about-services-request {
  text-align: right;
  margin-top: 24px;
}

.about-services-request a {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --------------------------------------------------------------------------
   8. App Section (.app-section)
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   11. App Section (.app-section)
   -------------------------------------------------------------------------- */
.app-section {
  padding: var(--section-padding) 0;
}

.app-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.app-box {
  border: 2px solid var(--brand-blue);
  border-radius: 20px;
  padding: 60px 60px 0 100px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.app-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 0 40px;
  position: absolute;
  background: var(--white);
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

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

.app-phone {
  flex: 0 0 auto;
}

.app-phone img {
  max-width: 300px;
}

.app-info {
  flex: 1;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--brand-blue);
  border-radius: 100px;
  padding: 12px 32px;
  color: var(--brand-blue);
  font-size: 24px;
  font-weight: 700;
  background-color: var(--white);
}

.app-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 24px;
  color: var(--black-text);
}

.app-stores {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 32px;
}

.app-stores a {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.app-stores a:hover {
  opacity: 0.8;
}

.app-stores img {
  height: 48px;
  width: auto;
}

/* --------------------------------------------------------------------------
   12. FAQ Section (.faq-section)
   -------------------------------------------------------------------------- */
.faq-section {
  padding: var(--section-padding) 0;
}

.faq-inner {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 65px;
}

.faq-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.faq-heading-en {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 5.76px;
}

.faq-heading-ja {
  font-family: var(--font-jp);
  font-size: 40px;
  font-weight: 900;
  color: var(--black-text);
  letter-spacing: 4.8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.faq-item {
  border-radius: 6px;
  box-shadow: 0 0 16px rgba(20, 173, 206, 0.1);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 40px;
  background-color: var(--brand-blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-align: left;
  line-height: 1;
  list-style: none;
  border-radius: 6px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-q-number {
  font-family: var(--font-en);
}

.faq-icon {
  position: relative;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--white);
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item[open] .faq-question {
  border-radius: 6px 6px 0 0;
}

.faq-item[open] .faq-icon::after {
  display: none;
}

.faq-answer {
  background-color: var(--white);
  border-radius: 0 0 6px 6px;
}

.faq-answer p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black-text);
  letter-spacing: 1.2px;
  line-height: 1.8;
}

.faq-a-label {
  font-family: var(--font-en);
}

.faq-cta {
  display: flex;
  justify-content: center;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 40px;
  background-color: var(--brand-yellow);
  color: var(--black-text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.2px;
  border-radius: 100px;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.faq-cta-button:hover {
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   9. Contact Section (.contact-section)
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 105px 20px 80px;
}

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

.contact-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  color: var(--black-text);
  margin-bottom: 60px;
}

.contact-form {
  width: 100%;
}

.contact-row {
  margin-bottom: 35px;
}

.contact-label {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 15px;
}

.contact-required::after {
  content: "必須";
  background: #e94949;
  border-radius: 10px;
  padding: 2px 6px 3px;
  color: var(--white);
  font-size: 12px;
  margin-left: 10px;
}

.contact-input,
.contact-textarea {
  border-radius: 6px;
  border: 1px solid #d2d2d7;
  font-size: 16px;
  font-family: var(--font-jp);
  padding: 10px 15px;
  box-sizing: border-box;
  width: 100%;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #bfbfbf;
  font-weight: 400;
  font-size: 14px;
}

.contact-textarea {
  resize: vertical;
}

.contact-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.contact-privacy a {
  color: var(--brand-blue);
  font-size: 14px;
  text-decoration: underline;
}

.contact-privacy a:hover {
  opacity: 0.8;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 240px;
  height: 56px;
  border-radius: 28px;
  background: var(--brand-yellow);
  color: var(--black-text);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-jp);
  border: none;
  cursor: pointer;
  filter: drop-shadow(0px 3px 12px rgba(0, 0, 0, 0.1));
  transition: filter 0.3s, transform 0.3s;
}

.contact-button:hover {
  transform: translateY(5px);
  filter: none;
}

.contact-submit {
  text-align: center;
}

/* --------------------------------------------------------------------------
   15. Footer (.site-footer)
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid #ccc;
  padding: 70px 20px 45px;
  box-sizing: border-box;
}

.footer-inner {
  max-width: 1050px;
  margin: 0 auto;
}

.footer-logo img {
  height: 46px;
  width: auto;
}

.footer-nav {
  margin: 40px 0 50px;
  display: flex;
  justify-content: space-between;
}

.footer-nav-col {
  margin-right: 20px;
}

.footer-nav-col li:not(:last-child) {
  margin-bottom: 30px;
}

.footer-nav-col a {
  font-size: 14px;
  font-weight: 400;
  color: var(--black-text);
  transition: color 0.3s ease;
}

.footer-nav-col a::before {
  content: "\25B6";
  color: #bfbfbf;
  margin-right: 8px;
  font-size: 12px;
  display: inline-block;
  transition: transform 0.3s;
}

.footer-nav-col a:hover::before {
  transform: translateX(3px);
}

.footer-nav-col a:hover {
  color: var(--brand-blue);
}

.footer-banners {
  max-width: 410px;
  flex: 1;
}

.footer-banners a {
  display: inline-block;
}

.footer-banners a:not(:first-child) {
  margin-top: 20px;
}

.footer-banners img {
  width: 100%;
}

.footer-copyright {
  color: #bfbfbf;
  font-size: 12px;
  text-align: center;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   15. Chatbot Widget (.chatbot-widget)
   -------------------------------------------------------------------------- */
.chatbot-widget {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.chatbot-bubble {
  background-color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--black-text);
  line-height: 1.6;
  max-width: 240px;
}

.chatbot-link {
  color: #26A1E7;
  text-decoration: underline;
  cursor: pointer;
}

.chatbot-link:hover {
  color: #1a8bcb;
}

.chatbot-icon {
  width: 68px;
  height: 68px;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.chatbot-icon:hover {
  transform: scale(1.05);
}

/* ===========================
   Features Section
   =========================== */
.features-section {
  padding: 100px 0 80px;
  background: var(--white);
}

.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 220px);
  gap: 20px;
  justify-content: center;
  margin-top: 48px;
}

.feature-card {
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
  width: 220px;
  height: 228px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card-title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 20px;
  color: var(--black-text);
  letter-spacing: 1.6px;
  text-align: center;
}

.feature-card-icon {
  width: 120px;
  height: 120px;
  margin-top: 12px;
  background: #F0F0F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-card-icon img {
  width: 50%;
  height: 100%;
  object-fit: contain;
}

.features-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.features-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 40px;
  border: 2px solid var(--brand-blue);
  border-radius: 100px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-blue);
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.features-cta-btn:hover {
  background: var(--brand-blue);
  color: var(--white);
}

/* ===========================
   Aftercare Section
   =========================== */
.aftercare-section {
  padding: 100px 0 80px;
  background: var(--white);
}

.aftercare-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.aftercare-grid {
  display: grid;
  grid-template-columns: repeat(4, 220px);
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.aftercare-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ===========================
   How To Section
   =========================== */
.howto-section {
  padding: 100px 0 80px;
  background: var(--white);
}

.howto-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.howto-badge {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.howto-badge span {
  background: var(--light-bg);
  color: var(--brand-blue);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1.6px;
  padding: 7px 24px 8px;
  border-radius: 100px;
}

/* Step tabs */
.howto-tabs {
  display: flex;
  margin-top: 40px;
}

.howto-tab {
  position: relative;
  flex: 1;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 30px 50%);
}

.howto-tab:first-child {
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
}

.howto-tab-1 {
  background: #B8E4EF;
}

.howto-tab-2 {
  background: #6ECDE2;
}

.howto-tab-3 {
  background: #14ADCE;
}

.howto-tab-text {
  font-family: var(--font-en);
  font-weight: bold;
  font-size: 24px;
  color: var(--white);
  white-space: nowrap;
  padding-left: 10px;
}

/* Content area */
.howto-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
  position: relative;
}

.howto-screenshot {
  flex: 0 0 800px;
  height: 500px;
  overflow: hidden;
}

.howto-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.howto-step-info {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-top: 80px;
}

.howto-step-number {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.howto-step-circle {
  width: 48px;
  height: 48px;
}

.howto-step-num {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 64px;
  line-height: 0.7;
  color: var(--brand-blue);
  margin-left: 12px;
  margin-top: 3px;
}

.howto-step-title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 40px;
  color: var(--brand-blue);
  letter-spacing: 3.2px;
}

/* Next button */
.howto-next {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.howto-next-text {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 15px;
  color: var(--brand-blue);
  letter-spacing: 1.2px;
}

.howto-next-arrow {
  width: 48px;
  height: 48px;
}

@keyframes howtoFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.howto-step-panel.howto-fade-in {
  animation: howtoFadeIn 0.4s ease-out;
}

/* ===========================
   Comparison Section
   =========================== */
.comparison-section {
  padding: 120px 0 80px;
  background: #F5F5F5;
}

.comparison-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.comparison-table {
  display: grid;
  grid-template-columns: 210px 1fr 1fr 1fr;
  gap: 6px 3px;
  margin-top: 48px;
}

/* Left label column */
.comparison-label-empty {
  background: transparent;
}

.comparison-label {
  background: var(--black-text);
  color: var(--white);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  letter-spacing: 1.2px;
  padding: 16px 0 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-label-first {
  border-radius: 6px 0 0 0;
}

.comparison-label-last {
  border-radius: 0 0 0 6px;
}

/* Column headers */
.comparison-col-header {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  letter-spacing: 1.6px;
  color: var(--white);
  padding: 16px 0 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-col-header-blue {
  background: var(--brand-blue);
  border-radius: 6px 0 0 0;
}

.comparison-col-header-gray {
  background: var(--gray);
}

.comparison-col-header-last {
  border-radius: 0 6px 0 0;
}

/* Data cells */
.comparison-cell {
  background: var(--white);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 15px;
  color: var(--black-text);
  text-align: center;
  letter-spacing: 1.2px;
  padding: 16px 0 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-cell-cream {
  background: var(--cream);
}

.comparison-cell-bold {
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-blue);
  letter-spacing: 1.44px;
}

.comparison-cell-app {
  line-height: 1.4;
}

/* Wrapper for positioning the highlight overlay */
.comparison-table-wrapper {
  position: relative;
}

/* Highlight overlay absolutely positioned over まとめてソーラー column */
.comparison-highlight-overlay {
  position: absolute;
  border: 3px solid var(--brand-blue);
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 20px rgba(20, 173, 206, 0.3);
}

/* Feature rows inside cells */
.comparison-cell-features {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  text-align: left;
  align-items: stretch;
}

.comparison-feature-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F5F5F5;
  border-radius: 2px;
  padding: 8px 70px;
}

.comparison-cell-cream .comparison-feature-row {
  background: var(--white);
}

.comparison-feature-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.comparison-feature-row span {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  color: var(--black-text);
  letter-spacing: 1.12px;
}

.comparison-feature-disabled {
  opacity: 0.6;
}

/* ==========================================================================
   Responsive (Mobile)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Common (Mobile)
   -------------------------------------------------------------------------- */
.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }

  br.sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }

  .section-heading-jp {
    font-size: 28px;
    letter-spacing: 3px;
  }
}

/* --------------------------------------------------------------------------
   Header (Mobile)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .site-header {
    padding: 12px 16px;
  }

  .header-inner {
    padding: 10px 16px;
    border-radius: 6px;
  }

  .logo-img {
    height: 32px;
  }

  .header-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .header-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .header-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--brand-blue);
    transition: transform 0.3s ease;
  }

  /* Mobile Menu Overlay */
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 200;
    padding: 22px 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
  }

  .mobile-menu-header .logo-img {
    height: 32px;
  }

  .mobile-menu-close {
    position: relative;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .mobile-menu-close span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--brand-blue);
  }

  .mobile-menu-close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .mobile-menu-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--brand-blue);
  }

  .mobile-menu-nav-item .header-nav-en {
    font-size: 20px;
    font-weight: 700;
  }

  .mobile-menu-nav-item .header-nav-jp {
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
    max-width: 286px;
    width: 100%;
    align-self: center;
  }

  .mobile-menu-login {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    background-color: var(--brand-blue);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
  }

  .mobile-menu-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 56px;
    background-color: var(--brand-yellow);
    color: var(--black-text);
    font-size: 16px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
  }

  .mobile-menu-signup img {
    flex-shrink: 0;
  }
}

/* --------------------------------------------------------------------------
   Hero Section (Mobile)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .hero-section {
    height: auto;
    background: url('/images/common/bg.png') top center / cover no-repeat, #e8f7fa;
    padding-bottom: 40px;
  }

  .hero-text-row.hero-text-pc {
    display: none;
  }

  .hero-text-row.hero-text-sp {
    display: inline-flex;
  }

  .hero-inner {
    flex-direction: column-reverse;
    padding: 0 20px;
    align-items: center;
  }

  .hero-text {
    padding-left: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-headings {
    align-items: center;
    gap: 10px;
  }

  .hero-text-line {
    font-size: 24px;
    letter-spacing: 2px;
    padding-bottom: 14px;
  }

  .hero-cta {
    margin-top: 32px;
    font-size: 14px;
    height: 50px;
    padding: 0 8px 0 32px;
  }

  .hero-cta img {
    width: 34px;
    height: 34px;
  }

  .hero-icons {
    width: 100%;
    max-width: 340px;
    margin-top: 32px;
    gap: 5px;
  }

  .hero-icon-circle {
    width: 56px;
    height: 56px;
  }

  .hero-icon-circle img {
    width: 28px;
    height: 18px;
  }

  .hero-icon-label {
    font-size: 8px;
  }

  .hero-visual {
    position: relative;
    width: 100%;
    height: 380px;
    right: auto;
    top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .hero-circle {
    width: 260px;
    height: 260px;
    right: auto;
    top: auto;
    position: relative;
    margin: 0 auto;
  }

  .hero-device-phone {
    width: 140px;
    left: 5%;
    top: 50px;
  }

  .hero-device-tablet {
    width: 240px;
    right: 0;
    top: 20px;
  }
}

/* --------------------------------------------------------------------------
   Concerns Section (Mobile)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .concerns-section {
    padding: 60px 0;
  }

  .concerns-title {
    font-size: 24px;
    line-height: 1.5;
  }

  .concerns-title.concerns-title-pc {
    display: none;
  }

  .concerns-title.concerns-title-sp {
    display: block;
  }

  .concerns-subtitle.concerns-subtitle-pc {
    display: none;
  }

  .concerns-subtitle.concerns-subtitle-sp {
    display: block;
  }

  .concerns-subtitle p {
    font-size: 16px;
  }

  .concerns-zero {
    font-size: 36px;
  }

  .concerns-content {
    flex-direction: column;
    align-items: center;
    gap: 0px;
    margin-top: -10px;
  }

  .concerns-group {
    width: 100%;
    max-width: 340px;
    height: 300px;
  }

  .concerns-blob {
    width: 280px;
  }

  .concerns-blob-right {
    width: 240px;
  }

  .concerns-person-right {
    width: 250px;
    height: auto;
  }

  .concerns-person-left {
    width: 55px;
  }

  .concern-bubble {
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 0.8px;
  }

  .concern-bubble-wrap.right {
    right: -5%;
  }
}

/* --------------------------------------------------------------------------
   About Section (Mobile)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about-line {
    height: 50px;
    margin-bottom: 20px;
  }

  .about-intro {
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
  }

  .about-intro-image {
    flex: none;
    width: 100%;
    margin-left: -60px;
  }

  .about-intro-title {
    font-size: 20px;
    text-align: center;
  }

  .about-intro-desc {
    font-size: 14px;
    margin-top: 16px;
    text-align: center;
  }

  .about-intro-desc br {
    display: none;
  }

  .about-dx {
    margin-top: 48px;
  }

  .about-dx-arrow {
    width: 130px;
    height: 65px;
  }

  .about-dx-label-text {
    font-size: 16px;
  }

  .about-dx-title {
    font-size: 20px;
    margin-top: 16px;
  }

  .about-dx-desc {
    font-size: 13px;
    line-height: 1.8;
  }

  .about-dx-desc br {
    display: none;
  }

  .about-comparison {
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
  }

  .about-comparison-box {
    min-height: 280px;
    width: 100%;
  }

  .about-comparison-illust {
    min-height: 280px;
  }

  .about-comparison-arrow {
    text-align: center;
  }

  .about-comparison-arrow img {
    width: 40px;
    transform: rotate(90deg);
  }

  .about-stats-condition {
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 32px;
  }

  .about-stats-tag {
    padding: 6px 16px;
  }

  .about-stats-tag-label {
    font-size: 18px;
  }

  .about-stats-tag-number {
    font-size: 36px;
  }

  .about-stats-condition-text {
    font-size: 18px;
    width: 100%;
    text-align: center;
  }

  .about-stats-diamond {
    padding: 16px 0 4px;
  }

  .about-stats-arrow-img {
    width: 130px;
    height: 65px;
  }

  .about-stats-arrow-text {
    font-size: 16px;
  }

  .about-stats-result {
    flex-wrap: wrap;
    gap: 8px;
  }

  .about-stats-note {
    font-size: 12px;
    margin-top: 16px;
  }

  .about-stats-workload {
    max-width: 90%;
    padding-bottom: 32px;
  }

  .about-stats-workload-item span:last-child {
    font-size: 18px;
  }

  .about-services {
    margin-top: 40px;
    padding: 32px 24px;
    border-radius: 16px;
  }

  .about-services-header {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .about-services-header > .about-services-title-text:first-child {
    width: 100%;
    text-align: center;
  }

  .about-services-title-text {
    font-size: 18px;
  }

  .about-services-title-number {
    font-size: 36px;
  }

  .about-services-icon-open {
    width: 36px;
    height: 36px;
  }

  .about-services-list {
    gap: 16px;
    margin-top: 24px;
  }

  .about-service-item span {
    font-size: 14px;
  }

  .about-service-check {
    width: 16px;
    height: 14px;
  }

  .about-services-request {
    text-align: center;
    margin-top: 16px;
  }

  .about-services-request a {
    font-size: 13px;
  }
}

/* --------------------------------------------------------------------------
   Features Section (Mobile)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .features-section {
    padding: 60px 0;
  }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 100%;
  }

  .feature-card {
    width: auto;
    height: auto;
    padding-bottom: 20px;
  }

  .feature-card-title {
    font-size: 14px;
    padding-top: 20px;
  }

  .feature-card-icon {
    width: 80px;
    height: 80px;
    margin-top: 12px;
  }

  .features-cta {
    margin-top: 32px;
  }
}

/* --------------------------------------------------------------------------
   Aftercare Section (Mobile)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .aftercare-section {
    padding: 60px 0;
  }

  .aftercare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 100%;
  }

  .aftercare-grid .feature-card {
    width: auto;
    height: auto;
    padding-bottom: 20px;
  }

  .aftercare-grid .feature-card-title {
    font-size: 14px;
    padding-top: 20px;
  }

  .aftercare-grid .feature-card-icon {
    width: 80px;
    height: 80px;
    margin-top: 12px;
  }

  .aftercare-cta {
    margin-top: 32px;
  }
}

/* --------------------------------------------------------------------------
   How To Section (Mobile)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .howto-section {
    padding: 60px 0;
  }

  .howto-badge span {
    font-size: 16px;
    padding: 6px 20px;
  }

  .howto-tabs {
    margin-top: 24px;
  }

  .howto-tab {
    height: 44px;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%, 16px 50%);
  }

  .howto-tab:first-child {
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
  }

  .howto-tab-text {
    font-size: 16px;
    padding-left: 6px;
  }

  .howto-content {
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
  }

  .howto-screenshot {
    flex: none;
    width: 100%;
    height: auto;
  }

  .howto-screenshot img {
    height: auto;
    border-radius: 8px;
  }

  .howto-step-info {
    padding-top: 0;
    gap: 24px;
    align-items: center;
    width: 100%;
  }

  .howto-step-num {
    font-size: 40px;
  }

  .howto-step-circle {
    width: 36px;
    height: 36px;
  }

  .howto-step-title {
    font-size: 24px;
    text-align: center;
  }

  .howto-next {
    position: relative;
    bottom: auto;
    right: auto;
    align-self: flex-end;
    justify-content: flex-end;
    margin-top: 16px;
  }

  .howto-next-arrow {
    width: 40px;
    height: 40px;
  }
}

/* --------------------------------------------------------------------------
   Comparison Section (Mobile)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .comparison-section {
    padding: 60px 0;
  }

  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 600px;
    margin-top: 32px;
    grid-template-columns: 100px 1fr 1fr 1fr;
    gap: 4px 2px;
  }

  .comparison-label {
    font-size: 11px;
    padding: 10px 6px;
    letter-spacing: 0.4px;
  }

  .comparison-col-header {
    font-size: 14px;
    padding: 10px 0;
  }

  .comparison-cell {
    font-size: 12px;
    padding: 10px 6px;
  }

  .comparison-cell-bold {
    font-size: 14px;
  }

  .comparison-cell-features {
    padding: 8px 6px;
    gap: 3px;
  }

  .comparison-feature-row {
    padding: 5px 10px;
    gap: 6px;
  }

  .comparison-feature-icon {
    width: 22px;
    height: 22px;
  }

  .comparison-feature-row span {
    font-size: 11px;
    letter-spacing: 0.4px;
  }

  .comparison-cell-app {
    font-size: 12px;
  }
}

/* --------------------------------------------------------------------------
   App Section (Mobile)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .app-section {
    padding: 60px 0;
  }

  .app-box {
    border: 2px solid var(--brand-blue);
    border-radius: 16px;
    padding: 32px 20px;
    position: relative;
  }

  .app-title {
    font-size: 24px;
    padding: 0 20px;
  }

  .app-content {
    flex-direction: column-reverse;
    gap: 32px;
    margin-top: 24px;
  }

  .app-phone {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .app-phone img {
    max-width: 240px;
  }

  .app-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .app-badge {
    font-size: 18px;
    padding: 8px 24px;
  }

  .app-desc {
    font-size: 14px;
    margin-top: 20px;
    text-align: left;
  }

  .app-desc br {
    display: none;
  }

  .app-stores {
    gap: 12px;
    margin-top: 24px;
  }

  .app-stores img {
    height: 40px;
  }
}

/* --------------------------------------------------------------------------
   FAQ Section (Mobile)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .faq-section {
    padding: 0;
  }

  .faq-question {
    padding: 16px 20px;
  }
}

/* --------------------------------------------------------------------------
   Footer (Mobile)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .site-footer {
    padding: 60px 20px 45px;
  }

  .footer-nav {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .footer-nav-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .footer-nav-col li {
    width: 50%;
    margin-bottom: 20px;
  }

  .footer-nav-col li:not(:last-child) {
    margin-bottom: 20px;
  }

  .footer-banners {
    margin-left: 0;
    margin-top: 20px;
    max-width: 100%;
  }
}

/* ==========================================================================
   Service Page
   ========================================================================== */

.page-service {
  background-color: #f5f8f9;
}

.page-service .app-title {
  background: #f5f8f9;
}

/* --------------------------------------------------------------------------
   Service Hero (.service-hero)
   -------------------------------------------------------------------------- */
.service-hero {
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: url('/images/common/bg.png') center / cover no-repeat, #e8f7fa;
}

.service-hero-inner {
  text-align: center;
  padding: 50px 20px;
  margin-top: 100px;
}

.service-hero-title {
  font-family: var(--font-jp);
  font-size: 40px;
  font-weight: 900;
  color: var(--brand-blue);
  letter-spacing: 4.8px;
}

.service-hero-line {
  width: 200px;
  height: 3px;
  margin: 24px auto;
  border-top: 3px dashed var(--brand-blue);
}

.service-hero-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.6px;
  color: var(--black-text);
}

/* Service Hero (Mobile) */
@media screen and (max-width: 768px) {
  .service-hero {
    min-height: 200px;
  }

  .service-hero-inner {
    padding: 60px 20px;
  }

  .service-hero-title {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .service-hero-line {
    width: 150px;
    margin: 16px auto;
  }

  .service-hero-desc {
    font-size: 13px;
  }

  .service-hero-desc br {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Service Standard (.service-standard)
   -------------------------------------------------------------------------- */
.service-standard {
  padding: var(--section-padding) 0;
}

.service-standard-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-standard-heading {
  text-align: center;
}

.service-standard-icon {
  width: 125px;
  height: auto;
  margin: 0 auto;
}

.service-standard-heading-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 16px;
  color: var(--black-text);
  letter-spacing: 3px;
  margin-top: 8px;
}

.service-standard-heading-jp {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 40px;
  color: var(--black-text);
  letter-spacing: 4.8px;
  margin-top: 4px;
}

/* Point block (image + body) */
.service-point {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-top: 80px;
}

.service-point-reverse {
  flex-direction: row-reverse;
}

.service-point-image {
  flex: 0 0 340px;
}

.service-point-image img {
  width: 100%;
  height: auto;
}

.service-point-body {
  flex: 1;
}

.service-point-label {
  display: block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-blue);
  letter-spacing: 2px;
}

.service-point-title {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 30px;
  color: var(--black-text);
  letter-spacing: 2.4px;
  margin-top: 8px;
}

.service-point-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.6px;
  color: var(--black-text);
  margin-top: 20px;
}

/* Tags */
.service-point-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.service-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 20px 4px 8px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.12px;
  white-space: nowrap;
  color: var(--black-text);
}

.service-tag-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.service-tag-white {
  background: var(--white);
}

.service-tag-yellow {
  background: var(--cream);
}

.service-tag-green {
  background: #F6FBF0;
}

/* Check list */
.service-point-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.service-point-check {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-point-check img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.service-point-check span {
  font-size: 15px;
  font-weight: 500;
  color: var(--black-text);
  letter-spacing: 0.6px;
}

/* Service Standard (Mobile) */
@media screen and (max-width: 768px) {
  .service-standard {
    padding: 60px 0;
  }

  .service-standard-heading-jp {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .service-point {
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
  }

  .service-point-reverse {
    flex-direction: column;
  }

  .service-point-image {
    flex: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .service-point-title {
    font-size: 22px;
  }

  .service-point-desc {
    font-size: 14px;
  }

  .service-point-desc br {
    display: none;
  }

  .service-tag {
    font-size: 12px;
    padding: 3px 14px 3px 6px;
    gap: 6px;
  }

  .service-tag-icon {
    width: 26px;
    height: 26px;
  }
}

.service-separator {
  max-width: 1100px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid #CCCCCC;
}

/* --------------------------------------------------------------------------
   Service Original (.service-original)
   -------------------------------------------------------------------------- */
.service-original {
  padding: var(--section-padding) 0;
}

.service-point-app-badge {
  display: inline-block;
  background: #FF9E44;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.32px;
  margin-top: 8px;
}

.service-point-app-badge + .service-point-title {
  margin-top: 8px;
}

.service-banner {
  width: 100%;
}

.service-banner-link {
  display: block;
  transition: opacity 0.3s ease;
}

.service-banner-link:hover {
  opacity: 0.8;
}

.service-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   Service Possible (.service-possible)
   -------------------------------------------------------------------------- */
.service-possible {
  background: url('/images/service/possible-bg.png') center / cover no-repeat;
  padding: 65px 20px;
}

.service-possible-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.service-possible-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.service-possible-icon {
  height: 50px;
  width: auto;
}

.service-possible-title h3 {
  color: var(--white);
  font-size: 30px;
  font-weight: 500;
}

.service-possible-desc {
  color: var(--white);
  font-weight: 400;
  line-height: 2;
  margin-top: 25px;
  font-size: 15px;
}

.service-possible-cta {
  margin-top: 35px;
  text-align: center;
}

.service-possible-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 56px;
  border-radius: 28px;
  background: var(--brand-yellow);
  color: var(--black-text);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  filter: drop-shadow(0px 3px 12px rgba(0, 0, 0, 0.1));
  transition: filter 0.3s, transform 0.3s;
}

.service-possible-button:hover {
  transform: translateY(5px);
  filter: none;
}

/* Service Possible (Mobile) */
@media screen and (max-width: 768px) {
  .service-possible {
    padding: 45px 20px 40px;
  }

  .service-possible-icon {
    height: 35px;
  }

  .service-possible-title h3 {
    font-size: 21px;
    font-weight: 700;
  }

  .service-possible-desc {
    font-size: 15px;
    font-weight: 700;
  }

  .service-possible-desc br {
    display: none;
  }
}

/* Service Original (Mobile) */
@media screen and (max-width: 768px) {
  .service-original {
    padding: 60px 0;
  }
}

/* ==========================================================================
   Plan Page
   ========================================================================== */

/* --------------------------------------------------------------------------
   Plan Support (.plan-support)
   -------------------------------------------------------------------------- */
.plan-support {
  padding: var(--section-padding) 0;
}

.plan-support-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.plan-support-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.6px;
  color: var(--black-text);
  text-align: center;
  margin-top: 48px;
}

/* Plan Support (Mobile) */
@media screen and (max-width: 768px) {
  .plan-support {
    padding: 60px 0;
  }

  .plan-support-desc {
    font-size: 14px;
    text-align: left;
  }

  .plan-support-desc br {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Plan Cover (.plan-cover)
   -------------------------------------------------------------------------- */
.plan-cover {
  padding: var(--section-padding) 0;
}

.plan-cover-inner {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}

.plan-cover-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 48px;
}

.plan-cover-table {
  min-width: 700px;
}

/* Column headers */
.plan-cover-headers {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.plan-cover-header-spacer {
  width: 140px;
  flex-shrink: 0;
}

.plan-cover-col-header {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan-cover-col-label {
  background: var(--brand-blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.72px;
  padding: 8px 0;
  border-radius: 8px;
  text-align: center;
  width: 100%;
}

.plan-cover-arrow {
  width: 14px;
  height: 8px;
}

/* Body */
.plan-cover-body {
  display: flex;
  position: relative;
}

.plan-cover-row-headers {
  width: 140px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.plan-cover-row-header {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.72px;
  position: relative;
  overflow: hidden;
}

.plan-cover-row-icon {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  opacity: 0.5;
}

.plan-cover-row-risk {
  background: #E33C3C;
  border-radius: 8px 0 0 0;
}

.plan-cover-row-operation {
  background: #4AC244;
  border-radius: 0 0 0 8px;
}

/* Grid area */
.plan-cover-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 12px;
  position: relative;
}

.plan-cover-row-bg {
  position: absolute;
  left: 0;
  right: 0;
}

.plan-cover-row-bg-risk {
  top: 0;
  height: 50%;
  background: #F5CFCF;
  border-radius: 0 8px 0 0;
}

.plan-cover-row-bg-operation {
  bottom: 0;
  height: 50%;
  background: #CAEAC8;
  border-radius: 0 0 8px 0;
}

.plan-cover-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--black-text);
  letter-spacing: 0.72px;
  background: var(--white);
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

/* SP table hidden on PC */
.plan-cover-sp {
  display: none;
}

/* Plan Cover (Mobile) */
@media screen and (max-width: 768px) {
  .plan-cover {
    padding: 60px 0;
  }

  /* Hide PC table, show SP table */
  .plan-cover-table-wrapper {
    display: none;
  }

  .plan-cover-sp {
    display: block;
    margin-top: 48px;
  }

  /* SP headers */
  .plan-cover-sp-headers {
    display: flex;
    padding-left: 35px;
  }

  .plan-cover-sp-header-spacer {
    display: none;
  }

  .plan-cover-sp-col-header {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 0;
    border-radius: 8px 8px 0 0;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.72px;
    overflow: hidden;
  }

  .plan-cover-sp-col-risk {
    background: #E33C3C;
  }

  .plan-cover-sp-col-operation {
    background: #4AC244;
  }

  .plan-cover-sp-col-icon {
    position: absolute;
    right: 6px;
    bottom: 4px;
    width: 20px;
    height: 20px;
    opacity: 0.5;
  }

  /* SP body */
  .plan-cover-sp-body {
    display: flex;
    flex-direction: column;
  }

  .plan-cover-sp-row {
    display: flex;
    height: 130px;
  }

  .plan-cover-sp-row-label {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    margin: 8px 0px;
  }

  .plan-cover-sp-row-label .plan-cover-col-label {
    font-size: 12px;
    padding: 8px 4px;
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    white-space: nowrap;
  }

  .plan-cover-tcy {
    text-combine-upright: all;
  }

  .plan-cover-sp-arrow {
    width: 8px;
    height: 14px;
    flex-shrink: 0;
  }

  /* SP cells grid */
  .plan-cover-sp-cells {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 10px;
    padding: 8px;
    position: relative;
  }

  .plan-cover-sp-cells-tall {
    grid-template-rows: 1fr 1fr;
  }

  .plan-cover-sp-bg {
    position: absolute;
    top: 0;
    bottom: 0;
  }

  .plan-cover-sp-bg-risk {
    left: 0;
    width: 50%;
    background: #F5CFCF;
  }

  .plan-cover-sp-bg-operation {
    right: 0;
    width: 50%;
    background: #CAEAC8;
  }

  .plan-cover-sp-cells .plan-cover-cell {
    font-size: 13px;
    padding: 16px 6px;
    z-index: 1;
  }
}

/* --------------------------------------------------------------------------
   Plan Detail (.plan-detail)
   -------------------------------------------------------------------------- */
.plan-detail {
  padding: var(--section-padding) 0;
}

.plan-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Timeline */
.plan-timeline {
  position: relative;
  margin-top: 64px;
}

.plan-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
  transform: translateX(-50%);
}

.plan-timeline-row {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 120px;
  gap: 0;
}

/* PC: button sits below the card column */
.plan-detail-card {
  padding-bottom: 80px;
}

.plan-timeline-row > .plan-card-contact {
  position: absolute;
  bottom: 0;
}

/* When card is on the right (table-left pattern), button on the right */
.plan-timeline-col:first-child:has(.plan-detail-table) ~ .plan-card-contact {
  right: 315px;
}

/* When card is on the left (card-left pattern), button on the left */
.plan-timeline-col:first-child:has(.plan-detail-card) ~ .plan-card-contact {
  left: 24px;
}

.plan-timeline-row:last-child {
  margin-bottom: 0;
}

.plan-timeline-col {
  flex: 1;
  padding: 0 24px;
}

/* Dot */
.plan-timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 2;
  background: var(--black-text);
  margin-top: 24px;
  transition: background-color 0.6s ease, transform 0.4s ease;
}

.plan-timeline-dot-active {
  background: var(--brand-blue);
  transform: scale(1.2);
}

/* Card */
.plan-detail-card {
  width: 100%;
}

.plan-card-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  padding: 4px 8px;
  border-radius: 100px;
  letter-spacing: 1.12px;
}

.plan-card-badge-risk {
  background: #E33C3C;
}

.plan-card-badge-operation {
  background: #4AC244;
}

.plan-card-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-top: 4px;
  letter-spacing: 2.4px;
  line-height: 1.6;
}

.plan-card-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--black-text);
  letter-spacing: 0.6px;
  margin-top: 12px;
}

.plan-card-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-yellow);
  border-radius: 100px;
  padding: 0 40px;
  height: 56px;
  color: var(--black-text);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 24px;
  letter-spacing: 1.2px;
  transition: background-color 0.3s, transform 0.2s;
}

.plan-card-contact:hover {
  background: #fdd020;
  transform: translateY(-1px);
}

/* Detail Table */
.plan-detail-table {
  width: 100%;
}

.plan-detail-tr {
  display: flex;
  gap: 3px;
  margin-bottom: 3px;
}

.plan-detail-tr:first-child .plan-detail-th {
  border-radius: 6px 0 0 0;
}

.plan-detail-tr:last-child .plan-detail-th {
  border-radius: 0;
}

.plan-detail-tr:last-child .plan-detail-td {
  border-radius: 0 0 6px 0;
}

.plan-detail-th {
  width: 210px;
  flex-shrink: 0;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  letter-spacing: 1.2px;
}

.plan-detail-td {
  flex: 1;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 13px 10px;
  text-align: center;
  color: var(--brand-blue);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.44px;
  gap: 12px;
}

.plan-detail-td strong {
  font-weight: 700;
}

.plan-detail-td-sub {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.2px;
  margin: 0;
}

.plan-detail-td-note {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.96px;
  margin: 0;
}

/* Plan Detail (Mobile) */
@media screen and (max-width: 768px) {
  .plan-detail {
    padding: 60px 0;
  }

  .plan-timeline-line {
    left: 16px;
  }

  .plan-timeline-row {
    flex-direction: column;
    margin-bottom: 60px;
    gap: 24px;
    padding-left: 40px;
  }

  .plan-timeline-dot {
    position: absolute;
    left: 10px;
    top: 24px;
    width: 12px;
    height: 12px;
    margin-top: 0;
  }

  .plan-timeline-col {
    padding: 0;
    width: 100%;
  }

  /* Card always first on SP */
  .plan-timeline-col:has(.plan-detail-card) {
    order: -1;
  }

  .plan-card-title {
    font-size: 22px;
  }

  .plan-card-desc {
    font-size: 13px;
  }

  /* Table: th and td stack vertically */
  .plan-detail-tr {
    flex-direction: column;
    gap: 0;
  }

  .plan-detail-th {
    width: 100%;
    font-size: 13px;
    padding: 8px 0;
    border-radius: 0;
  }

  .plan-detail-tr:first-child .plan-detail-th {
    border-radius: 6px 6px 0 0;
  }

  .plan-detail-td {
    font-size: 16px;
    padding: 12px 16px;
  }

  .plan-detail-td-sub {
    font-size: 13px;
  }

  .plan-detail-card {
    padding-bottom: 0;
  }

  .plan-timeline-row > .plan-card-contact {
    position: static;
    width: 80%;
    max-width: 240px;
    margin: 24px auto 0;
    justify-content: center;
    order: 99;
  }
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */
.legal-section {
  padding: var(--section-padding) 0;
}

.legal-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-block {
  margin-bottom: 48px;
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--black-text);
  margin-bottom: 16px;
}

.legal-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--black-text);
}

@media screen and (max-width: 768px) {
  .legal-section {
    padding: 60px 0;
  }

  .legal-heading {
    font-size: 20px;
  }

  .legal-text {
    font-size: 14px;
  }

  .legal-block {
    margin-bottom: 36px;
  }
}
