* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  height: 100%;
  position: relative;
}

body {
  font-family: "IBM Plex Sans JP", sans-serif;
  background-color: #f8f3e9;
  overflow-x: hidden;
  color: #4e0e0a;
}

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

a:hover {
  opacity: 0.8;
}

.sp-on {
  display: none;
}

.l-inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.c-color-green {
  color: #007b4b;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: #ffffff;
  z-index: 20;
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 32px;
  gap: 10px;
  border-bottom: 1px solid #efe8d9;
}

.header__logo {
  width: 354px;
  height: 40px;
}

.header__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__cta-inner {
  width: 180px;
  height: 64px;
  background-color: #007b4b;
  border: none;
  border-bottom: 2px solid #02653e;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.08em;
  padding: 10px 32px;
}

.header__cta-inner:hover {
  background-color: #006540;
}

/* ハンバーガーメニュー */
.header__hamburger {
  display: none;
  flex-direction: column;
  background-color: #007b4b;
  border: none;
  cursor: pointer;
  padding: 15px;
  border-radius: 3px;
  z-index: 1000;
}

.header__hamburger-line {
  width: 18px;
  height: 2px;
  background-color: #ffffff;
  margin: 2px 0;
  transition: all 0.3s ease;
}

.header__hamburger.active .header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(3px, 5px);
}

.header__hamburger.active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active .header__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -5px);
}

/* ナビゲーションメニュー */
.header__nav {
  display: none;
}

.header__nav-list {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.header__nav-link {
  color: #4e0e0a;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header__nav-link:hover {
  color: #007b4b;
}

/* News Bar Styles */
.news {
  height: auto;
  background-color: #fffcf8;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-top: 1px solid #efe8d9;
}

.news__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 40px;
}

.news__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1em;
  color: #4e0e0a;
  flex-shrink: 0;
}

.news__info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.news__date {
  font-weight: 500;
  font-size: 14px;
  line-height: 1em;
  color: #4e0e0a;
  flex-shrink: 0;
}

.news__details {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.news__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 1em;
  color: #4e0e0a;
  margin: 0;
  width: 696px;
  max-width: 100%;
}

.news a {
  text-decoration: underline;
}

.main {
  padding-top: 90px;
}

/* KV Section Styles */
.kv {
  padding: 80px 0 40px;
  width: 100%;
  background-image: url("../images/kv-bg.png");
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.kv__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kv__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.6em;
  letter-spacing: -0.04em;
  color: #4e0e0a;
  text-align: left;
  margin: 0;
}

.kv__image {
  width: 500.14px;
  height: 296px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kv__illustration {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Description Section Styles */
.description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-top: 40px;
  gap: 104px;
}

.description__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.description__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.description__notice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: #f8e9ae;
  border-radius: 100px;
  width: fit-content;
}

.description__notice span {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4em;
  color: #4e0e0a;
  text-align: center;
}

.description__notice-icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  width: 40px;
  aspect-ratio: 40 / 22;
  background-image: url("../images/description-arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.description__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.6em;
  color: #4e0e0a;
  margin: 0;
}

.description__text {
  font-weight: 600;
  font-size: 18px;
  line-height: 3.2em;
  color: #4e0e0a;
  margin: 0;
  width: 100%;
}

.description__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}

.description__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.description__item {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 40px 20px;
  text-align: center;
}

.description__item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.description__item-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.description__item-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4em;
  color: #4e0e0a;
  text-align: center;
  margin: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.description__item-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4em;
  color: #4e0e0a;
  text-align: center;
  margin: 0;
}

/* Problem Section Styles */
.problem {
  margin: 120px 0 0;
}

.problem__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  background-image: url("../images/problem-bg.svg");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: 111px;
}

.problem__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.6em;
  color: #4e0e0a;
  text-align: center;
  margin: 0;
}

.problem__visual {
  position: relative;
  width: 100%;
  height: 370px;
  padding-top: 68px;
}

.problem__illustration {
  display: block;
  width: 30.455%;
  aspect-ratio: 335 / 302;
  object-fit: cover;
  margin: 0 auto;
}

.problem__indicators {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 284px;
}

.problem__indicator {
  position: absolute;
  background-color: #e7d7b6;
  border-radius: 100px;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.problem__indicator span {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3em;
  letter-spacing: 0.04em;
  color: #6d503a;
  text-align: center;
}

.problem__indicator--1 {
  top: 0;
  left: calc(50% - 225px);
  transform: translateX(-50%);
}

.problem__indicator--2 {
  top: 0;
  right: calc(50% - 225px);
  transform: translateX(50%);
}

.problem__indicator--3 {
  bottom: 0;
  left: 20px;
}

.problem__indicator--4 {
  bottom: 0;
  right: 20px;
}

.problem__concerns {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.problem__concern {
  position: absolute;
  background-color: #ffffff;
  border-radius: 100px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.problem__concern span {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4em;
  color: #4e0e0a;
}

.problem__concern--1 {
  top: 114px;
  left: 5%;
}

.problem__concern--2 {
  top: 114px;
  right: 8%;
}

.problem__concern--3 {
  top: 232px;
  left: 13%;
}

.problem__concern--4 {
  top: 232px;
  right: 12.7%;
}

/* CTA Section Styles */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.cta__message {
  background: linear-gradient(90deg, #f8f3e9 0%, #f8e9ae 50%, #f8f3e9 100%);
  border-radius: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 90px 0;
  width: 100%;
  position: relative;
}

.cta__text {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.8em;
  color: #4e0e0a;
  text-align: center;
  margin: 0;
}

.cta__consultants {
  position: absolute;
  width: 100%;
  height: 100%;
}

.cta__consultant {
  position: absolute;
  border-radius: 50%;
}

.cta__message::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 80px;
  aspect-ratio: 80 / 43;
  background-image: url("../images/cta-arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.cta__consultant--1 {
  width: 12.5%;
  aspect-ratio: 1 / 1;
  top: -16px;
  right: 64px;
}

.cta__consultant--2 {
  width: 14.286%;
  aspect-ratio: 1 / 1;
  top: 182px;
  left: 64px;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.cta__button {
  background-color: #007b4b;
  border: none;
  border-bottom: 6px solid #02653e;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 32px;
  width: 400px;
  height: 80px;
  text-decoration: none;
  cursor: pointer;
}

.cta__button:hover {
  background-color: #006540;
}

.cta__button span {
  font-weight: 700;
  font-size: 20px;
  line-height: 1em;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.cta__note {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8em;
  color: #007b4b;
  text-align: center;
  margin: 0;
  width: 100%;
  text-decoration: underline;
}

/* Features Section Styles */
.features {
  margin-top: 140px;
  scroll-margin-top: 148px;
}
.features__inner {
  background-color: #ffffff;
  border-radius: 20px;
  width: 100%;
}

.features__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 56px 0 16px;
  border-top: 4px solid #007b4b;
  width: fit-content;
  margin: 0 auto;
}

.features__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.6em;
  color: #007b4b;
  text-align: center;
  margin: 0;
}

.features__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.features__main {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  gap: 40px;
  padding: 40px;
  width: 100%;
}

.features__cards {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  gap: 40px;
  flex: 1;
}

.features__card {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex: 1;
  text-align: center;
}

.features__card-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.6em;
  color: #4e0e0a;
  text-align: center;
  margin: 0;
  width: 100%;
}

.features__card-image {
  width: 100%;
  aspect-ratio: 320 / 202;
  border-radius: 8px;
  overflow: hidden;
}

.features__card-img {
  width: 100%;
  height: 100%;
}

.features__card-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8em;
  color: #4e0e0a;
  text-align: center;
  margin: 0;
  width: 100%;
}

.features__explanation {
  width: 100%;
  padding: 0 40px;
}

.features__explanation-card {
  background-color: #eff3ed;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 40px;
  width: 100%;
}

.features__explanation-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.features__explanation-icon-container {
  width: 32px;
  aspect-ratio: 32 / 40;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features__explanation-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6em;
  color: #4e0e0a;
  text-align: left;
  margin: 0;
  white-space: nowrap;
}

.features__explanation-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8em;
  color: #4e0e0a;
  margin: 0;
  flex: 1;
}

.features__voice {
  margin-top: 40px;
}

.features__voice-card {
  width: 100%;
}

.features__voice-content {
  background-color: #f4ecdb;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 24px;
  width: 100%;
}

.features__voice-message {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6em;
  color: #4e0e0a;
  text-align: center;
  margin: 0;
}

.features__voice-images {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  gap: 0;
}

.features__voice-profile {
  display: grid;
  grid-template-columns: 80px auto;
  align-items: center;
  gap: 8px 24px;
  padding: 0 32px;
  flex: 1;
}

.features__voice-profile--middle {
  border-left: 1px solid #cac2b3;
  border-right: 1px solid #cac2b3;
}

.features__voice-avatar {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  width: 80px;
  height: 80px;
  background-color: #cbe3da;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

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

.features__voice-name {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4em;
  color: #4e0e0a;
  text-align: center;
  margin: 0;
  width: 70px;
}

.features__voice-comment {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6em;
  color: #4e0e0a;
  text-align: left;
  margin: 0;
  flex: 1;
}

/* Flow Section Styles */
.flow {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 139px;
  scroll-margin-top: 148px;
}

.flow__header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}

.flow__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.6em;
  color: #4e0e0a;
  text-align: center;
  margin: 0;
}

.flow__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8em;
  color: #4e0e0a;
  text-align: center;
  margin: 0;
  width: 100%;
}

.flow__steps {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
}

.flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  flex: 1;
  position: relative;
}

.flow__step-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 180px;
  width: 100%;
}

.flow__step-img {
  max-width: 202.78px;
  max-height: 160px;
  object-fit: contain;
}

.flow__step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.flow__step-number {
  position: absolute;
  top: 0;
  left: 32px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6em;
  color: #4e0e0a;
  width: 9px;
  height: 22px;
}

.flow__step-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6em;
  color: #4e0e0a;
  text-align: left;
  margin: 0;
}

.flow__step-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6em;
  color: #4e0e0a;
  text-align: left;
  margin: 0;
  width: 100%;
}

.flow__options {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  padding: 0 24px;
  width: 100%;
}

.flow__option {
  background-color: #ffffff;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  flex: 1;
}

.flow__option:first-child {
  border-radius: 8px 0 0 8px;
}

.flow__option:last-child {
  border-radius: 0 8px 8px 0;
}

.flow__option:first-child .flow__option-content {
  border-right: 1px solid #e6dcca;
}

.flow__option-content {
  display: flex;
  gap: 16px;
  padding: 32px;
  flex: 1;
}

.flow__option-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4em;
  color: #007b4b;
  margin: 0;
  flex-shrink: 0;
}

.flow__option-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4em;
  color: #4e0e0a;
  margin: 0;
  flex: 1;
}

.flow__cta {
  background-image: url("../images/flow.svg");
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 40px 120px;
  width: 100%;
}

.flow__cta-message {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6em;
  color: #4e0e0a;
  text-align: center;
  margin: 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

.flow__cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 37px;
}

.flow__cta-button {
  background-color: #007b4b;
  border: none;
  border-bottom: 6px solid #02653e;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 32px;
  width: 400px;
  height: 80px;
  text-decoration: none;
  cursor: pointer;
}

.flow__cta-button:hover {
  background-color: #006540;
}

.flow__cta-button span {
  font-weight: 700;
  font-size: 20px;
  line-height: 1em;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.flow__cta-note {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8em;
  color: #007b4b;
  text-decoration: underline;
}

/* FAQ Section Styles */
.faq {
  margin-top: 80px;
  scroll-margin-top: 148px;
}
.faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.faq__header {
  width: 100%;
}

.faq__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.6em;
  color: #4e0e0a;
  text-align: center;
  margin: 0;
}

.faq__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.faq__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.faq__question {
  background-color: #ffffff;
  border-bottom: 1px solid #e7d7b6;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  width: 100%;
}

.faq__question-icon {
  background-color: #e7f0f0;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  font-weight: 700;
  font-size: 20px;
  color: #007b4b;
}

.faq__question-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8em;
  color: #4e0e0a;
  text-align: left;
  margin: 0;
  flex: 1;
}

.faq__answer {
  background-color: #ffffff;
  display: flex;
  gap: 20px;
  padding: 20px;
  width: 100%;
}

.faq__answer-icon {
  background-color: #f9e3df;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  font-weight: 700;
  font-size: 16px;
  color: #d2691e;
}

.faq__answer-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8em;
  color: #4e0e0a;
  text-align: left;
  margin: 0;
  flex: 1;
}

/* Footer Styles */
.footer {
  position: relative;
  padding: 200px 0 40px;
  margin: 73px auto 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  z-index: 10;
  background-image: url("../images/footer-bg.svg");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}

.footer__inner {
  max-width: 1280px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 114px;
  padding-bottom: 24px;
  border-bottom: 1px solid #c7bba3;
}

.footer__logo {
  width: 425px;
  height: 48px;
}

.footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer__link {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8em;
  color: #4e0e0a;
  text-decoration: none;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__link-icon {
  width: 20px;
  aspect-ratio: 1/1;
}

.footer__actions {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer__link-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8em;
  color: #007b4b;
  text-decoration: underline;
}

.footer__copyright {
  font-weight: 400;
  font-size: 12px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #504b40;
  opacity: 0.8;
  text-align: right;
}

/* Scroll to Top Button */
.scroll {
  position: fixed;
  right: 65px;
  left: 0;
  z-index: 100;
  width: 60px;
  margin-left: auto;
}

.page-top {
  display: flex;
  position: fixed;
  bottom: 65px;
  justify-content: center;
  align-items: center;
  z-index: 999;
  width: 60px;
  height: 60px;
  border: 2px solid transparent;
  box-shadow: 0 0 6px rgba(0, 0, 0, 16%);
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
}

.page-top.show {
  opacity: 1;
  visibility: visible;
}

.page-top img {
  width: 12px;
  height: 12px;
}

/* SP Styles (767px以下) */
@media (max-width: 767px) {
  .sp-on {
    display: block;
  }

  .pc-on {
    display: none;
  }

  .header__inner {
    padding: 10px;
  }

  .header__logo {
    quotes: 280px;
  }

  /* ハンバーガーメニュー（モバイル） */
  .header__hamburger {
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
  }

  .header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(117, 117, 117, 0.85);
    z-index: 999;
    display: none;
    overflow-y: auto;
  }

  .header__nav.active {
    display: block;
  }

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

  .header__nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(0, 123, 75, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 26px 20px;
  }

  .header__nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 350px;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 2em;
    color: #ffffff;
    text-decoration: none;
  }

  .header__nav-link::after {
    content: "→";
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #009944;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
  }

  .header__nav-item:last-child {
    background-color: rgba(0, 153, 68, 0.95);
  }

  .header__cta {
    position: fixed;
    top: calc(100vh);
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 10;
    padding: 8px 14px;
    width: 100%;
    background-color: #fff;
    display: grid;
    place-items: center;
  }

  .header__cta-inner {
    width: 100%;
    font-size: 16px;
  }

  .news {
    padding: 12px 10px;
  }

  .news__inner {
    width: 100%;
    padding: 0;
    gap: 10px;
  }

  .news__title {
    font-size: 12px;
  }

  .news__date {
    font-size: 12px;
  }

  .news__info {
    gap: 8px;
    width: 100%;
  }

  .news__text {
    flex: 1;
    font-size: 12px;
    line-height: 1.4em;
    width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  .main {
    padding-top: 70px;
  }

  /* KV Section SP */
  .kv {
    padding: 40px 0 0;
  }

  .kv__inner {
    flex-direction: column;
    gap: 20px;
  }

  .kv__title {
    font-size: 26px;
    text-align: center;
  }

  .kv__image {
    width: 100%;
    height: auto;
  }

  /* Description Section SP */
  .description {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }

  .description__header {
    gap: 23px;
    padding: 0 15px;
    align-items: center;
  }

  .description__left {
    gap: 26px;
  }

  .description__title {
    font-size: 30px;
    text-align: center;
  }

  .description__text {
    text-align: center;
    line-height: 2.6;
  }

  .description__item {
    padding: 20px 0;
  }

  /* Problem Section SP */
  .problem {
    margin: 40px 0 0;
  }

  .problem__inner {
    width: 100%;
    height: auto;
    padding-top: 79px;
    background-size: 136% auto;
  }

  .problem__title {
    position: static;
    transform: none;
    width: 100%;
    font-size: 30px;
  }

  .problem__visual {
    padding-top: 16px;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 25px;
  }

  .problem__illustration {
    position: static;
    width: 220px;
    height: auto;
  }

  .problem__concerns {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .problem__concern {
    position: static;
    width: fit-content;
    padding: 18px 23px;
  }

  .problem__concern span {
    font-size: 14px;
  }

  .problem__indicators {
    top: auto;
    bottom: 49px;
    height: 156px;
  }

  .problem__indicator {
    width: 70px;
    height: 70px;
    font-size: 14px;
    padding: 0;
  }

  .problem__indicator--1 {
    left: calc(50% - 129px);
  }

  .problem__indicator--2 {
    right: calc(50% - 129px);
  }

  .problem__indicator--3 {
    left: calc(50% - 178px);
  }

  .problem__indicator--4 {
    right: calc(50% - 178px);
  }

  /* CTA Section SP */
  .cta {
    padding: 0 24px;
    gap: 53px;
  }

  .cta__message {
    padding: 63px 0px;
    border-radius: 40px;
  }

  .cta__text {
    font-size: 22px;
  }

  .cta__consultant--1 {
    width: 80px;
    top: -22px;
    right: -15px;
  }

  .cta__consultant--2 {
    width: 100px;
    top: 222px;
    left: -40px;
  }

  .cta__button {
    width: 100%;
    max-width: 400px;
  }

  /* Features Section SP */
  .features {
    margin-top: 80px;
    padding: 0;
  }

  .features__header {
    padding: 44px 0 28px;
  }

  .features__inner {
    border-radius: 0;
  }

  .features__title {
    font-size: 30px;
  }

  .features__cards {
    flex-direction: column;
    gap: 32px;
  }

  .features__card {
    width: 100%;
    gap: 16px;
  }

  .features__card-title {
    font-size: 22px;
  }

  .features__card-image {
    aspect-ratio: 335 / 211;
  }

  .features__main {
    padding: 12px 20px;
  }

  .features__voice {
    margin-top: 0;
  }

  .features__voice-content {
    padding: 24px 16px 4px;
    gap: 8px;
  }

  .features__explanation {
    margin: 11px 0 19px;
    padding: 0 20px;
  }

  .features__explanation-card {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    text-align: center;
  }

  .features__explanation-icon {
    align-items: center;
  }

  .features__explanation-title {
    text-align: center;
  }

  .features__voice-images {
    flex-direction: column;
  }

  .features__voice-profile {
    padding: 16px;
    text-align: center;
  }

  .features__voice-profile--middle {
    border-left: none;
    border-right: none;
    border-top: 1px solid #cac2b3;
    border-bottom: 1px solid #cac2b3;
  }

  .features__voice-avatar {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
  }

  .features__voice-name {
    width: auto;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    text-align: left;
  }
  .features__voice-name span {
    display: inline-block;
  }

  .features__voice-comment {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }

  /* Flow Section SP */
  .flow {
    margin: 80px 0;
    gap: 35px;
    padding: 0;
  }

  .flow__header {
    gap: 13px;
    padding: 0 20px;
  }

  .flow__steps {
    flex-direction: column;
    gap: 40px;
    padding: 0 36px;
  }

  .flow__step {
    padding: 0;
    position: relative;
  }

  .flow__step-image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
  }

  .flow__step-img {
    width: 100%;
  }

  .flow__step-content {
    gap: 23px;
  }

  .flow__step-number {
    left: 0;
    top: 0;
  }

  .flow__step-title {
    height: 95px;
    display: grid;
    align-items: center;
    margin-left: 156px;
    width: calc(100% - 156px);
  }

  .flow__options {
    flex-direction: column;
    padding: 0;
  }

  .flow__option:first-child,
  .flow__option:last-child {
    border-radius: 0;
  }

  .flow__option:first-child .flow__option-content {
    border-right: none;
    border-bottom: 1px solid #e6dcca;
  }

  .flow__option-content {
    flex-direction: column;
    padding: 24px 32px;
    gap: 8px;
  }

  .flow__cta {
    padding: 6px 24px 80px;
    background-size: 136% auto;
  }

  .flow__cta-message {
    font-size: 22px;
  }

  .flow__cta-actions {
    margin-top: 39px;
  }

  .flow__cta-button {
    width: 100%;
    max-width: 400px;
  }

  /* FAQ Section SP */
  .faq {
    margin: 80px 0;
  }

  .faq__inner {
    gap: 37px;
  }

  .faq__container {
    width: 100%;
    gap: 18px;
  }

  .faq__question {
    align-items: flex-start;
    padding: 16px;
    gap: 10px;
  }

  .faq__question-icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .faq__question-text {
    font-size: 18px;
    line-height: 1.6;
  }

  .faq__answer {
    padding: 16px;
    gap: 10px;
  }

  .faq__answer-icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .faq__answer-text {
    font-size: 16px;
    line-height: 1.8;
  }

  /* Footer Section SP */
  .footer {
    padding: 80px 0 100px;
    background-size: 136% auto;
  }

  .footer__inner {
    padding: 0 20px;
  }

  .footer__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 52px;
  }

  .footer__logo {
    width: 100%;
    height: 95px;
  }

  .footer__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer__link {
    font-size: 14px;
  }

  .footer__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
  }

  .footer__links {
    flex-direction: row;
    gap: 25px;
    justify-content: center;
    width: 100%;
  }

  .footer__copyright {
    text-align: center;
    width: 100%;
    line-height: 1.4;
  }

  .scroll {
    right: 15px;
  }

  .page-top {
    bottom: 90px;
  }
}
