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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* Scroll offset for anchor links */
section {
  scroll-margin-top: 90px;
}

/* =============================================
   Header
============================================= */
.header {
  background-color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo-img {
  height: 50px;
  width: auto;
}

.header__nav-list {
  display: flex;
  gap: 40px;
}

.header__nav-list a {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  position: relative;
  transition: color 0.3s ease;
}

.header__nav-list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #F4874B;
  transition: width 0.3s ease;
}

.header__nav-list a:hover {
  color: #F4874B;
}

.header__nav-list a:hover::after {
  width: 100%;
}

.header__nav-list li:not(:last-child)::after {
  content: '|';
  margin-left: 40px;
  color: #ccc;
}

/* Mobile Menu Button */
.header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}

.header__menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.header__menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* =============================================
   Hero Section
============================================= */
.hero {
  background-color: #F4874B;
  padding: 60px 0 0;
  overflow: hidden;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.hero__content {
  flex: 1;
  padding-bottom: 60px;
}

.hero__title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 30px;
}

.hero__title span {
  display: block;
}

.hero__description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.9;
  margin-bottom: 40px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  color: #F4874B;
  font-size: 15px;
  font-weight: 500;
  padding: 18px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero__cta-arrow {
  animation: bounce 1.5s infinite;
}

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

.hero__image {
  flex: 0 0 45%;
  max-width: 500px;
}

.hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   Troubles Section
============================================= */
.troubles {
  background-color: #fff;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

/* Decorative dotted wave line */
.troubles::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 0 75 Q 150 30, 300 75 T 600 75 T 900 75 T 1200 75' stroke='%23FFE4CC' stroke-width='3' fill='none' stroke-dasharray='5,8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  z-index: 0;
}

.troubles__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.troubles__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  margin-bottom: 60px;
  position: relative;
  background-color: #fff;
  display: inline-block;
  padding: 0 20px;
  left: 50%;
  transform: translateX(-50%);
}

.troubles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
  margin-bottom: 60px;
}

.troubles__item {
  text-align: center;
  background-color: #FFF5E6;
  padding: 25px 20px;
  border-radius: 15px;
}

.troubles__item p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
}

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

.troubles__speech-bubble {
  position: relative;
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 30px;
  padding: 20px 30px;
  max-width: 280px;
  margin-bottom: 30px;
}

.troubles__speech-bubble::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: -20px;
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.troubles__speech-bubble::before {
  content: '';
  position: absolute;
  bottom: 18px;
  right: -24px;
  width: 0;
  height: 0;
  border-left: 24px solid #333;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.troubles__speech-bubble p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-align: center;
  line-height: 1.6;
}

.troubles__character {
  width: 180px;
  flex-shrink: 0;
}

.troubles__character img {
  width: 100%;
  height: auto;
}

/* =============================================
   Reasons Section
============================================= */
.reasons {
  background-color: #E8F4F8;
  padding: 80px 0;
  padding-top: 120px;
  position: relative;
}

.reasons::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 45px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.reasons__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.reasons__lead {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
}

.reasons__highlight {
  color: #F4874B;
}

.reasons__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.reasons__card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  grid-column: span 2;
}

.reasons__card:nth-child(7) {
  grid-column: 2 / 4;
}

.reasons__card:nth-child(8) {
  grid-column: 4 / 6;
}

.reasons__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}

.reasons__card-list {
  list-style: disc;
  padding-left: 20px;
}

.reasons__card-list li {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

.reasons__bottom {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.reasons__message {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px 40px;
  padding-right: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: visible;
}

.reasons__message-content {
  text-align: center;
}

.reasons__message-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.reasons__message-text {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}

.reasons__character {
  width: 180px;
  flex-shrink: 0;
  margin-top: -60px;
  margin-bottom: -40px;
  margin-right: -10px;
}

.reasons__character img {
  width: 100%;
  height: auto;
}

.reasons__cta-wrap {
  text-align: center;
}

.reasons__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #F4874B;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 50px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 135, 75, 0.3);
}

.reasons__cta:hover {
  background-color: #e5783c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 135, 75, 0.4);
}

.reasons__cta svg {
  flex-shrink: 0;
}

/* SP only line break */
.sp-only {
  display: none;
}

/* =============================================
   Services Section
============================================= */
.services {
  background-color: #fff;
  padding: 80px 0;
}

.services__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.services__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 60px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  margin-bottom: 60px;
}

.services__item {
  text-align: center;
}

.services__icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background-color: #e0e0e0;
  overflow: hidden;
  border: 3px solid #333;
}

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

.services__name {
  font-size: 15px;
  font-weight: 700;
  color: #333;
}

.services__bottom {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.services__message {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #FFF5E6;
  border-radius: 30px;
  padding: 30px 40px;
  padding-right: 20px;
}

.services__message-content {
  text-align: center;
}

.services__message-content p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
}

.services__highlight {
  color: #F4874B;
  font-weight: 700;
}

.services__character {
  width: 140px;
  flex-shrink: 0;
  margin-top: -50px;
  margin-bottom: -30px;
  margin-right: -10px;
}

.services__character img {
  width: 100%;
  height: auto;
}

.services__cta-wrap {
  text-align: center;
}

.services__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #F4874B;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 50px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 135, 75, 0.3);
}

.services__cta:hover {
  background-color: #e5783c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 135, 75, 0.4);
}

.services__cta svg {
  flex-shrink: 0;
}

/* =============================================
   Pricing Section
============================================= */
.pricing {
  background-color: #F5F5F5;
  padding: 80px 0;
}

.pricing__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

.pricing__plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 15px;
}

.pricing__plan {
  text-align: center;
}

.pricing__plan-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}

.pricing__plan-image {
  width: 100%;
  aspect-ratio: 1;
  background-color: #d0d0d0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.pricing__plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing__plan-info {
  text-align: left;
  padding: 0 5px;
}

.pricing__plan-income {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.pricing__plan-price {
  font-size: 13px;
  color: #333;
  line-height: 1.6;
}

.pricing__note-top {
  text-align: right;
  font-size: 12px;
  color: #666;
  margin-bottom: 30px;
}

.pricing__contracts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 10px;
}

.pricing__contract {
  border-radius: 15px;
  padding: 20px;
  border: 3px solid;
}

.pricing__contract--advisor {
  background-color: #E8F6F6;
  border-color: #333;
}

.pricing__contract--spot {
  background-color: #FFF5ED;
  border-color: #F4874B;
}

.pricing__contract-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.pricing__contract-content {
  min-height: 120px;
}

.pricing__contract-content img {
  width: 100%;
  height: auto;
}

.pricing__contract-list {
  list-style: none;
  padding: 0;
}

.pricing__contract-list li {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.pricing__contract-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4874B;
  font-weight: 700;
}

.pricing__note-bottom {
  font-size: 12px;
  color: #666;
  margin-bottom: 40px;
}

.pricing__bottom {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.pricing__message {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px 40px;
  padding-right: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pricing__message-content {
  text-align: left;
  flex: 1;
}

.pricing__message-content p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
}

.pricing__highlight {
  color: #F4874B;
  font-weight: 700;
}

.pricing__character {
  width: 180px;
  flex-shrink: 0;
  margin-top: -60px;
  margin-bottom: -40px;
  margin-right: -10px;
}

.pricing__character img {
  width: 100%;
  height: auto;
}

.pricing__cta-wrap {
  text-align: center;
}

.pricing__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #F4874B;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 50px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 135, 75, 0.3);
}

.pricing__cta:hover {
  background-color: #e5783c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 135, 75, 0.4);
}

.pricing__cta svg {
  flex-shrink: 0;
}

/* =============================================
   Flow Section
============================================= */
.flow {
  background-color: #FCE8D5;
  padding: 80px 0;
}

.flow__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.flow__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

.flow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.flow__step {
  text-align: center;
}

.flow__step-image {
  width: 100%;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow__step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow__step-name {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.flow__bottom {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.flow__message {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #FFF8E8;
  border-radius: 30px;
  padding: 25px 35px;
}

.flow__character {
  width: 100px;
  flex-shrink: 0;
  margin-top: -40px;
  margin-bottom: -20px;
  margin-left: -40px;
}

.flow__character img {
  width: 100%;
  height: auto;
}

.flow__message-content {
  text-align: left;
}

.flow__message-content p {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
}

.flow__highlight {
  color: #F4874B;
  font-weight: 700;
}

.flow__cta-wrap {
  text-align: center;
}

.flow__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #F4874B;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 50px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 135, 75, 0.3);
}

.flow__cta:hover {
  background-color: #e5783c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 135, 75, 0.4);
}

.flow__cta svg {
  flex-shrink: 0;
}

/* =============================================
   Responsive - Tablet
============================================= */
@media screen and (max-width: 1024px) {
  .hero__title {
    font-size: 36px;
  }

  .hero__container {
    gap: 20px;
  }

  .hero__image {
    flex: 0 0 40%;
  }

  /* Troubles */
  .troubles__title {
    font-size: 30px;
  }

  .troubles__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }

  /* Reasons */
  .reasons__lead {
    font-size: 20px;
  }

  .reasons__title {
    font-size: 28px;
  }

  .reasons__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .reasons__card {
    grid-column: span 2;
  }

  .reasons__card:nth-child(7) {
    grid-column: 2 / 4;
  }

  .reasons__card:nth-child(8) {
    grid-column: auto;
  }

  /* Services */
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }

  .services__icon {
    width: 120px;
    height: 120px;
  }

  /* Pricing */
  .pricing__plans {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  /* Flow */
  .flow__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  /* Column */
  .column {
    padding: 60px 0;
  }

  .column__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .column__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .column__card-tag {
    font-size: 11px;
    width: 55px;
    height: 55px;
    top: -6px;
    left: -6px;
  }

  .column__cta {
    font-size: 15px;
    padding: 16px 70px;
  }

  /* SNS */
  .sns {
    padding: 60px 0;
  }

  .sns__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .sns__tab {
    padding: 10px 25px;
    font-size: 15px;
  }

  .sns__tab i {
    font-size: 20px;
  }

  .sns__content {
    max-width: 100%;
  }

  .sns__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .sns__card-content {
    min-height: 350px;
  }

  .sns__bottom {
    margin-top: 40px;
  }

  .sns__message {
    padding: 25px 30px;
    padding-right: 20px;
  }

  .sns__message-content p {
    font-size: 15px;
  }

  .sns__character {
    width: 150px;
    margin-top: -50px;
    margin-bottom: -30px;
  }

  /* FAQ */
  .faq {
    padding: 60px 0;
  }

  .faq__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .faq__question {
    padding: 20px 25px;
    font-size: 15px;
  }

  .faq__icon {
    font-size: 22px;
  }

  .faq__answer p {
    padding: 0 25px 20px 25px;
    font-size: 14px;
  }

  .faq__cta {
    font-size: 15px;
    padding: 16px 70px;
  }
}

/* =============================================
   Responsive - Mobile
============================================= */
@media screen and (max-width: 768px) {
  /* Header */
  .header__menu-btn {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .header__nav.active {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 0;
  }

  .header__nav-list li {
    border-bottom: 1px solid #eee;
  }

  .header__nav-list li:not(:last-child)::after {
    display: none;
  }

  .header__nav-list a {
    display: block;
    padding: 20px 0;
    font-size: 16px;
  }

  /* Hero */
  .hero {
    padding: 40px 0 0;
  }

  .hero__container {
    flex-direction: column;
    text-align: center;
  }

  .hero__content {
    padding-bottom: 30px;
  }

  .hero__title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .hero__description {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .hero__description br {
    display: none;
  }

  .hero__cta {
    font-size: 14px;
    padding: 15px 25px;
  }

  .hero__image {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  /* Troubles */
  .troubles {
    padding: 60px 0 40px;
  }

  .troubles__title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .troubles__grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }

  .troubles__item p {
    font-size: 15px;
  }

  .troubles__bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
  }

  .troubles__speech-bubble {
    padding: 15px 20px;
  }

  .troubles__speech-bubble::after,
  .troubles__speech-bubble::before {
    display: none;
  }

  .troubles__speech-bubble p {
    font-size: 14px;
  }

  .troubles__character {
    width: 150px;
  }

  /* Reasons */
  .reasons {
    padding: 60px 0;
    padding-top: 80px;
  }

  .reasons::before {
    width: 60px;
    height: 25px;
  }

  .reasons__lead {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .reasons__title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .reasons__grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }

  .reasons__card {
    grid-column: auto;
  }

  .reasons__card:nth-child(7),
  .reasons__card:nth-child(8) {
    grid-column: auto;
  }

  .reasons__card {
    padding: 20px;
  }

  .reasons__card-title {
    font-size: 15px;
  }

  .reasons__card-list li {
    font-size: 12px;
  }

  .reasons__bottom {
    margin-bottom: 30px;
  }

  .reasons__message {
    flex-direction: column;
    padding: 25px 20px;
    padding-bottom: 10px;
    gap: 10px;
  }

  .reasons__message-title {
    font-size: 17px;
  }

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

  .reasons__character {
    width: 130px;
    margin-top: 0;
    margin-bottom: -30px;
    margin-right: 0;
  }

  .reasons__cta {
    font-size: 14px;
    padding: 15px 35px;
  }

  .sp-only {
    display: inline;
  }

  /* Services */
  .services {
    padding: 60px 0;
  }

  .services__title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    margin-bottom: 40px;
  }

  .services__icon {
    width: 100px;
    height: 100px;
  }

  .services__name {
    font-size: 13px;
  }

  .services__bottom {
    margin-bottom: 30px;
  }

  .services__message {
    flex-direction: column;
    padding: 25px 20px;
    padding-bottom: 10px;
    gap: 10px;
  }

  .services__message-content p {
    font-size: 14px;
  }

  .services__character {
    width: 110px;
    margin-top: 0;
    margin-bottom: -25px;
    margin-right: 0;
  }

  .services__cta {
    font-size: 14px;
    padding: 15px 35px;
  }

  /* Pricing */
  .pricing {
    padding: 60px 0;
  }

  .pricing__title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .pricing__plans {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
    margin-bottom: 10px;
  }

  .pricing__plan-name {
    font-size: 12px;
  }

  .pricing__plan-income {
    font-size: 12px;
  }

  .pricing__plan-price {
    font-size: 11px;
  }

  .pricing__note-top {
    font-size: 11px;
    margin-bottom: 25px;
  }

  .pricing__contracts {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing__contract {
    padding: 15px;
  }

  .pricing__contract-title {
    font-size: 14px;
  }

  .pricing__note-bottom {
    font-size: 11px;
    margin-bottom: 30px;
  }

  .pricing__bottom {
    margin-bottom: 30px;
  }

  .pricing__message {
    flex-direction: column;
    padding: 25px 20px;
    padding-bottom: 10px;
    gap: 10px;
  }

  .pricing__message-content p {
    font-size: 14px;
  }

  .pricing__character {
    width: 130px;
    margin-top: 0;
    margin-bottom: -30px;
    margin-right: 0;
  }

  .pricing__cta {
    font-size: 14px;
    padding: 15px 35px;
  }

  /* Flow */
  .flow {
    padding: 60px 0;
  }

  .flow__title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .flow__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .flow__step-image {
    border-radius: 10px;
  }

  .flow__step-name {
    font-size: 13px;
  }

  .flow__bottom {
    margin-bottom: 30px;
  }

  .flow__message {
    flex-direction: column;
    padding: 20px;
    padding-top: 10px;
    gap: 10px;
    text-align: center;
  }

  .flow__character {
    width: 80px;
    margin-left: 0;
    margin-top: -30px;
    margin-bottom: 0;
  }

  .flow__message-content {
    text-align: center;
  }

  .flow__message-content p {
    font-size: 14px;
  }

  .flow__cta {
    font-size: 14px;
    padding: 15px 35px;
  }

  /* Column */
  .column {
    padding: 60px 0;
  }

  .column__title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .column__grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
    margin-bottom: 40px;
  }

  .column__card-tag {
    font-size: 10px;
    width: 50px;
    height: 50px;
    top: -5px;
    left: -5px;
  }

  .column__card-title {
    font-size: 13px;
  }

  .column__cta {
    font-size: 14px;
    padding: 15px 60px;
  }

  /* SNS */
  .sns {
    padding: 60px 0;
  }

  .sns__title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .sns__tabs {
    gap: 8px;
  }

  .sns__tab {
    padding: 10px 20px;
    font-size: 14px;
  }

  .sns__tab i {
    font-size: 18px;
  }

  .sns__content {
    max-width: 100%;
  }

  .sns__grid {
    grid-template-columns: 1fr !important;
    gap: 25px;
  }

  .sns__card-header {
    padding: 15px;
  }

  .sns__logo {
    width: 35px;
    height: 35px;
  }

  .sns__name {
    font-size: 20px;
  }

  .sns__card-content {
    min-height: 300px;
  }

  .sns__card-footer {
    padding: 20px;
  }

  .sns__cta {
    font-size: 14px;
    padding: 15px 60px;
  }

  .sns__bottom {
    margin-top: 40px;
  }

  .sns__message {
    flex-direction: column-reverse;
    padding: 20px;
    padding-top: 10px;
    gap: 15px;
  }

  .sns__message-content p {
    font-size: 14px;
  }

  .sns__character {
    width: 140px !important;
    margin-top: -70px !important;
    margin-bottom: -30px !important;
    margin-right: 0 !important;
  }

  /* FAQ */
  .faq {
    padding: 60px 0;
  }

  .faq__title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .faq__list {
    margin-bottom: 40px;
  }

  .faq__item {
    margin-bottom: 15px;
  }

  .faq__question {
    padding: 20px;
    font-size: 14px;
  }

  .faq__icon {
    font-size: 20px;
    margin-left: 10px;
  }

  .faq__answer p {
    padding: 0 20px 20px 20px;
    font-size: 13px;
  }

  .faq__cta {
    font-size: 14px;
    padding: 15px 60px;
  }

  /* Footer */
  .footer {
    padding: 50px 0 25px;
  }

  .footer__logo {
    margin-bottom: 30px;
  }

  .footer__tagline {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .footer__logo img {
    height: 50px;
  }

  .footer__nav {
    margin-bottom: 30px;
  }

  .footer__nav-list {
    gap: 15px 20px;
  }

  .footer__nav-list a {
    font-size: 13px;
  }

  .footer__info {
    padding: 25px 0;
    margin-bottom: 30px;
  }

  .footer__company {
    font-size: 16px;
  }

  .footer__address,
  .footer__hours {
    font-size: 13px;
  }

  .footer__copyright {
    font-size: 11px;
  }

  /* Fixed LINE Button */
  .line-button {
    bottom: 20px;
    left: 20px!important;
    right: 20px;
    width: auto;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
  }

  .line-button__icon {
    width: 20px;
    height: 20px;
  }
}

/* =============================================
   Responsive - Small Mobile
============================================= */
@media screen and (max-width: 480px) {
  .hero__title {
    font-size: 24px;
  }

  .hero__description {
    font-size: 12px;
  }

  .hero__cta {
    font-size: 13px;
    padding: 12px 20px;
  }
}

/* =============================================
   Overlay for Mobile Menu
============================================= */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.overlay.active {
  display: block;
}

/* =============================================
   Column Section
============================================= */
.column {
  background-color: #fff;
  padding: 80px 0;
}

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

.column__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

.column__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.column__card {
  display: block;
  position: relative;
  transition: transform 0.3s ease;
}

.column__card:hover {
  transform: translateY(-5px);
}

.column__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  background-color: #e0e0e0;
}

.column__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column__card-tag {
  position: absolute;
  top: -6px;
  left: -6px;
  background-color: #F4874B;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 12px 8px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  z-index: 2;
}

.column__card-title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.7;
}

.column__cta-wrap {
  text-align: center;
}

.column__cta {
  display: inline-block;
  background-color: #F4874B;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 80px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 135, 75, 0.3);
}

.column__cta:hover {
  background-color: #e5783c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 135, 75, 0.4);
}

/* =============================================
   SNS Section
============================================= */
.sns {
  background-color: #F5F5F5;
  padding: 80px 0;
}

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

.sns__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

.sns__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.sns__tab {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sns__tab:hover {
  border-color: #F4874B;
  color: #F4874B;
}

.sns__tab--active {
  background-color: #F4874B;
  border-color: #F4874B;
  color: #fff;
}

.sns__tab--active:hover {
  background-color: #F4874B;
  border-color: #F4874B;
  color: #fff;
}

.sns__tab i {
  font-size: 24px;
  margin-right: 8px;
}

.sns__content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.sns__panel {
  display: none;
}

.sns__panel--active {
  display: block;
}

.sns__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.sns__card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sns__card-header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.sns__logo {
  width: 40px;
  height: 40px;
}

.sns__name {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.sns__card-content {
  min-height: 400px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0;
}

.sns__card-footer {
  padding: 30px;
  text-align: center;
}

.sns__cta {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 80px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.sns__cta:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.sns__bottom {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.sns__message {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px 40px;
  padding-right: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sns__message-content {
  text-align: center;
}

.sns__message-content p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
}

.sns__character {
  width: 180px;
  flex-shrink: 0;
  margin-top: -60px;
  margin-bottom: -40px;
  margin-right: -10px;
}

.sns__character img {
  width: 100%;
  height: auto;
}

/* =============================================
   FAQ Section
============================================= */
.faq {
  background-color: #fff;
  padding: 80px 0;
}

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

.faq__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

.faq__list {
  margin-bottom: 50px;
}

.faq__item {
  background-color: #F5F5F5;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 25px 30px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq__question:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.faq__icon {
  font-size: 24px;
  font-weight: 300;
  color: #F4874B;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer p {
  padding: 0 30px 25px 30px;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.faq__cta-wrap {
  text-align: center;
}

.faq__cta {
  display: inline-block;
  background-color: #F4874B;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 80px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 135, 75, 0.3);
}

.faq__cta:hover {
  background-color: #e5783c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 135, 75, 0.4);
}

/* =============================================
   Footer
============================================= */
.footer {
  background-color: #333;
  color: #fff;
  padding: 60px 0 30px;
}

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

.footer__logo {
  text-align: center;
  margin-bottom: 40px;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  font-weight: 500;
}

.footer__logo img {
  height: 60px;
  width: auto;
  opacity: 0.7;
}

.footer__nav {
  margin-bottom: 40px;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
}

.footer__nav-list a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer__nav-list a:hover {
  color: #F4874B;
}

.footer__info {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__company {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer__address,
.footer__hours {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer__bottom {
  text-align: center;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   Fixed LINE Button
============================================= */
.line-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #06C755;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
}

.line-button:hover {
  background-color: #05b34a;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(6, 199, 85, 0.5);
}

.line-button__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.line-button__text {
  white-space: nowrap;
}
