html {
  background: #ffffff;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  color: #333;
}

section {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  padding: 80px 40px;
}

h1,
h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 24px 0;
}

h1 {
  font-size: 48px;
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
}

h2 {
  font-size: 32px;
  color: #263238;
}
header {
  padding: 16px 80px;
  position: absolute;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
}
.header-inner {
  width: 100%;
  max-width: 1224px;
  margin: 0 auto;
}
.header-logo {
  width: 120px;
}
.header-logo img {
  width: 100%;
}

.hero {
  position: relative;
  background: #ffffff;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
}
.hero-bg {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: #eee;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
  filter: brightness(0.5) contrast(1.2);
  mix-blend-mode: hard-light;
}
.hero-content {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1224px;
  width: 100%;
  color: #fff;
  z-index: 2;
  box-sizing: border-box;
  padding: 0 24px;
  margin-top: 40px;
}
.hero-lead-sp {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.hero-lead {
  color: #f9ffb2;
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 24px;
  align-items: flex-end;
}
.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 5px;
}
.cta-caption {
  background: #222b36;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: -5px;
  padding: 4px 8px 4px 8px;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  z-index: 10;
}
.cta-caption-num {
  font-size: 16px;
  font-weight: 700;
  margin: 0 2px;
}
.btn-primary-hero {
  display: block;
  width: 280px;
  height: 56px;
  background: #fff;
  color: #e95513;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 0px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.125);
  text-align: center;
  line-height: 56px;
  text-decoration: none;
  margin-bottom: -5px;
  transition: background 0.2s, color 0.2s;
}
.btn-primary-hero:hover {
  background: #ffece3;
  color: #ff5500;
}
.btn-secondary-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 56px;
  background: transparent;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 16px;
  border: 2px solid #fff;
  border-radius: 0px;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary-hero:hover {
  background: #fff;
  color: #e95513;
}

@media (max-width: 768px) {
  header {
    padding: 16px 24px;
  }
  .hero-bg-img {
    height: 560px;
  }
  .hero-content {
    padding: 0 16px;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-cta {
    flex-direction: column;
    gap: 16px;
  }
  .hero-cta .cta-group {
    align-items: flex-start;
    width: 100%;
  }
  .hero-cta .btn-primary-hero {
    width: 100%;
  }
  .hero-cta .cta-caption {
    margin: 0 auto;
    margin-bottom: -8px;
  }
  .hero-cta .btn-secondary-hero {
    width: 100%;
  }
}

/* Problem Section Figmaデザイン再現 */
.problem-section {
  width: 100%;
  display: flex;
  justify-content: center;
  background: linear-gradient(281deg, #f8fafc 35.58%, #fffbf9 100%), #f1f5f9;
}
.problem-section-inner {
  width: 100%;
  max-width: 1224px;
  border-radius: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 auto;
}
.problem-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.problem-icon {
  color: #ff5500;
  font-size: 12px;
  display: inline-block;
  transform: rotate(-90deg);
}
.problem-label {
  color: #b2b2b2;
  font-size: 14px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
.problem-main {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.problem-main-left {
  flex: 1 1 1;
  width: 45%;
  max-width: 100%;
}
.problem-title {
  font-size: 32px;
  color: #263238;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin: 0 0 24px 0;
  line-height: 1.5;
}
.problem-lead {
  color: #607d8b;
  font-size: 16px;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}
.problem-lead p {
  margin: 0 0 12px 0;
}
.problem-main-right {
  width: 45%;
  min-width: 320px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.problem-graph {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
}
.problem-circle {
  width: 120px;
  height: 120px;
  border-radius: 60px;
  background: #fff;
  border: 1.5px solid #e95513;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 0 8px 0;
}
.problem-circle-zeirishi .circle-label,
.problem-circle-kigyou .circle-label {
  color: #ff5500;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 8px;
}
.problem-vertical-svg {
  width: 32px;
  height: 196px;
  margin: 0 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-summary-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}
.problem-summary-box {
  background: #fff;
  border: 1.5px solid #e95513;
  border-radius: 8px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  padding: 16px 32px;
  text-align: center;
  min-width: 220px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.problem-img {
  width: 100%;
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .problem-section-inner {
    padding: 40px 0px;
  }
  .problem-main {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 0;
  }
  .problem-main-left {
    width: 100%;
  }
  .problem-main-left .problem-title {
    font-size: 24px;
  }
  .problem-main-left .problem-lead {
    font-size: 15px;
  }
  .problem-main-right {
    width: 80%;
    min-width: 0;
    max-width: 80vw;
    margin: 0 auto;
  }
  .problem-graph {
    width: 100vw;
    max-width: 100vw;
    height: auto;
  }
  .problem-summary-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .problem-img {
    width: 100%;
    max-width: 100vw;
    border-radius: 12px;
    margin-bottom: 0;
  }
}
/* SVGや細かい装飾はHTML内で直接記述・調整 */

.about {
  background: #f9f9f9;
  position: relative;
  width: 100%;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}
.about-inner {
  width: 100%;
  max-width: 1224px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  justify-content: center;
  align-items: flex-end;
}
.about-header {
  flex: 1 1 0;
  min-width: 0;
  margin-bottom: 0;
}
.about-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.about-icon {
  color: #ff5500;
  font-size: 12px;
  display: inline-block;
  transform: rotate(-90deg);
}
.about-label {
  color: #b2b2b2;
  font-size: 14px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
.about-lead {
  color: #607d8b;
  font-size: 16px;
  line-height: 1.7;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
}
.about-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #333;
  font-weight: 700;
}
.about-list li:before {
  content: "";
  background-image: url("assets/about-check.svg");
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.about-visual {
  flex: 1 1 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
}
.about-img01 {
  width: 60%;
  aspect-ratio: 2/1;
  background-image: url("assets/about-img01.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.about-img {
  width: 100%;
  border-radius: 16px;
  display: block;
}
@media (max-width: 900px) {
  .about {
    flex-direction: column;
    gap: 24px;
    max-width: 100vw;
    padding: 40px 16px;
    border-radius: 0;
  }
  .about-inner {
    flex-direction: column;
    gap: 24px;
    max-width: 100vw;
  }
  .about-inner h2 {
    font-size: 24px;
  }
  .about-lead {
    font-size: 15px;
  }
  .about-list li {
    margin-bottom: 8px;
  }
  .about-header,
  .about-visual {
    width: 100%;
    max-width: 100vw;
  }
  .about-img01 {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
  }
  .about-img {
    max-width: 100vw;
  }
}

.services {
  background: #f1f5f9;
  padding: 80px 40px;
}

.services-inner {
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 108px;
}

.services-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  justify-content: flex-start;
}

.services-icon {
  color: #ff5500;
  font-size: 12px;
  display: inline-block;
  transform: rotate(-90deg);
}

.services-label {
  color: #b2b2b2;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #263238;
  margin-bottom: 16px;
  line-height: 1.5;
}

.services-lead {
  color: #607d8b;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 800px;
}

.services-main {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}

.services-steps-list {
  width: 320px;
  flex-shrink: 0;
}

.services-steps-item {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 0;
  margin: 0;
}

.services-steps-item-arrow {
  transform: rotate(90deg);
  margin-left: 16px;
}

.services-steps-item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
}

.services-steps-item.active .services-steps-item-inner {
  background: #ffece3;
}

.services-steps-item-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-steps-item-number {
  background: #ff5500;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

.services-steps-item:not(.active) .services-steps-item-number {
  background: #ffc6aa;
}

.services-steps-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #ff5500;
  line-height: 1.5;
}

.services-steps-item:not(.active) .services-steps-item-title {
  color: #ff7b39;
}

.services-steps-item-border {
  height: 1px;
  background: #999999;
  width: 100%;
}

.services-steps-item:last-child .services-steps-item-border {
  display: none;
}

.services-detail {
  flex: 1;
}

.services-detail-content {
  display: none;
}

.services-detail-content.active {
  display: block;
}

.services-detail-header {
  background: white;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 8px;
}

.services-detail-header h4 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  line-height: 1.5;
}

.services-detail-lead {
  font-size: 14px;
  color: #607d8b;
  margin: 0;
  line-height: 1.5;
}

.services-detail-visual {
  background: white;
  padding: 32px;
  border-radius: 8px;
  position: relative;
  height: 400px;
}

.services-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.services-detail-labels {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* PC版では横並び配置を維持 */
@media (min-width: 901px) {
  .services-detail-content[data-step="1"] .services-detail-labels,
  .services-detail-content[data-step="2"] .services-detail-labels,
  .services-detail-content[data-step="3"] .services-detail-labels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }
}

.services-detail-label {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid white;
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 24px;
  border-radius: 50%;
  width: 168px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
  box-sizing: border-box;
}

.services-strengths {
  text-align: center;
}

.services-strengths h3 {
  color: #e95513;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 32px 0;
  line-height: 1.2;
}

.services-strengths-list {
  display: flex;
  gap: 24px;
  justify-content: center;
  max-width: 1224px;
  margin: 0 auto;
}

.services-strengths-item {
  border-top: 1px solid #666666;
  border-bottom: 1px solid #666666;
  padding: 24px;
  flex: 1;
  text-align: center;
  min-width: 240px;
}

.services-strengths-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.5;
}

.services-strengths-desc {
  font-size: 14px;
  color: #607d8b;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .services {
    padding: 40px 16px;
  }

  .services-inner {
    padding: 0;
  }

  .services-header {
    margin-bottom: 24px;
  }

  .services-label-row {
    gap: 4px;
    margin-bottom: 16px;
  }

  .services-icon {
    font-size: 8px;
  }

  .services-label {
    font-size: 12px;
  }

  .services-header h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .services-lead {
    font-size: 15px;
    line-height: 1.5;
  }

  .services-main {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .services-steps-list {
    width: 100%;
  }

  .services-steps-item-inner {
    padding: 20px 16px;
  }

  .services-steps-item-title {
    font-size: 16px;
  }

  .services-steps-item-arrow svg {
    width: 26px;
    height: 18px;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }

  .services-steps-item.active .services-steps-item-arrow svg {
    transform: rotate(0deg);
  }

  /* SPでは全ての詳細カードを表示 */
  .services-detail-content {
    display: block;
    margin-bottom: 8px;
  }

  .services-detail-header {
    padding: 32px 16px;
  }

  .services-detail-header h4 {
    font-size: 24px;
    text-align: center;
  }

  .services-detail-lead {
    text-align: center;
    font-size: 14px;
  }

  .services-detail-visual {
    padding: 16px;
    height: 336px;
  }

  .services-detail-labels {
    gap: 16px;
    flex-wrap: wrap;
  }

  /* SP版 逆三角形配置：上段2つ、下段1つ */
  .services-detail-content[data-step="1"] .services-detail-labels,
  .services-detail-content[data-step="2"] .services-detail-labels,
  .services-detail-content[data-step="3"] .services-detail-labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px 16px;
    justify-items: center;
    align-items: center;
  }

  .services-detail-content[data-step="1"] .services-detail-label:nth-child(3),
  .services-detail-content[data-step="2"] .services-detail-label:nth-child(3),
  .services-detail-content[data-step="3"] .services-detail-label:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .services-detail-label {
    width: 136px;
    height: 136px;
    font-size: 12px;
    padding: 16px;
  }

  .services-strengths {
    margin-top: 16px;
  }

  .services-strengths h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .services-strengths-list {
    flex-direction: column;
    gap: 8px;
    max-width: 320px;
  }

  .services-strengths-item {
    min-width: 0;
    border: 1px solid #cccccc;
    border-left: none;
    border-right: none;
    padding: 24px 16px;
    text-align: center;
  }

  .services-strengths-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .services-strengths-desc {
    font-size: 14px;
    line-height: 1.7;
  }
}

.contact {
  background: linear-gradient(45deg, #dd5200 14.64%, #f6b83b 85.36%);
  color: #fff;
  border-radius: 0;
}
.contact-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.contact-header {
  text-align: left;
  max-width: 1224px;
  margin: 0 auto;
}
.contact-icon {
  color: #ffffff;
  font-size: 12px;
  display: inline-block;
  transform: rotate(-90deg);
}
.contact-label {
  color: #f2f2f2;
  font-size: 14px;
  font-weight: 700;
  display: block;
}
.contact-lead {
  color: #f9ffb2;
  font-size: 16px;
  margin-bottom: 32px;
}
.form-inner {
  width: 100%;
  max-width: 1224px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #fff;
  box-sizing: border-box;
}

.recommend {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  padding: 0;
  padding-bottom: 80px;
  background: url(assets/foryou-img01.png) left bottom / 40% no-repeat;
}
.recommend-inner {
  width: 100%;
  max-width: 1224px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 64px 40px 32px 40px;
}
.recommend-left {
  flex: 1 1 0;
  min-width: 0;
}
.recommend-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.recommend-icon {
  color: #e95513;
  font-size: 12px;
  display: inline-block;
  transform: rotate(0deg);
}
.recommend-label {
  color: #b2b2b2;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
.recommend-title {
  font-size: 32px;
  color: #263238;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.5;
}
.recommend-lead {
  color: #607d8b;
  font-size: 14px;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 0;
}
.recommend-right {
  flex: 1.5 2 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.recommend-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 64px;
  margin-left: auto;
}
.recommend-list li {
  position: relative;
  font-size: 16px;
  color: #263238;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.7;
  padding-left: 36px;
}
.recommend-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background-image: url("assets/foryou-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 900px) {
  .recommend {
    padding-bottom: 0;
    background-size: 100% 80%;
  }
  .recommend-inner {
    flex-direction: column;
    gap: 24px;
    padding: 40px 16px;
  }
  .recommend-label-row {
    margin-bottom: 16px;
  }
  .recommend-title {
    font-size: 24px;
  }
  .recommend-left,
  .recommend-right {
    width: 100%;
    max-width: 100vw;
  }
  .recommend-right {
    margin-top: 0px;
  }
  .recommend-list {
    gap: 20px;
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .contact-label-row {
    margin-bottom: 16px;
  }
  .contact-header {
    margin-bottom: 24px;
  }
  .contact-header h2 {
    font-size: 32px;
    margin-bottom: 4px;
  }
  .form-inner {
    padding: 32px 16px;
  }
}

@media (max-width: 900px) {
  section {
    padding: 40px 16px;
  }
  .hero-content {
    top: 40px;
  }
  .problem-visual,
  .about-visual,
  .services-visual,
  .contact-cta,
  .recommend-inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .about-img,
  .services-img,
  .problem-img {
    width: 100%;
    max-width: 100vw;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 900px) {
  .sp-only {
    display: block;
  }
}

.services-cards-figma {
  display: flex;
  flex-direction: row;
  gap: 32px;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  margin: 40px 0 0 0;
}
.services-card-figma {
  background: #ffece3;
  border: 2px solid #e95513;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(233, 85, 19, 0.08);
  padding: 40px 32px 32px 32px;
  width: 320px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.services-card-figma-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e95513;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(233, 85, 19, 0.1);
}
.services-card-figma-title {
  font-size: 20px;
  font-weight: 700;
  color: #263238;
  margin-bottom: 16px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.services-card-figma-desc {
  font-size: 15px;
  color: #607d8b;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.services-card-figma-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (max-width: 900px) {
  .services-cards-figma {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .services-card-figma-arrow {
    transform: rotate(90deg);
    margin: 0 0 16px 0;
  }
  .services-card-figma {
    width: 100%;
    min-width: 0;
    padding: 32px 16px;
  }
}

.services-steps {
  display: flex;
  flex-direction: row;
  gap: 32px;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  margin: 0 0 40px 0;
}
.services-step {
  background: #fff;
  border: 2px solid #e95513;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(233, 85, 19, 0.08);
  padding: 32px 24px 24px 24px;
  width: 280px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.services-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e95513;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(233, 85, 19, 0.1);
}
.services-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #263238;
  margin-bottom: 12px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.services-step-desc {
  font-size: 14px;
  color: #607d8b;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.services-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (max-width: 900px) {
  .services-steps {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .services-step-arrow {
    transform: rotate(90deg);
    margin: 0 0 16px 0;
  }
  .services-step {
    width: 100%;
    min-width: 0;
    padding: 24px 12px;
  }
}

.services-steps-list {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
}
.services-steps-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #e95513;
  background: #000;
  position: relative;
}
.services-steps-list-item.active {
  background: #ffece3;
}
.services-steps-list-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  margin-right: 20px;
}
.services-steps-list-item.active .services-steps-list-num {
  background: #e95513;
  color: #fff;
}
.services-steps-list-item:not(.active) .services-steps-list-num {
  background: #e0e0e0;
  color: #e95513;
}
.services-steps-list-title {
  flex: 1;
  text-align: left;
  color: #e95513;
  font-weight: 700;
  font-size: 22px;
}
.services-steps-list-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  margin-left: 20px;
}
.services-steps-list-item.active .services-steps-list-arrow {
  background: #e95513;
  color: #fff;
}
.services-steps-list-item:not(.active) .services-steps-list-arrow {
  background: #fff;
  color: #e95513;
  border: 2px solid #fff;
}
.services-steps-list-item:not(:last-child) {
  border-bottom: 2px solid #fff;
}
@media (max-width: 600px) {
  .services-steps-list {
    max-width: 100vw;
    margin-bottom: 0px;
  }
  .services-steps-list-item {
    padding: 16px 12px;
    font-size: 18px;
  }
  .services-steps-list-title {
    font-size: 18px;
  }
  .services-steps-list-num,
  .services-steps-list-arrow {
    width: 28px;
    height: 28px;
    font-size: 16px;
    margin: 0 8px;
  }
}

.services-steps-2col {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px auto;
  align-items: flex-start;
}
.services-steps-list-col {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.services-steps-list-item {
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.services-steps-detail-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.services-steps-detail {
  display: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 32px 24px;
  font-family: "Noto Sans JP", sans-serif;
  color: #263238;
}
.services-steps-detail.active {
  display: block;
}
.services-steps-detail h4 {
  color: #e95513;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px 0;
}
.services-steps-detail p {
  font-size: 16px;
  margin: 0;
}
.services-steps-detail-img-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 32px auto 0 auto;
}
.services-steps-detail-img {
  width: 100%;
  border-radius: 12px;
  display: block;
  filter: grayscale(1) contrast(1.1);
}
.circle-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.circle-label {
  position: absolute;
  width: 180px;
  min-height: 80px;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid #e95513;
  border-radius: 50%;
  color: #263238;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(233, 85, 19, 0.08);
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.services-steps-detail-lead {
  color: #607d8b;
  font-size: 16px;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 900px) {
  .services-steps-2col {
    flex-direction: column;
    gap: 24px;
    max-width: 100vw;
  }
  .services-steps-list-col {
    flex: none;
    width: 100%;
  }
  .services-steps-detail-col {
    width: 100%;
  }
  .services-steps-detail {
    padding: 24px 8px;
  }
  .services-steps-detail-img-wrap {
    max-width: 100vw;
  }
  .circle-label {
    width: 120px;
    min-height: 60px;
    font-size: 13px;
    padding: 8px;
  }
}
