@charset "utf-8";
/* CSS Document */
/* --- 基本スタイル --- */ :root {
  --primary: #0B3676;
  --secondary: #0B3676;
  --light: #f5f7fa;
  --dark: #000000;
  --white: #ffffff;
  --light-gray: #e5e5e5;
  --pink: #e84388;
  --blue: #5f90cc;
  --green: #42bdd8;
}
* {
  margin: 0;
  padding: 0;
  font-size: 16px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}
body {
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--white);
}
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.header-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  align-items: center;
  padding: 15px 20px;
  height: 56px;
}
.header-btn {
  border: solid 2px var(--primary);
  padding: 0 16px;
  border-radius: 24px;
}
.logo img {
  max-height: 44px;
  width: auto;
  display: block;
}
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
}
.nav-menu li {
  margin-left: 20px;
  padding-bottom: 2px;
}
.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
  font-size: 13px !important;
}
.nav-menu a:hover {
  color: var(--primary);
}
.hero {
  background-image: url("../img/mv.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 144px 0 100px;
  color: var(--white);
  text-align: center;
}
.hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-shadow: 0 0 10px var(--primary);
}
.hero p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 48px;
  font-weight: 500;
  line-height: 2;
  text-shadow: 0 0 10px var(--primary);
}
.btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--white);
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 18px;
  width: 320px;
}
.btn:hover {
  transform: translateY(-3px);
  color: var(--white);
  background: linear-gradient(135deg, #00DDDD 0%, #B953EB 75%, #F64F9C 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn::after {
  content: "\FF1E"; /* 全角の ＞ */
  display: inline-block;
  margin-left: 16px;
  font-size: 18px;
  transition: transform 0.3s;
}
.btn:hover::after {
  transform: translateX(4px);
}
.hero .btn {
  padding: 16px 24px;
  font-size: 20px;
  width: 360px;
}
section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
}
.section-title p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 5px;
}
.section-title p:last-of-type {
  margin-bottom: 0;
}
/* MODIFICATION: Style for the larger subtitle */
.concerns-subtitle {
  font-size: 28px; /* Increased font size */
  max-width: 700px;
  margin: 10px auto 0; /* Adjusted margin */
  font-weight: 600; /* Made slightly bolder */
  line-height: 1.5;
}
.concerns-icon {
  background-image: url(../img/icon_concerns.svg);
  color: var(--white);
  width: 40px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 20px;
}
.concerns {
  background-color: var(--white);
  padding-bottom: 80px;
}
.concerns-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
.concerns-card {
  display: flex;
  background-color: var(--light);
  padding: 1.6rem;
  border-radius: 8px;
  text-align: left;
  flex: 1;
  min-width: 280px;
  max-width: 1000px;
  width: 100%;
}
.concerns-card h3 {
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 12px;
}
.concerns-card p {
  color: var(--dark);
  line-height: 1.7;
}
.arrow-down {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  font-size: 40px;
  color: var(--primary);
}
.solution-section {
  text-align: center;
  margin-bottom: 60px;
}
.solution-headline {
  font-size: 48px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.4;
  margin-bottom: 15px;
}
.solution-subtitle { /* Style for the second subtitle */
  color: var(--dark);
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 700;
}
#approach-details {
  position: relative;
  background: linear-gradient(135deg, #F2F7FF 0%, #CDDEF8 100%);
  padding-top: 160px;
}
#approach-details:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  height: calc(tan(60deg) * 80px / 2);
  width: 100%;
  background-color: var(--white);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  /* border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 25px solid var(--white);*/
}
.approach-grid {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}
.approach-card {
  display: flex;
  border-radius: 8px;
  text-align: left;
  flex: 1;
  width: 88%;
}
.approach-card h4 {
  font-size: 24px;
  color: var(--secondary);
  margin-bottom: 20px;
  font-weight: 600;
}
.approach-arrow {
  text-align: center;
  font-size: 24px;
  color: var(--primary);
  margin: 15px 0;
  font-weight: bold;
}
.approach-card .solution-text {
  font-size: 18px;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 0;
}
.cta-button-container {
  text-align: center;
}
.cta-grid {
  display: flex;
  justify-content: center;
  flex-direction: wrap;
  align-items: center;
  gap: 60px;
}
.features {
  background: linear-gradient(135deg, #F2F7FF 0%, #CDDEF8 100%);
}
.features-grid {
  margin-top: 30px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.feature-card {
  background-color: var(--white);
  padding: 2rem 2.4rem;
  border-radius: 8px;
  text-align: center;
}
.features-grid .feature-card {
  flex: 1;
  width: 100%;
}
.feature-icon {
  color: var(--primary);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.workflow {
  text-align: center;
}
.workflow-steps .step {
  max-width: 100%;
}
.workflow-flow {
  margin-top: 20px;
  background: #F5F7FA;
  border-radius: 10px;
  padding: 20px;
}
.workflow-flow .flow {
  max-width: 760px;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -28px;
  top: 30px;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.step h3 {
  margin-bottom: 15px;
  font-size: 22px;
}
.rag-benefits {
  background: linear-gradient(135deg, #F2F7FF 0%, #CDDEF8 100%);
  border-radius: 8px;
}
.rag-benefits h4 {
  font-size: 32px;
}
.benefit-list {
  max-width: 680px;
  margin: 0 auto;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.benefit-item div h5 {
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 24px;
}
.benefit-item p {
  font-size: 18px;
}
.benefit-icon {
  background-image: url(../img/icon_check.svg);
  color: var(--white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 20px;
}
.individual-service-section {
  margin-bottom: 60px;
  text-align: center;
}
.individual-service-section h3 {
  font-size: 28px;
  margin-bottom: 40px;
  color: var(--secondary);
}
.individual-services-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.individual-service-card {
  background-color: var(--white);
  border-radius: 8px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.individual-service-card.construction {
  border: 2px solid var(--blue);
}
.individual-service-card.rag-service {
  border: 2px solid var(--green);
}
.individual-service-card h5 {
  text-align: center;
  font-size: 24px;
  padding: 0.6rem;
  color: var(--white);
}
.individual-service-card.construction h5 {
  background: var(--blue);
}
.individual-service-card.rag-service h5 {
  background: var(--green);
}
.individual-service-card > .inner {
  padding: 1.4rem 1.6rem;
}
.individual-service-card .service-feature {
  margin-bottom: 20px;
}
.individual-service-card .service-feature p {
  padding: 4px 8px;
  border-radius: 40px;
  margin-bottom: 16px;
  text-align: center;
}
.individual-service-card.construction .service-feature p {
  background: #dcecfc;
}
.individual-service-card.rag-service .service-feature p {
  background: #d6f2f8;
}
.individual-service-card .service-price {
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--light-gray);
  padding-bottom: 15px;
}
.individual-service-card .service-price p {
  margin-bottom: 8px;
  line-height: 1.5;
}
.individual-service-card .service-price strong {
  color: var(--dark);
  min-width: 80px;
  display: inline-block;
  font-weight: 600;
  margin-right: 5px;
}
.individual-service-card .service-price .price {
  color: var(--primary);
}
.individual-service-card .service-features-list {
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
}
.individual-service-card .list-heading {
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 8px;
  color: var(--dark);
}
.individual-service-card .service-features-list .list-heading:first-of-type {
  margin-top: 0;
}
.individual-service-card .service-features-list ul {
  list-style: none;
  padding-left: 1.3em;
  margin: 0.2rem 0 1.2rem;
}
.individual-service-card .service-features-list .mb0 {
  margin-bottom: 0;
}
.individual-service-card .service-features-list li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 0;
}
.individual-service-card .service-features-list li::before {
  content: "・";
  position: absolute;
  left: -1.2em;
  color: var(--primary);
}
.individual-service-card .service-features-list b {
  color: var(--green);
}
.plan-subtitle {
  font-size: 28px;
  color: var(--secondary);
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}
.pricing .container .pricing-subtitle {
  font-size: 32px;
  color: var(--dark);
  text-align: center;
  margin: 80px auto 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.pricing-image-container {
  text-align: center;
  margin-bottom: 60px;
}
.pricing-image-container-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.pricing-image-container-grid .pricing-image {
  width: 220px;
}
.pricing-summary-subtitle {
  font-size: 24px;
  text-align: center;
  margin: 40px auto;
}
.pricing-summary-image {
  max-width: 880px;
  height: auto;
  border-radius: 8px;
}
.pricing-summary-image_puzzle {
  width: 240px;
  height: auto;
  border-radius: 8px;
}
.pricing-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pricing-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.6rem 1.4rem;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--light-gray);
}
.pricing-card.featured {
  position: relative;
  border-radius: 8px;
  z-index: 1;
}
.pricing-card.featured::before {
  content: "おすすめ";
  position: absolute;
  top: -15px;
  left: 30px;
  background: linear-gradient(135deg, #00DDDD 0%, #B953EB 75%, #F64F9C 100%);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}
.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.support-spot h3 {
  color: var(--pink);
}
.support-middle h3 {
  color: var(--blue);
}
.support-full h3 {
  color: var(--green);
}
.pricing-card > h3.plan {
  width: 100%;
  font-size: 1.6rem;
  padding: 12px 4px;
  line-height: 1.2;
  border-radius: 2px;
}
.pricing-card > h3.plan > span {
  font-weight: 500;
}
.support-spot > h3.plan {
  background-color: #f9e1e8;
  color: var(--pink);
}
.support-middle > h3.plan {
  background-color: #dcecfc;
  color: var(--blue);
}
.support-full > h3.plan {
  background-color: #d6f2f8;
  color: var(--green);
}
.pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.pricing-features {
  list-style: none;
  text-align: left;
  padding-left: 0;
  flex-grow: 1;
}
.pricing-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 1.2rem;
}
.pricing-features li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.results-grid {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.result-card {
  background-color: var(--white);
  padding: 32px 16px 24px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 20%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--light-gray);
}
.result-card h3 {
  align-content: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
  flex-grow: 1;
}
.result-card p {
  font-size: 14px;
  margin-top: auto;
}
.cta {
  text-align: center;
  background: linear-gradient(135deg, #0B3676 0%, #0B0731 100%);
  color: var(--white);
}
.cta-content {
  max-width: 800px;
  margin: 0 auto;
}
.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.cta p {
  margin-bottom: 40px;
  font-size: 18px;
}
.service-kit-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  margin-bottom: 40px;
}
.service-kit-table th, .service-kit-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}
.service-kit-table th {
  background-color: var(--light);
  font-weight: 600;
  color: var(--primary);
}
.service-kit-table td {
  vertical-align: top;
}
.service-kit-table ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.service-kit-table ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.service-kit-table ul li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-column {
  flex: 1;
  min-width: 200px;
}
.footer-column h4 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: var(--white);
}
.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--white);
}
.footer-column ul {
  list-style: none;
  padding-top: 10px;
}
.footer-column ul li {
  margin-bottom: 10px;
}
.footer-column ul li a, .footer-column p, .footer-column p a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-column p {
  color: var(--light-gray);
}
.copyright {
  text-align: center;
  margin-top: 50px;
  color: var(--white);
  font-size: 14px;
  border-top: 1px solid var(--white);
  padding-top: 30px;
}
.info-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--white);
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  max-width: 320px;
  border: 2px solid transparent;
  background-image: linear-gradient(var(--white), var(--white)), linear-gradient(135deg, #00DDDD 0%, #B953EB 75%, #F64F9C 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  display: block;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.info-popup.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.popup-close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6c757d;
  line-height: 1;
  padding: 5px;
}
.popup-close-btn:hover {
  color: var(--dark);
}
.popup-title {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
  padding-right: 30px;
  line-height: 1.4;
}
.popup-link {
  display: block;
  padding: 10px 20px;
  background-color: var(--white);
  color: var(--primary);
  text-decoration: none;
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s;
  font-size: 14px;
  box-sizing: border-box;
}
.popup-link:hover {
  transform: translateY(-3px);
  color: var(--white);
  border: none;
  padding: 12px 22px;
  background: linear-gradient(135deg, #00DDDD 0%, #B953EB 75%, #F64F9C 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.popup-link::after {
  content: "\FF1E"; /* 全角の ＞ */
  display: inline-block;
  margin-left: 12px;
  font-size: 14px;
  transition: transform 0.3s;
}
.popup-link:hover::after {
  transform: translateX(4px);
}
/* --- レスポンシブ対応 --- */
@media (min-width: 767.9px) {
  .pc-hidden {
    display: none !important;
  }
}
@media (max-width: 768px) {
  * {
    font-size: 14px;
  }
  .sp-hidden {
    display: none !important;
  }
  .header-container {
    text-align: center;
    padding: 10px 15px;
  }
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }
  .nav-menu li {
    width: 100%;
    margin: 5px 10px;
  }
  .nav-menu .header-btn {
    text-align: center;
    border-bottom: solid 2px var(--primary);
    padding: 6px 0 10px;
    margin-top: 0.6rem;
  }
  .logo img {
    max-height: 40px;
  }
  .container {
    padding: 0px 1.2rem;
  }
  .hero {
    background-image: url(../img/mv_sp.jpg);
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .hero h1 {
    font-size: 40px;
    line-height: 1.4;
  }
  .hero p {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .hero .btn {
    width: 92%;
    font-size: 16px;
  }
  section {
    padding: 40px 0;
  }
  .section-title {
    margin-bottom: 2.4rem;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .section-title p {
    font-size: 16px;
  }
  .btn {
    font-size: 16px;
  }
  .concerns {
    padding-bottom: 40px;
  }
  .concerns-grid {
    gap: 0;
    margin-top: 40px;
  }
  .concerns-subtitle {
    font-size: 24px;
    width: 310px;
  }
  .concerns-icon {
    background-image: url(../img/icon_concerns_sp.svg);
    color: var(--white);
    width: 28px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 20px;
  }
  .features .section-title h2 {
    font-size: 24px;
  }
  .concerns-card {
    max-width: 450px;
    margin-bottom: 20px;
  }
  .solution-headline {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .solution-subtitle {
    font-size: 16px;
  }
  .benefit-icon {
    background-image: url(../img/icon_check_sp.svg);
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    font-size: 16px;
    margin-right: 10px
  }
  #approach-details {
    padding-top: 80px;
  }
  #approach-details:before {
    height: calc(tan(60deg) * 40px / 2);
  }
  .approach-grid {
    gap: 40px;
    margin-bottom: 20px;
  }
  .approach-card {
    width: 90%;
    max-width: 450px;
  }
  .approach-card h4 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 20px;
  }
  .approach-card .solution-text {
    font-size: 16px;
  }
  .features-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .features-grid .feature-card {
    flex-basis: auto;
    width: 100%;
    padding: 30px;
    max-width: 500px;
    min-width: unset;
  }
  .feature-card h3 {
    font-size: 20px;
  }
  .feature-icon img {
    height: 80px;
  }
  .pricing-image-container {
    margin-bottom: 40px;
  }
  .pricing .container .pricing-subtitle {
    font-size: 20px;
  }
  .pricing-image-container-grid {
    align-items: center;
    gap: 10px;
  }
  .pricing-image-container-grid .pricing-image {
    width: 100%;
    max-width: 160px;
  }
  .pricing-summary-image_puzzle {
    width: 100%;
    max-width: 200px;
  }
  .individual-services-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .individual-service-card {
    flex-basis: auto;
    max-width: 450px;
    min-width: unset;
  }
  .individual-service-card h5 {
    font-size: 20px;
  }
  .individual-service-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .plan-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.4;
  }
  .rag-benefits h4 {
    font-size: 20px;
  }
  .benefit-item div h5 {
    font-size: 20px;
  }
  .benefit-item p {
    font-size: 14px;
  }
  .pricing-options {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }
  .pricing-card {
    padding: 30px 25px;
    width: 100%;
    max-width: 400px;
    min-width: unset;
  }
  .pricing-card > p {
    font-size: 14px;
  }
  .pricing-summary-subtitle {
    font-size: 20px;
  }
  .results-grid {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .result-card {
    width: 100%;
    min-width: unset;
    margin-bottom: 0;
    flex-basis: auto;
    max-width: 400px;
    padding: 20px 12px 14px;
  }
  .result-card h3 {
    flex-grow: 0;
    font-size: 18px;
  }
  .result-card p {
    margin-top: 10px;
    font-size: 14px;
  }
  .footer-content {
    flex-direction: column;
  }
  .footer-column {
    min-width: 100%;
    margin-top: 20px;
  }
  .service-kit-table {
    font-size: 14px;
  }
  .service-kit-table th, .service-kit-table td {
    padding: 10px;
  }
  .info-popup {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    padding: 15px 20px;
  }
  .popup-title {
    font-size: 15px;
  }
  .popup-link {
    padding: 10px 15px;
    font-size: 13px;
  }
  .workflow-flow {
    padding: 10px;
  }
  .workflow-flow .flow {
    max-width: 100%;
  }
  .cta {
    padding: 40px 20px;
  }
  .cta h2 {
    font-size: 24px;
  }
  .cta-grid {
    flex-direction: column;
    gap: 40px;
  }
  .cta p {
    font-size: 14px;
  }
}
/*-- ハンバーガーメニュー --*/
/* ハンバーガーアイコン初期状態は非表示 */
.menu-toggle {
  display: none;
}
.menu-icon {
  display: none;
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 2;
  flex-direction: column;
  justify-content: center;
}
.menu-icon .bar {
  background: #000;
  height: 3px;
  margin: 3px 0;
  transition: 0.3s;
  display: block;
}
.menu-icon .close {
  display: none;
  position: absolute;
  top: -5px;
  left: 0;
  font-size: 24px;
  color: #000;
}
/* レスポンシブ対応 */
@media screen and (max-width: 1000px) {
  .menu-icon {
    display: flex;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1;
    padding: 20px;
    text-align: left;
    font-size: 14px;
  }
  .nav-menu li {
    padding-bottom: 10px;
    border-bottom: 1px solid #e2dcdc;
  }
  .menu-toggle:checked ~ .menu-icon .bar {
    display: none;
  }
  .menu-toggle:checked ~ .menu-icon .close {
    display: block;
  }
  .menu-toggle:checked ~ .menu-icon + .nav-menu {
    display: flex;
  }
}
/* footer */
.l-footer {
  width: 100%;
  /* background-color: #241E1C; */
  background-color: #413d3c;
  margin: auto 0 0;
  position: relative
}
.l-footer.-contact {
  background-color: transparent
}
.l-footer__inner {
  --max-width: 93.75rem;
  --bg-color: transparent;
  background-color: var(--bg-color);
  max-width: var(--max-width);
  margin: 0 auto
}
.l-footer__inner li {
  list-style: none;
}
@media only screen and (max-width:47.9375em) {
  .l-footer__inner {
    padding: 2.5rem 1.25rem 1.875rem
  }
}
@media print, screen and (min-width:48em) {
  .l-footer__inner {
    /* padding: 3.75rem 3.125rem 0.75rem; */
    padding: 6.87rem 3.125rem 1.75rem;
    display: block
  }
}
@media print, screen and (min-width:75em) {
  .l-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
}
.l-footer__inner.-type_b {
  display: block
}
@media only screen and (max-width:47.9375em) {
  .l-footer__inner.-type_b {
    /* padding: 0 1.25rem 1.25rem */
    padding: 0;
  }
}
@media print, screen and (min-width:48em) {
  .l-footer__inner.-type_b {
    /* padding: 0 3.125rem 1.25rem */
    /* padding: 0 0 1.25rem; */
    padding: 5rem 0 0;
  }
}
.l-footer__logo {
  width: 9.375rem
}
.l-footer__menu {
  display: flex
}
@media only screen and (max-width:47.9375em) {
  .l-footer__menu {
    flex-wrap: wrap;
    /* margin-top: .75rem */
    margin-top: 1.75rem;
    margin-bottom: 1.875rem;
  }
}
@media print, screen and (min-width:75em) {
  .l-footer__menu {
    /* margin-top: 62px; */
    margin-top: 70px;
  }
  .l-footer__menu:first-child {
    /* margin-top: 62px; */
    margin-top: 0;
  }
}
@media print, screen and (min-width: 48rem) and (max-width:74.99em) {
  .l-footer__menu {
    /* margin-top: 2rem; */
    margin-top: 4.37rem;
    /* margin-bottom: 2rem; */
  }
}
.l-footer__menu > ul {
  display: flex;
  flex-wrap: wrap;
  /* flex-direction: column */
}
@media only screen and (max-width:47.9375em) {
  .l-footer__menu li {
    width: 20%;
  }
  .l-footer__menu .footer-column li {
    width: 100%;
  }
  .l-footer__menu li:nth-of-type(n + 3) {
    margin-top: 1.25rem
  }
}
@media print, screen and (min-width:48em) {
  .l-footer__menu li {
    width: 20%;
  }
  .l-footer__menu .footer-column li {
    width: 100%;
  }
  .l-footer__menu li:nth-of-type(n + 6) {
    margin-top: .75rem;
  }
}
.l-footer__link a, .l-footer__menu a {
  color: #fff;
  transition: color .25s ease-in-out
}
.l-footer__menu a {
  font-weight: 400;
  font-size: 1rem;
  display: inline-block
}
.l-footer__menu a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cdefs%3E%3Cstyle%3E.a{fill%3Anone%3B}.b{fill%3A%23fff%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Crect%20class%3D%22a%22%20width%3D%2216%22%20height%3D%2216%22%2F%3E%3Cg%20transform%3D%22translate%282%202%29%22%3E%3Cpath%20class%3D%22b%22%20d%3D%22M14.333%2C9h0a.669.669%2C0%2C0%2C0-.667.667v4H4.333V4.333h4A.669.669%2C0%2C0%2C0%2C9%2C3.667H9A.669.669%2C0%2C0%2C0%2C8.333%2C3h-4A1.337%2C1.337%2C0%2C0%2C0%2C3%2C4.333v9.333A1.337%2C1.337%2C0%2C0%2C0%2C4.333%2C15h9.333A1.337%2C1.337%2C0%2C0%2C0%2C15%2C13.667v-4A.669.669%2C0%2C0%2C0%2C14.333%2C9Z%22%20transform%3D%22translate%28-3%20-3%29%22%2F%3E%3Cpath%20class%3D%22b%22%20d%3D%22M16.569%2C3H13.043a.33.33%2C0%2C0%2C0-.233.567L14.1%2C4.86l-5.2%2C5.2a.664.664%2C0%2C0%2C0%2C0%2C.94h0a.664.664%2C0%2C0%2C0%2C.94%2C0l5.193-5.193L16.329%2C7.1a.337.337%2C0%2C0%2C0%2C.573-.24V3.333A.33.33%2C0%2C0%2C0%2C16.569%2C3Z%22%20transform%3D%22translate%28-4.903%20-3%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E);
  position: relative;
  transition: opacity .25s ease-in-out
}
@media only screen and (max-width: 47.9375em) {
  .l-footer__menu li {
    width: 50%;
  }
}
@media only screen and (max-width:63.99375em) {
  .l-footer__menu a[target=_blank]::after {
    top: .01em;
    margin-left: 8px
  }
}
@media print, screen and (min-width:64em) {
  .l-footer__menu a[target=_blank]::after {
    top: .14em;
    margin-left: 7px
  }
}
@media (hover:hover) {
  .l-footer__menu a[target=_blank]:hover::after {
    opacity: .5
  }
  .l-footer__menu a:hover {
    color: #98999b
  }
}
.l-footer__other {
  width: 100%;
  color: #fff
}
.l-footer__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width:47.9375em) {
  .l-footer__link {
    display: block;
    /* flex-direction: column-reverse */
  }
  .l-footer__link > * {
    width: 100%;
  }
}
@media print, screen and (min-width:48em) {
  .l-footer__link {
    flex-wrap: wrap;
    gap: 1.25rem
  }
}
.l-footer__link > ul {
  display: flex;
  flex-wrap: wrap
}
@media only screen and (max-width:47.9375em) {
  .l-footer__link > ul {
    /* margin-top: -1.25rem;
      margin-left: -.875rem */
  }
}
@media print, screen and (min-width:48em) {
  .l-footer__link > ul {
    /* margin-top: -.75rem;
      margin-left: -.75rem */
  }
}
@media only screen and (max-width:47.9375em) {
  .l-footer__link > ul:first-child {
    margin-top: .375rem
  }
}
@media print, screen and (min-width:48em) {
  .l-footer__link > ul:first-child {
    margin-bottom: .625rem
  }
}
@media print, screen and (min-width:64em) {
  .l-footer__link > ul:first-child {
    margin-bottom: 0
  }
}
.l-footer__link li {
  line-height: 1.2;
  font-size: .75rem;
  color: #fff
}
@media only screen and (max-width:47.9375em) {
  .l-footer__link li {
    margin-top: 1.25rem;
  }
  .l-footer__link li {
    margin-right: .875rem
  }
}
@media print, screen and (min-width:48em) {
  .l-footer__link li:not(:first-of-type) {
    margin-left: 2.5rem;
    /* margin-top: .75rem; */
    /* margin-left: .75rem */
  }
}
.l-footer__link a {
  font-size: .75rem
}
@media (hover:hover) {
  .l-footer__link a:hover {
    color: #98999b
  }
}
.l-footer__copyright {
  display: block;
  font-size: .75rem;
  font-weight: 400;
  color: #fff;
}
@media only screen and (max-width:47.9375em) {
  .l-footer__copyright {
    text-align: center;
    margin-top: 1.5rem
  }
}
@media print, screen and (min-width:48em) {
  /* .l-footer__copyright {
      margin-top: 1rem
  } */
}
.l-footer__contact {
  display: flex;
  align-items: center;
  justify-content: center
}
@media only screen and (max-width:47.9375em) {
  .l-footer__contact {
    height: auto;
    min-height: 1.875rem
  }
}
@media print, screen and (min-width:48em) {
  .l-footer__contact {
    height: 3.75rem
  }
}
.l-footer__contact .l-footer__copyright {
  font-weight: 600;
  margin-top: 0
}
.l-footer__logo {
  display: flex;
  flex-wrap: wrap;
  width: 750px;
}
@media only screen and (max-width:47.9375em) {
  .l-footer__logo {
    width: 100%;
  }
}
.l-footer__logo img {
  width: 150px;
}
@media only screen and (max-width:47.9375em) {
  .l-footer__logo img {
    width: 110px;
  }
}
.l-footer__logo-text {
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  margin-left: 35px;
  padding-top: 23px;
}
@media only screen and (max-width:47.9375em) {
  .l-footer__logo-text {
    font-size: 0.875rem;
    margin-left: 15px;
    padding-top: 20px;
  }
}
.l-footer__logo-list {
  width: 100%;
  margin-top: 25px;
}
.l-footer__logo-list ul {
  display: flex;
  align-items: center;
  margin-left: -33px;
}
@media only screen and (max-width:47.9375em) {
  .l-footer__logo-list ul {
    flex-wrap: wrap;
    margin-left: -30px;
    margin-top: -20px;
  }
}
.l-footer__logo-list li {
  margin-left: 33px;
}
@media only screen and (max-width:47.9375em) {
  .l-footer__logo-list li {
    margin-left: 30px;
    margin-top: 20px;
  }
}
.l-footer__logo-list img {
  width: 100%;
  vertical-align: baseline;
}
.l-footer__logo-list a {
  display: block
}
.l-footer_stco a {
  width: 65px;
}
.l-footer_mfield a {
  width: 62px;
}
.l-footer_alfield a {
  width: 76px;
}
.l-footer_balconia a {
  width: 68px;
  height: 30px;
}
.l-footer_balconia-s a {
  width: 68px;
}
.l-footer_dualix a {
  width: 68px;
}
.l-footer_eduleap a {
  width: 68px;
}
.p-page-top.-fixed {
  position: absolute;
  bottom: auto;
  top: 1.125rem;
  top: 4.12rem;
}
.p-page-top {
  z-index: 1000;
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 3.75rem;
  height: 3.75rem;
  bg-color: #1a1b29;
  --text-color: #fff;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(.625rem);
  transition: all .25s ease-in-out
}
@media only screen and (max-width:47.9375em) {
  .p-page-top {
    display: none
  }
}
.p-page-top.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}
.p-page-top a * {
  fill: #1a1b29;
  transition: .3s cubic-bezier(.55, .085, .68, .53);
}
.p-page-top.-fixed {
  position: absolute;
  bottom: auto;
  top: 1.125rem;/
}
.p-page-top.-fixed a * {
  fill: #fff;
}
.p-page-top.-fixed::before {
  border: .0625rem solid #1a1b29;
  z-index: -1;
  left: 0;
  right: auto;
  width: 100%
}
.p-page-top.-fixed::after {
  transform: translateX(calc(100% + .0625rem));
  transition: transform .3s cubic-bezier(.55, .085, .68, .53)
}
.p-page-top.-fixed > a {
  background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214.612%22%20height%3D%2217.061%22%20viewBox%3D%220%200%2014.612%2017.061%22%3E%3Cdefs%3E%3Cstyle%3E.a%2C.b{fill%3Anone%3Bstroke%3A%231a1b29%3Bstroke-width%3A1.5px%3B}.a{stroke-linejoin%3Around%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20transform%3D%22translate%28-698.887%201445.25%29%20rotate%28-90%29%22%3E%3Cline%20class%3D%22a%22%20x2%3D%2215.998%22%20transform%3D%22translate%281428.189%20706.193%29%22%2F%3E%3Cpath%20class%3D%22b%22%20d%3D%22M4174.093%2C2728.714l6.776%2C6.776-6.776%2C6.775%22%20transform%3D%22translate%28-2736.68%20-2029.297%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)
}
.p-page-top::before {
  position: absolute;
  display: block;
  content: "";
  height: 100%;
  background-color: #fff;
  border: 0 solid #1a1b29;
  right: 0;
  top: 0;
  width: 0;
  transition: width .3s cubic-bezier(.55, .085, .68, .53), border .3s cubic-bezier(.55, .085, .68, .53)
}
/* .p-page-top::after, */
.p-page-top > a {
  display: block;
  width: 100%;
  height: 100%
}
.p-page-top::after {
  z-index: -1;
  position: absolute;
  content: "";
  background-color: #1a1b29;
  border: .0625rem solid #1a1b29;
  right: 0;
  top: 0
}
@media (hover:hover) {
  .p-page-top:hover {
    z-index: 2
  }
  .p-page-top:hover::before {
    border: .0625rem solid #1a1b29;
    z-index: -1;
    left: 0;
    right: auto;
    width: 100%
  }
  .p-page-top:hover::after {
    transform: translateX(calc(100% + .0625rem));
    transition: transform .3s cubic-bezier(.55, .085, .68, .53)
  }
  .p-page-top:hover > a {
    background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214.612%22%20height%3D%2217.061%22%20viewBox%3D%220%200%2014.612%2017.061%22%3E%3Cdefs%3E%3Cstyle%3E.a%2C.b{fill%3Anone%3Bstroke%3A%231a1b29%3Bstroke-width%3A1.5px%3B}.a{stroke-linejoin%3Around%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20transform%3D%22translate%28-698.887%201445.25%29%20rotate%28-90%29%22%3E%3Cline%20class%3D%22a%22%20x2%3D%2215.998%22%20transform%3D%22translate%281428.189%20706.193%29%22%2F%3E%3Cpath%20class%3D%22b%22%20d%3D%22M4174.093%2C2728.714l6.776%2C6.776-6.776%2C6.775%22%20transform%3D%22translate%28-2736.68%20-2029.297%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)
  }
}
.p-page-top > a {
  background-repeat: no-repeat;
  background-size: 1rem .875rem;
  background-position: 50% 50%;
  background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214.612%22%20height%3D%2217.061%22%20viewBox%3D%220%200%2014.612%2017.061%22%3E%3Cdefs%3E%3Cstyle%3E.a%2C.b{fill%3Anone%3Bstroke%3A%23fff%3Bstroke-width%3A1.5px%3B}.a{stroke-linejoin%3Around%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20transform%3D%22translate%28-698.887%201445.25%29%20rotate%28-90%29%22%3E%3Cline%20class%3D%22a%22%20x2%3D%2215.998%22%20transform%3D%22translate%281428.189%20706.193%29%22%2F%3E%3Cpath%20class%3D%22b%22%20d%3D%22M4174.093%2C2728.714l6.776%2C6.776-6.776%2C6.775%22%20transform%3D%22translate%28-2736.68%20-2029.297%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)
}