:root {
  --color-text-main: #333;
  --color-blue: #0e6aca;
  --color-dark-blue: #00348c;
  --color-bg-color: #f2f8fe;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  padding-top: 70px;
  padding-bottom: 95px;
  color: var(--color-text-main);
  background-color: #f2f8fe;
  box-sizing: border-box;
  overflow-x: hidden;
}
a {
  text-decoration: underline;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
  transition: linear 0.3s;
}
.flex {
  display: flex;
  gap: 15px;
}
.sp-br {
  display: block;
}
.pc-br {
  display: none;
}
.price-number,
.reason-num,
.step-num,
.trouble-title .text-large,
.phone-number span,
.news-date,
.section-title .text-blue {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.gradient-text {
  background: linear-gradient(135deg, #07c654 0%, #1173d2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  max-width: 1300px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-icon-img {
  height: 28px;
  width: auto;
  display: block;
}
.logo-text {
  color: var(--color-blue);
  font-weight: 700;
  font-size: clamp(1.125rem, -0.259rem + 2.23vw, 1.75rem);
}
.hamburger {
  display: block;
  width: 30px;
  height: 24px;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 11px;
}
.hamburger span:nth-child(3) {
  bottom: 0;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  transition: right 0.3s ease;
}
.nav.is-active {
  right: 0;
}
.nav-list {
  width: 100%;
  text-align: center;
}
.nav-list li {
  width: 100%;
  border-bottom: 1px solid #eee;
}
.nav-list a {
  display: block;
  width: 100%;
  padding: 1em 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}
.cta-button {
  background-color: #f97316;
  color: #fff;
  font-weight: 700;
  padding: 1em;
  border-radius: 30px;
  display: flex;
  gap: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  align-items: center;
  margin-top: 2rem;
  justify-content: center;
  font-size: 1.2rem;
}
.header-line-svg {
  flex-shrink: 0;
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 30px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  transform: skewX(-30deg);
  animation: shiny 3s infinite;
}
@keyframes shiny {
  0% {
    left: -100%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.hero {
  width: 100%;
  background-color: #e6f2ff;
}
.hero-inner {
  position: relative;
  margin: 0 auto;
}
.hero-bg-image {
  width: 100%;
  height: auto;
  display: block;
}
.hero-cta-button {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 600px;
  background: linear-gradient(to bottom, #06c755, #05a044);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 10px;
  border-radius: 50px;
  border: 3px solid #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  animation: bounce 2s infinite;
}
.text-yellow {
  color: #fff100;
}
.hero-line-svg {
  margin-right: 8px;
  flex-shrink: 0;
}
.hero-btn-text {
  letter-spacing: 1px;
}
.hero-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 10px;
  position: relative;
}
.hero-btn-arrow::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #06c755;
  border-right: 2px solid #06c755;
  transform: rotate(45deg);
  margin-right: 2px;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}
.promise {
  background-color: #f4f7fb;
  padding: 60px 20px;
}
.promise-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.75rem, 0.435rem + 5.61vw, 3.125rem);
  letter-spacing: 0;
  color: #333;
  margin-bottom: 40px;
  font-weight: 700;
  white-space: nowrap;
}
#reasons .section-title {
  font-size: clamp(1.25rem, -0.065rem + 5.61vw, 2.625rem);
}
#promise .section-title,
.section-title .text-blue {
  font-family: "Noto Serif JP", "Yu Mincho", "MS Mincho", serif;
}
.section-title::before,
.section-title::after {
  content: "";
  display: block;
  width: 30px;
  border-top: 4px dotted var(--color-blue);
}
.section-title::before {
  transform: rotate(45deg);
  margin-right: 0.5rem;
}
.section-title::after {
  transform: rotate(-45deg);
  margin-left: 0.5rem;
}
.section-title .text-blue {
  color: var(--color-blue);
  font-size: 1.3em;
  font-weight: 700;
  margin: 0 4px;
}
.promise-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.card-icon {
  width: 80px;
  margin-bottom: 15px;
}
.card-icon img {
  width: 100%;
  height: auto;
}
.card-content {
  text-align: center;
}
.card-title {
  color: var(--color-blue);
  font-size: 1.8rem;
  margin: 0 0 10px 0;
}
.card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  text-align: left;
}
.message-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px 100px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}
.message-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}
.message-highlight {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 25px;
  color: var(--color-dark-blue);
  font-family: "Noto Serif JP", "Yu Mincho", "MS Mincho", serif;
}
.message-highlight .highlight-line {
  margin: 0 0 25px 0;
}
.message-highlight .highlight-line:last-child {
  margin-bottom: 0;
}
.message-highlight .marker-yellow {
  display: inline !important;
}
.marker-yellow {
  background: linear-gradient(transparent 60%, #fdf8c0 60%);
  display: inline !important;
}
.message-blue {
  color: var(--color-blue);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: left;
}
.signature {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 20px;
}
.signature-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  bottom: 20px;
  right: calc(100% + 20px);
  white-space: nowrap;
  z-index: 2;
}
.company-name {
  font-size: 12px;
  margin-bottom: 5px;
}
.president-name {
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", "Yu Mincho", "MS Mincho", serif;
}
.signature-photo {
  width: 150px;
  position: absolute;
  bottom: 0;
  right: 20px;
  z-index: 1;
}
.signature-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.trouble {
  background-image: url(assets/images/mo-iya-bg.png);
  background-size: contain;
  background-position: center top;
  padding: 120px 20px 0;
  background-repeat: no-repeat;
  position: relative;
  height: auto;
}
.trouble-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.trouble-inner {
  margin: 0;
}
.trouble-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 25px !important;
  line-height: 1.2;
  margin: 0;
}
.trouble-title .text-large {
  font-size: 42px;
  color: var(--color-blue);
  margin: 0 4px;
  line-height: 1.6;
}
.trouble-title .text-small {
  font-size: 16px;
  display: block;
  margin-top: 5px;
}
.trouble-list li {
  background-color: #fff;
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.check-icon {
  flex-shrink: 0;
}
.list-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.5;
}
.list-item-last {
  position: relative;
}
.etc-text {
  position: absolute;
  bottom: 8px;
  right: 15px;
  font-size: 12px;
  color: var(--color-text-main);
  font-weight: 700;
}
.no-special {
  padding: 50px 0;
  text-align: center;
}
.no-special img {
  width: 100%;
}
.cta-banner {
  padding: 40px 10px;
}
.cta-banner-inner {
  margin: 0 auto;
  border: 2px solid #e0e7ff;
  border-radius: 20px;
  background-color: #fff;
  padding: 30px 10px;
  text-align: center;
}
.cta-banner-text {
  font-size: clamp(0.75rem, -0.207rem + 4.08vw, 1.75rem);
  font-weight: 700;
  color: var(--color-blue);
  margin-top: 0;
  margin-bottom: 120px;
  line-height: 1.5;
}
.text-line-green {
  color: #06c755;
}
.cta-banner-action {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.cta-banner-btn {
  position: relative;
  bottom: auto;
  left: auto;
  width: 100%;
  z-index: 2;
  transform: none;
  animation: bounce-y 2s infinite;
}
@keyframes bounce-y {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}
.cta-badge {
  position: absolute;
  top: -110px;
  width: 100px;
  z-index: 10;
}
.cta-badge img {
  width: 100%;
  height: auto;
  display: block;
}
.cta-badge-left {
  left: 15%;
}
.cta-badge-right {
  right: 15%;
}
.leave-omakase-image {
  width: 100%;
}
.reasons {
  background: linear-gradient(135deg, #fffbea 0%, #f0fdfa 100%);
  padding: 60px 20px;
}
.reasons-inner {
  max-width: 1300px;
  margin: 0 auto;
}
#reasons .blue {
  color: var(--color-blue);
}
.reasons-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
  grid-template-columns: 1fr;
}
.reason-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.reason-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.reason-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background-color: var(--color-blue);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.reason-title {
  font-size: 1.5rem;
  color: var(--color-blue);
  margin: 0;
  font-weight: 700;
  border-bottom: 4px solid #ffe471;
  width: 80%;
}
.title-underline {
  background: linear-gradient(transparent 80%, #fff100 80%);
}
.reason-card-body {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.reason-icon {
  width: 130px;
  height: auto;
  flex-shrink: 0;
}
.reason-text {
  font-size: clamp(1rem, 0.857rem + 0.3vw, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-main);
  margin: 0;
}
.reasons-bottom-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  background-color: #fdfae9;
  padding: 20px;
  border-radius: 12px;
}
.bottom-shield-icon {
  width: 40px;
  height: auto;
}
.bottom-msg-text {
  font-size: clamp(1.25rem, 0.679rem + 1.19vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.5;
  margin: 0;
}
.text-bold-blue {
  color: var(--color-blue);
  font-size: 1.3em;
}
#pricing .text-blue,
#steps .text-blue,
#contact .text-blue {
  font-family: initial;
}
.pricing {
  padding: 60px 20px;
}
.pricing-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.pricing-subtitle {
  text-align: center;
  font-size: clamp(1rem, 0.411rem + 1.49vw, 1.75rem);
  color: var(--color-text-main);
  margin-bottom: 40px;
  font-weight: 600;
}
.theme-blue {
  --theme-color: var(--color-blue);
  --theme-border: #dbeafe;
}
.theme-green {
  --theme-color: #12b73b;
  --theme-border: #d1fae5;
}
.pricing-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
.plan-card {
  background-color: #fff;
  border-radius: 12px;
  border: 2px solid var(--theme-border);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.plan-header {
  background-color: var(--theme-color);
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: clamp(1.563rem, 0.634rem + 1.93vw, 2.375rem);
  font-weight: 700;
  line-height: 1;
  margin: 0 !important;
}
.plan-header span {
  font-size: 14px;
  display: inline-block;
  font-weight: 400;
}
.plan-body {
  padding: 25px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: calc(100% - 58px);
  align-items: center;
  flex-grow: 1;
}
.plan-subtext {
  color: var(--theme-color);
  font-weight: 700;
  font-size: clamp(1.125rem, -0.161rem + 2.68vw, 2.25rem);
  margin-bottom: 10px;
  margin-top: 0;
}
.plan-price {
  color: var(--theme-color);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}
.price-number {
  font-size: clamp(4rem, 4.286rem + 1.49vw, 5.625rem);
  font-weight: 700;
  letter-spacing: -5px;
  line-height: 1;
}
.price-number.title-underline {
  background: linear-gradient(
    transparent 75%,
    #fff100 75%,
    #fff100 85%,
    transparent 85%
  );
}
.price-unit {
  font-size: 24px;
  font-weight: 700;
  display: inline-flex;
  flex-direction: column-reverse;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}
.tax {
  font-size: 14px;
  font-weight: 400;
}
.plan-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
  border: 1px solid #e0e7ff;
  border-radius: 8px;
  background-color: #fff;
  margin-bottom: 25px;
  padding: 0;
  align-content: flex-start;
  overflow: hidden;
  width: 100%;
}
.plan-features li {
  width: 100% !important;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  border-bottom: 1px dotted #ccc;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-main);
}
.plan-features li:nth-child(odd):not(.full-width) {
  border-right: 1px dotted #ccc;
}
.plan-features li.full-width {
  grid-column: 1 / -1;
  border-bottom: none;
  justify-content: left;
}
.feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 18px;
  height: 18px;
}
.feature-icon.bg-theme {
  background-color: var(--theme-color);
}
.feature-icon.bg-line {
  background-color: #12b73b;
}
.plan-card-btn {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  width: 100%;
  background: var(--theme-color) !important;
  animation: bounce-y 2s infinite !important;
  margin-top: auto !important;
}
.plan-card-btn .hero-btn-arrow::after {
  border-color: var(--theme-color) !important;
}
.steps {
  background-color: #f8fcf8;
  padding: 60px 20px;
}
#steps .section-title {
  font-size: clamp(2.5rem, 1.902rem + 2.55vw, 3.125rem);
}
#steps h2 span {
  font-size: 1em;
}
.steps-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.steps-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--color-text-main);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 600;
}
.text-bold-blue {
  color: var(--color-blue);
  font-weight: 700;
}
.steps-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
  justify-items: center;
}
.step-card {
  max-width: 450px;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.step-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: clamp(2rem, -0.161rem + 2.68vw, 2.25rem);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.step-num {
  background-color: var(--color-blue);
  color: #fff;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
}
.step-image {
  margin-bottom: 20px;
}
.step-image img {
  width: 100%;
  max-width: 275px;
  height: auto;
}
.step-text {
  font-size: clamp(1rem, 0.857rem + 0.3vw, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-main);
  margin: 0;
  text-align: left;
}
.steps-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  margin-bottom: 30px;
}
.steps-shield-icon {
  width: 40px;
  height: auto;
}
.steps-message-text {
  font-size: clamp(1.1rem, 0.411rem + 1.49vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.6;
  margin: 0;
}
.steps-cta-wrapper {
  margin-top: 100px;
}
.faq {
  padding: 30px 20px 100px 20px;
  background-color: #fff;
}
.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  border: 1px solid #e0e7ff;
  border-radius: 8px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background-color: #f4f8fc;
  border: none;
  padding: 20px;
  font-size: clamp(1.125rem, 0.839rem + 0.6vw, 1.375rem);
  font-weight: 700;
  color: var(--color-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  outline: none;
}
.faq-icon-q {
  color: var(--color-blue);
  font-size: 18px;
  margin-right: 10px;
}
.faq-arrow {
  margin-left: auto;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-right: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-arrow {
  transform: rotate(-135deg);
}
.faq-a-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-a {
  overflow: hidden;
}
.faq-a p {
  margin: 0;
  padding: 1rem;
  font-size: clamp(1.125rem, 0.839rem + 0.6vw, 1.375rem);
  line-height: 1.8;
  color: var(--color-text-main);
  background-color: #fff;
  display: flex;
}
.faq-icon-a {
  color: #f97316;
  font-size: clamp(1.125rem, 0.839rem +0.6vw, 1.375rem);
  font-weight: 700;
  margin-right: 10px;
}
.faq-item.is-open .faq-a-wrapper {
  grid-template-rows: 1fr;
}
.faq-a-content {
  padding: 1rem;
  font-size: clamp(1.125rem, 0.839rem + 0.6vw, 1.375rem);
  line-height: 1.8;
  color: var(--color-text-main);
  background-color: #fff;
  display: flex;
}
.faq-a-columns {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.faq-col-right {
  font-size: clamp(1rem, 0.714rem + 0.6vw, 1.25rem);
  color: #666;
}
.faq-q-text {
  flex: 1;
  min-width: 0;
  padding-right: 10px;
  line-height: 1.6;
  word-break: break-word;
}

#contcact .section-title .text-blue {
  font-size: 1em !important;
}
.contact {
  background-color: #f4f7fb;
  padding: 60px 15px 40px;
}
.contact-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.contact-subtitle {
  text-align: center;
  font-size: clamp(1rem, 0.696rem + 0.89vw, 1.5rem);
  color: var(--color-text-main);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 700;
}
.contact-cards {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
.contact-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.card-pill {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.125rem, 0.768rem + 0.74vw, 1.438rem);
  padding: 8px 30px;
  border-radius: 30px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.bg-blue {
  background-color: var(--color-blue);
}
.bg-green {
  background-color: #3b82f6;
}
.card-line .bg-green {
  background-color: #44a340;
}
.phone-number img {
  width: 100%;
  height: auto;
}
.phone-hours {
  font-size: 12px;
  color: var(--color-text-main);
  margin-bottom: 20px;
  margin-top: 0;
}
.phone-image {
  width: 100%;
  margin-top: auto;
}
.phone-image img {
  width: 100%;
  height: auto;
  display: block;
}
.card-line {
  padding-bottom: 30px;
}
.line-catch {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.qr-code {
  width: 160px;
  margin-bottom: 20px;
}
.qr-code img {
  width: 100%;
  height: auto;
}
.line-specific-btn {
  background: #34a853 !important;
  width: 100%;
}
.line-specific-btn .hero-btn-arrow::after {
  border-color: #34a853 !important;
}
.contact-form {
  max-width: 800px;
  margin: 0 auto;
}
.form-wrapper {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.form-header {
  background-color: #e6f2ff;
  color: var(--color-blue);
  font-weight: 700;
  font-size: clamp(1rem, 0.768rem + 0.74vw, 1.438rem);
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  max-width: 400px;
  margin: 0 auto 20px;
}
.form-note {
  text-align: center;
  font-size: 1rem;
  color: var(--color-text-main);
  margin-bottom: 30px;
}
.form-group {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 0;
}
.form-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.badge-required {
  background-color: var(--color-blue);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 10px;
}
.form-input {
  width: 100%;
}
.form-input input[type="text"],
.form-input input[type="email"],
.form-input input[type="tel"],
.form-input textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 12px;
  font-size: 16px;
  background-color: #fafafa;
}
.form-input textarea {
  resize: vertical;
}
.form-agreement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
  font-size: 14px;
  color: var(--color-text-main);
}
.submit-btn {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  background-color: var(--color-blue);
  color: #fff;
  font-weight: 700;
  font-size: clamp(1rem, 0.857rem + 0.3vw, 1.125rem);
  padding: 15px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.submit-btn:hover {
  opacity: 0.8;
}
.thanks-page {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(100vh - 150px);
}
.thanks-container {
  text-align: center;
  max-width: 700px;
  padding: 60px 30px;
}
.thanks-icon {
  color: #10b981;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}
.thanks-icon svg {
  width: 100%;
  height: 100%;
}
.thanks-title {
  font-size: clamp(20px, 4vw, 28px);
  color: var(--color-blue);
  font-weight: 700;
  margin-bottom: 20px;
}
.thanks-message {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-main);
  margin-bottom: 40px;
}
.thanks-info {
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 30px 20px;
  margin-bottom: 40px;
}
.info-note {
  font-size: 13px;
  color: #666;
  margin-bottom: 25px;
  text-align: left;
}
.line-notice {
  border-top: 1px dashed #ccc;
  padding-top: 25px;
}
.line-notice p {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 15px;
}
.btn-line-thanks {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #06c755;
  color: #fff;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 30px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.btn-line-thanks:hover {
  opacity: 0.8;
}
.thanks-footer-btn {
  margin-top: 20px;
}
#company .ja-title {
  font-size: 40px;
  letter-spacing: 0.1em;
}
.company-intro {
  background-color: #f4f7fb;
  text-align: center;
  padding-top: 40px;
}
.company-intro-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.company-intro-logo {
  width: 80px;
  margin: 0 auto 20px;
}
.company-intro-logo img {
  width: 100%;
  height: auto;
}
.company-intro-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-main);
  margin-bottom: 40px;
  text-align: left;
}
.font-bold {
  font-weight: 700;
}
.company-intro-town-bg {
  width: 100%;
  line-height: 0;
}
.company-intro-town-bg img {
  width: 100%;
  height: auto;
  display: block;
}
.section-header-center {
  text-align: center;
  margin-bottom: 40px;
}
.en-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.ja-title {
  color: var(--color-blue);
  font-size: clamp(1.875rem, 0.589rem + 2.68vw, 3rem);
  font-weight: 700;
  margin: 0;
}
.company {
  padding: 60px 20px;
  background-color: #fff;
}
.company-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.company-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.company-map {
  position: relative;
  padding-top: 20px;
  padding-left: 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.company-map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  background-image: linear-gradient(327deg, #0e6aca, #10b981);
  z-index: 1;
}
.map-iframe-wrapper {
  position: relative;
  z-index: 2;
  aspect-ratio: 1 / 1;
  background-color: #eee;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.map-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.company-info {
  width: 100%;
}
.company-intro-text {
  font-family: "Noto Serif JP", "Yu Mincho", "MS Mincho", serif;
  font-size: clamp(1.125rem, 0.696rem + 0.89vw, 1.5rem);
  letter-spacing: 0.02em;
  word-break: keep-all;
  font-weight: 600;
}
.company-intro-text span {
  color: var(--color-blue);
  font-size: 1.1em;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-main);
}
.info-table th,
.info-table td {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  vertical-align: top;
  font-size: 1rem;
}
.info-table th {
  width: 30%;
  min-width: 80px;
  font-weight: 700;
}
.lawyer-cell {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}
.lawyer-cell span {
  margin-left: 1rem;
}
.lawyer-logo {
  height: 24px;
  width: auto;
}
.lawyer-link {
  text-decoration: underline;
  line-height: 1;
}
.sns-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-main);
  word-break: break-all;
}
.sns-link:last-child {
  margin-bottom: 0;
}
.sns-icon {
  width: 30px;
  height: 30px;
}
.news {
  background-color: #fff;
  padding: 60px 20px;
}
.news-inner {
  background: #f4f7fb;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  border-radius: 15px;
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.news-list li {
  border-bottom: 1px dotted #ccc;
}
.news-list a {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  text-decoration: none;
  color: var(--color-text-main);
  transition: opacity 0.3s ease;
}
.news-list a:hover {
  opacity: 0.6;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.news-date {
  font-size: 14px;
  color: #666;
}
.news-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 5px;
  border: 1px solid;
}
.badge-green {
  color: #10b981;
  border-color: #10b981;
}
.badge-blue {
  color: var(--color-blue);
  border-color: var(--color-blue);
}
.news-title {
  margin: 0;
  font-size: clamp(1rem, 0.857rem + 0.3vw, 1.125rem);
  line-height: 1.6;
}
.news-btn-wrapper {
  text-align: center;
}
.btn-blue-outline {
  display: inline-block;
  background-color: var(--color-blue);
  color: #fff;
  font-weight: 700;
  font-size: clamp(1rem, 0.857rem + 0.3vw, 1.125rem);
  padding: 15px 50px;
  border-radius: 30px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.btn-blue-outline:hover {
  opacity: 0.8;
}
.site-footer {
  background: linear-gradient(to right, #06c755, var(--color-blue));
  padding: 15px 20px;
  text-align: center;
}
.copyright {
  color: #fff;
  font-size: 13px;
  margin: 0;
  letter-spacing: 0.5px;
}
.page-main {
  background-color: #f4f7fb;
  padding: 0 0 80px;
}
.page-header {
  text-align: center;
  margin-bottom: 40px;
}
.page-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 15px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  border-radius: 30px;
  background: #fff;
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--color-blue);
  color: #fff;
}
.single-header {
  margin-bottom: 40px;
  border-bottom: 1px solid #f0f0f0;
}
.single-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.single-title {
  font-size: clamp(24px, 2.5vw, 36px);
  color: var(--color-text-main);
  margin: 0 0 20px 0;
  line-height: 1.5;
  font-weight: 700;
}
.single-thumbnail {
  margin-top: 25px;
  border-radius: 12px;
  overflow: hidden;
}
.single-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.single-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-main);
}
.single-content p {
  margin-bottom: 1.5em;
}
.single-content h2 {
  font-size: 24px;
  color: var(--color-blue);
  border-left: 5px solid var(--color-blue);
  padding-left: 15px;
  margin: 2.5em 0 1em;
  background-color: #f4f8fc;
  padding: 15px;
  border-radius: 0 8px 8px 0;
}
.single-content h3 {
  font-size: 20px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 8px;
  margin: 2em 0 1em;
  color: var(--color-dark-blue);
}
.single-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 1.5em;
  background-color: #f8fcf8;
  padding: 20px 20px 20px 40px;
  border-radius: 8px;
}
.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.single-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px dotted #ccc;
}
.single-nav a {
  color: var(--color-blue);
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.3s ease;
}
.single-nav a:hover {
  opacity: 0.7;
}
.single-nav a.btn-blue-outline {
  color: #fff;
}
.blog .page-main {
  padding-top: 20px;
}
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 10px;
}
.blog-sidebar {
  width: 100%;
  order: 2;
}
.blog-main {
  width: 100%;
  order: 1;
}
.sidebar-widget {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.sidebar-title {
  font-size: 18px;
  color: var(--color-blue);
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
  margin: 0 0 15px 0;
  position: relative;
}
.sidebar-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-blue);
}
.sidebar-list li {
  margin-bottom: 10px;
  border-bottom: 1px dashed #eee;
  padding-bottom: 10px;
}
.sidebar-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.sidebar-list a {
  color: var(--color-text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
  font-size: 15px;
}
.sidebar-list a::before {
  content: "›";
  color: var(--color-blue);
  margin-right: 8px;
  font-weight: 700;
  font-size: 18px;
}
.sidebar-list a:hover {
  color: var(--color-blue);
}
.single-content p.is-style-box-point,
.editor-styles-wrapper p.is-style-box-point {
  border: 2px solid var(--color-blue);
  padding: 15px 20px;
  border-radius: 8px;
  background-color: #f4f8fc;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 1.5em;
}
.single-content p.is-style-box-warning,
.editor-styles-wrapper p.is-style-box-warning {
  background-color: #fffbea;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 5px solid #f59e0b;
  color: #333;
  margin-bottom: 1.5em;
}
.single-content ul.is-style-checklist-green,
.editor-styles-wrapper ul.is-style-checklist-green {
  list-style: none;
  padding-left: 0;
  background-color: transparent;
  border: 1px solid #ccc;
  padding: 20px;
}
.single-content ul.is-style-checklist-green li,
.editor-styles-wrapper ul.is-style-checklist-green li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 0.8em;
  font-weight: 700;
}
.single-content ul.is-style-checklist-green li:last-child,
.editor-styles-wrapper ul.is-style-checklist-green li:last-child {
  margin-bottom: 0;
}
.single-content ul.is-style-checklist-green li::before,
.editor-styles-wrapper ul.is-style-checklist-green li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 7px;
  height: 12px;
  border-right: 3px solid #06c755;
  border-bottom: 3px solid #06c755;
  transform: rotate(45deg);
}
.single-content :is(h2, h3).is-style-heading-border-bg,
.editor-styles-wrapper :is(h2, h3).is-style-heading-border-bg {
  border-left: 6px solid var(--color-blue) !important;
  background-color: #f4f8fc !important;
  padding: 15px 20px !important;
  border-bottom: none !important;
  border-radius: 0 8px 8px 0 !important;
  color: var(--color-dark-blue) !important;
}
.single-content :is(h2, h3).is-style-heading-gradient-under,
.editor-styles-wrapper :is(h2, h3).is-style-heading-gradient-under {
  position: relative !important;
  padding-bottom: 12px !important;
  border-bottom: none !important;
  background: none !important;
  border-left: none !important;
}
.single-content :is(h2, h3).is-style-heading-gradient-under::after,
.editor-styles-wrapper :is(h2, h3).is-style-heading-gradient-under::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 4px !important;
  background: linear-gradient(135deg, #07c654 0%, #1173d2 100%) !important;
  border-radius: 2px !important;
}
.single-content :is(h2, h3).is-style-heading-balloon,
.editor-styles-wrapper :is(h2, h3).is-style-heading-balloon {
  position: relative !important;
  background-color: var(--color-blue) !important;
  color: #fff !important;
  padding: 15px 20px !important;
  border-radius: 8px !important;
  border: none !important;
  margin-bottom: 35px !important;
}
.single-content :is(h2, h3).is-style-heading-balloon::after,
.editor-styles-wrapper :is(h2, h3).is-style-heading-balloon::after {
  content: "" !important;
  position: absolute !important;
  top: 100% !important;
  left: 30px !important;
  border: 12px solid transparent !important;
  border-top-color: var(--color-blue) !important;
}
.editor-styles-wrapper {
  background-color: #ffffff !important;
}

.lp-video-section {
  padding: 48px 20px 0 20px;
  background: #f7f9fb;
}

.lp-video-section .inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 24px auto 0;
  aspect-ratio: 16 / 9;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* 下部固定LINE CTA */
.fixed-line-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.fixed-line-cta__inner {
  width: min(100%, 560px);
  margin: 0 auto;
  text-align: center;
}

.fixed-line-cta__text {
  margin: 0 0 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
}

.fixed-line-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #10d85a 0%, #00b900 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  box-shadow:
    0 5px 0 #008d00,
    0 14px 24px rgba(0, 185, 0, 0.34);
  transform: translateY(0);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
}

.fixed-line-cta__button:hover {
  opacity: 0.95;
  transform: translateY(2px);
  box-shadow:
    0 6px 0 #008d00,
    0 10px 20px rgba(0, 185, 0, 0.3);
}

.fixed-line-cta__button:active {
  transform: translateY(5px);
  box-shadow:
    0 3px 0 #008d00,
    0 6px 14px rgba(0, 185, 0, 0.25);
}

.fixed-line-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 24px;
  border-radius: 7px;
  background: #fff;
  color: #00b900;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.fixed-line-cta__label {
  display: inline-block;
}

/* かなり小さいスマホ用 */
@media (max-width: 360px) {
  .fixed-line-cta__button {
    font-size: 15px;
    min-height: 50px;
    padding: 12px 10px;
  }

  .fixed-line-cta__icon {
    width: 38px;
    height: 22px;
    font-size: 10px;
  }

  .fixed-line-cta__text {
    font-size: 10px;
  }
}

@media (min-width: 992px) {
  .sp-br {
    display: none;
  }
  .pc-br {
    display: block;
  }
  .hamburger {
    display: none;
  }
  .nav {
    position: static;
    height: auto;
    width: auto;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
  }

  .nav-list {
    width: auto;
    display: flex;
    margin-bottom: 0;
    margin-right: 1vw;
    gap: 1vw;
  }
  .nav-list li {
    width: auto;
    margin-bottom: 0;
    border-bottom: none;
  }
  .nav-list a {
    font-size: clamp(1rem, 0.857rem + 0.3vw, 1.125rem);
    display: inline-block;
    width: auto;
    padding: 0;
  }
  .cta-button {
    margin-top: 0;
  }
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
  }
  .reason-card {
    padding: 30px 25px;
  }
  .blog-container {
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
  }
  .blog-sidebar {
    width: 280px;
    flex-shrink: 0;
    order: 1;
  }
  .blog-main {
    width: calc(100% - 320px);
    order: 2;
    max-width: 100%;
    margin: 0;
  }
  .page-main {
    background-color: #f4f7fb;
    padding: 100px 20px 80px;
  }
}
@media (min-width: 768px) {
  body {
    padding-bottom: 101px;
  }
  .fixed-line-cta {
    padding: 12px 20px;
  }

  .fixed-line-cta__inner {
    max-width: 620px;
  }

  .fixed-line-cta__button {
    min-height: 56px;
    font-size: 18px;
  }

  .hero-btn-arrow {
    width: 32px;
    height: 32px;
    margin-left: 20px;
  }
  .hero-btn-arrow::after {
    width: 8px;
    height: 8px;
  }
  .section-title {
    letter-spacing: 2px;
    font-size: clamp(32px, 4.44vw, 96px);
  }
  .section-title::before,
  .section-title::after {
    width: 45px;
  }
  .section-title::before {
    margin-right: 1rem;
  }
  .section-title::after {
    margin-left: 1rem;
  }
  .section-title .text-blue {
    font-size: 1.3em;
  }
  .card {
    flex-direction: row;
    align-items: flex-start;
    padding: 30px;
  }
  .card-title {
    font-size: clamp(24px, 3.125vw, 60px);
  }
  .card-text {
    font-size: clamp(1.125rem, 0.268rem + 1.79vw, 1.875rem);
  }
  .card-icon {
    width: clamp(9.375rem, 5.804rem + 7.44vw, 12.5rem);
    margin-bottom: 0;
    margin-right: 30px;
    flex-shrink: 0;
  }
  .card-content {
    text-align: left;
  }
  .message-box {
    padding: 20px 50px 180px;
  }
  .message-text {
    font-size: clamp(1.125rem, 0.268rem + 1.79vw, 1.875rem);
  }
  .message-highlight {
    font-size: clamp(1.5rem, -0.071rem + 3.27vw, 2.875rem);
  }
  .message-blue {
    font-size: clamp(20px, 2.361vw, 40px);
    text-align: left;
    margin-bottom: 0;
  }
  .signature-photo {
    width: clamp(12.5rem, 3.214rem + 19.35vw, 20.625rem) !important;
    right: 50px;
  }
  .trouble {
    padding: 180px 40px 80px;
    height: 85vw;
    background-size: cover;
  }
  .trouble-inner {
    margin: 0 auto;
    position: absolute;
    top: 20%;
    left: 5%;
    width: 60%;
  }
  .trouble-title {
    font-size: clamp(1.75rem, -0.821rem + 5.36vw, 4rem);
    margin-bottom: 35px;
  }
  .trouble-title .text-large {
    font-size: 1.5em;
  }
  .trouble-title .text-small {
    font-size: clamp(1.25rem, -0.179rem + 2.98vw, 2.5rem);
    margin-top: 10px;
  }
  .trouble-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .trouble-list li {
    padding: 3% 5%;
    border-radius: 15px;
  }
  .list-text {
    font-size: 2vw;
  }
  .etc-text {
    bottom: 12px;
    right: 20px;
    font-size: 14px;
  }
  .cta-banner {
    padding: 40px 20px;
  }
  .cta-banner-inner {
    padding: 40px;
  }
  .cta-banner-text {
    font-size: clamp(1.5rem, 0.357rem + 2.38vw, 2.5rem);
    margin-bottom: 0;
  }
  .cta-badge {
    position: static;
    width: 110px;
    margin: 0 15px;
    flex-shrink: 0;
    top: -25px;
  }
  #reasons .section-title {
    font-size: clamp(32px, 4.44vw, 96px);
  }
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reasons-bottom-msg {
    flex-direction: row;
    text-align: left;
    justify-content: center;
  }
  .reason-title {
    font-size: clamp(1.125rem, 0.268rem + 1.79vw, 1.875rem);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-features li {
    width: 50%;
    font-size: 1.2rem;
  }
  .plan-features li.full-width {
    width: 100%;
  }
  .plan-body {
    padding: 30px 25px;
  }
  .steps-subtitle {
    font-size: clamp(1.125rem, 0.411rem + 1.49vw, 1.75rem);
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .step-card {
    padding: 40px 25px;
  }
  .steps-message {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }
  .steps-cta-wrapper {
    margin-top: 20px;
  }
  .faq-a-columns {
    flex-direction: column;
    gap: 40px;
  }
  .faq-col-left,
  .faq-col-right {
    flex: 1;
  }
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .line-specific-btn {
    width: 90%;
  }
  .form-wrapper {
    padding: 60px;
  }
  .form-group {
    flex-direction: row;
    align-items: flex-start;
  }
  .form-label {
    width: 200px;
    margin-bottom: 0;
    margin-top: 10px;
    flex-shrink: 0;
  }
  .form-input input[type="text"],
  .form-input input[type="email"],
  .form-input input[type="tel"] {
    max-width: 300px;
  }
  .hero-cta-button {
    font-size: clamp(1.063rem, 0.42rem + 1.34vw, 1.625rem);
    padding: 18px 20px;
    bottom: 4%;
  }
  .company-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
  }
  .company-intro-text {
    text-align: center;
  }
  .company-map {
    width: 40%;
    margin: 0;
    flex-shrink: 0;
  }
  .company-info {
    width: 60%;
  }
  .info-table {
    font-size: 14px;
  }
  .news-inner {
    padding: 80px 50px;
  }
  .news-list a {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .news-meta {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 180px;
  }
  .page-inner {
    padding: 50px;
  }
  .single-nav {
    flex-direction: column;
    gap: 30px;
  }
  .nav-back {
    order: -1;
  }
  .thanks-container {
    padding: 40px 20px;
  }
}
