@charset "UTF-8";

/* デザイン崩れ調整 */
.nb{
    display: block;
}
.pc-menu__logo a,
.ctaBox{
  display: none;
}
p{
  padding: 0;
}

@media screen and (max-width: 1023px) {
    h1 {margin-top: 0;}
}
@media screen and (max-width: 768px) {
  .hero img{
    margin: auto;
  }
}


/* レスポンシブ設定 */
@media screen and (min-width: 321px) {
  .ssp {
    display: none;
  }
}
@media screen and (min-width: 541px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .tb {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .nb {
    display: none;
  }
}
/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #017cde 0%, #00ebbc 100%);
  min-height: 100vh;
}

h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-top: 0;
  margin-bottom: 50px;
}
@media screen and (max-width:768px) {
  h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width:540px) {
  h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 25px;
  }
}

p {
  font-size: 1.2rem;
}
@media screen and (max-width:768px) {
  p {
    font-size: 1rem;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.sub-container {
  max-width: 800px;
  margin: 0 auto;
  width: 90%;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: url(../img/key-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero img.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 180px;
}
@media screen and (max-width:540px) {
  .hero img.logo {
    width: 120px;
  }
}
.hero .container {
  max-width: 1520px;
  padding: 0;
}
.hero .hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  min-height: 1000px;
}
@media screen and (max-width:768px) {
  .hero .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    padding: 120px 0 0;
    justify-content: flex-end;
    min-height: auto;
  }
}
@media screen and (max-width:540px) {
  .hero .hero-content {
    gap: 5px;
  }
}
.hero .hero-content .hero-image {
  flex: 1;
  max-width: 400px;
}
.hero .hero-content .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
@media screen and (max-width:780px) {
  .hero .hero-content .hero-image img {
    width: 70%;
  }
}
@media screen and (max-width:540px) {
  .hero .hero-content .hero-image img {
    width: 50%;
  }
}
.hero .hero-content .hero-text {
  width: 50%;
  color: white;
}
@media screen and (max-width:768px) {
  .hero .hero-content .hero-text {
    flex: 0;
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .hero .hero-content .hero-text img {
    width: 400px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width:540px) {
  .hero .hero-content .hero-text img {
    width: 80%;
    margin-bottom: 20px;
  }
}
.hero .hero-content h1.hero-title {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
  font-size: 55px;
  margin-top: 0;
}
@media screen and (max-width:768px) {
  .hero .hero-content h1.hero-title {
    font-size: 50px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width:540px) {
  .hero .hero-content h1.hero-title {
    font-size: 35px;
  }
}
.hero .hero-content p.content {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
  font-size: 22px;
}
@media screen and (max-width:540px) {
  .hero .hero-content p.content {
    font-size: 20px;
  }
}
.hero .hero-content p.text {
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 30px;
  font-size: 18px;
}
@media screen and (max-width:780px) {
  .hero .hero-content p.text {
    width: 80%;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width:540px) {
  .hero .hero-content p.text {
    font-size: 15px;
  }
}

.steps-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.steps-section::before {
  position: absolute;
  content: "";
  width: 392px;
  height: 354px;
  left: 0;
  bottom: 0;
  background: url(../img/step-gz.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.steps-section::after {
  position: absolute;
  content: "";
  width: 420px;
  height: 330px;
  top: 0;
  right: 0;
  background: url(../img/plan-gz.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width:540px) {
  .steps-section::before {
    width: 200px;
    height: 182px;
  }
  .steps-section::after{
    width: 200px;
    height: 155px;
  }
}

.steps-section .step-card {
  background: white;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  padding: 15px 25px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  position: relative;
}
@media screen and (max-width:540px) {
  .steps-section .step-card {
    padding: 15px;
  }
}
.steps-section .step-card .step-number {
  width: 83px;
  height: 83px;
  background: #00a59c;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
}
@media screen and (max-width:540px) {
  .steps-section .step-card .step-number {
    width: 70px;
    height: 70px;
  }
}
.steps-section .step-card .step-number .step-label {
  font-size: 18px;
  line-height: 1;
}
@media screen and (max-width:540px) {
  .steps-section .step-card .step-number .step-label {
    font-size: 15px;
  }
}
.steps-section .step-card .step-number .step-num {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width:540px) {
  .steps-section .step-card .step-number .step-num {
    font-size: 25px;
  }
}
.steps-section .step-card .step-title {
  font-size: 23px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0;
}
@media screen and (max-width:540px) {
  .steps-section .step-card .step-title {
    font-size: 18px;
    margin-bottom: 0;
    text-align: left;
  }
}
.steps-section .arrow {
  width: 0;
  height: 0;
  border-left: 19.5px solid transparent;
  border-right: 19.5px solid transparent;
  border-top: 13.5px solid #00a59c;
  margin: 0 auto 9px;
}

.steps-section p.center {
  margin-bottom: 35px;
}

.faq {
  background: #E1F8F7;
  padding: 80px 0;
}
.faq h2 {
  color: #00A59C;
  text-align: center;
}
.faq .aco-block {
  margin-bottom: 30px;
}
.faq .aco-last {
  margin-bottom: 0;
}
.faq .aco-content {
  display: flex;
  align-items: center;
}
@media screen and (max-width:540px) {
  .faq .aco-content {
    align-items: flex-start;
    gap: 3px;
  }
}
.faq .aco-content-left {
  margin-right: 15px;
}
@media screen and (max-width:540px) {
  .faq .aco-content-left {
    margin-right: 5px;
  }
}
.faq .aco-content-left p {
  font-size: 40px;
  line-height: 1;
}
.faq .aco .content-q {
  background-color: #ffffff;
  padding: 17px 25px;
  border-radius: 5px;
}
@media screen and (max-width:540px) {
  .faq .aco .content-q {
    padding: 15px;
    padding-right: 30px;
  }
}
@media screen and (max-width:320px) {
  .faq .aco .content-q {
    padding: 15px 20px;
  }
}
.faq .aco .content-q.q {
  position: relative;
}
.faq .aco .content-q.q::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #00A59C transparent transparent transparent;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: all 0.5s;
}
@media screen and (max-width:540px) {
  .faq .aco .content-q.q::before {
    right: 15px;
    border-width: 10px 7px 0 7px;
  }
}
.faq .aco .content-q.q:hover {
  cursor: pointer;
}
.faq .aco .content-q.q.close::before {
  border-width: 0 10px 15px 10px;
  border-color: transparent transparent #00A59C transparent;
  transition: all 0.7s;
}
@media screen and (max-width:540px) {
  .faq .aco .content-q.q.close::before {
    border-width: 0 7px 10px 7px;
  }
}
.faq .aco .content-q .aco-content-left p {
  font-size: 35px;
  color: #00A59C;
}
@media screen and (max-width:540px) {
  .faq .aco .content-q .aco-content-left p {
    font-size: 25px;
  }
}
.faq .aco .content-q .aco-content-right p {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width:540px) {
  .faq .aco .content-q .aco-content-right p {
    font-size: 16px;
  }
}
.faq .aco .content-a {
  padding: 25px 25px 0;
  align-items: flex-start;
}
@media screen and (max-width:540px) {
  .faq .aco .content-a {
    padding: 25px;
  }
}
@media screen and (max-width:320px) {
  .faq .aco .content-a {
    padding: 20px;
  }
}
.faq .aco .content-a .aco-content-left p {
  font-size: 30px;
  color: #00AECF;
}
@media screen and (max-width:540px) {
  .faq .aco .content-a .aco-content-left p {
    font-size: 27px;
  }
}
.faq .aco .content-a .aco-content-right p {
  font-size: 18px;
  line-height: 27px;
  color: #333333;
}
@media screen and (max-width:540px) {
  .faq .aco .content-a .aco-content-right p {
    font-size: 16px;
  }
}
.faq .aco .qa-last {
  margin-bottom: 0;
}

/* Features Section */
.features {
  padding: 0 0 80px;
  text-align: center;
}
@media screen and (max-width:768px) {
  .features {
    padding-top: 80px;
  }
}
.features .features-subtitle {
  color: white;
  margin-bottom: 60px;
  opacity: 0.9;
}
@media screen and (max-width:540px) {
  .features .features-subtitle {
    margin-bottom: 35px;
  }
}
.features .features-grid {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
@media screen and (max-width:540px) {
  .features .features-grid {
    gap: 5px;
  }
}
.features .features-grid .feature-card {
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:540px) {
  .features .features-grid .feature-card {
    width: 165px;
    height: 165px;
  }
}
.features .features-grid .feature-card .feature-card-inner {
  width: 250px;
  height: 250px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width:540px) {
  .features .features-grid .feature-card .feature-card-inner {
    width: 155px;
    height: 155px;
  }
}
.features .features-grid .feature-card .feature-card-inner p {
  font-weight: bold;
  color: #656565;
  line-height: 1.5;
  font-size: 14px;
}
@media screen and (max-width:540px) {
  .features .features-grid .feature-card .feature-card-inner p {
    line-height: 1.3;
    font-size: 12px;
  }
}
.features .features-grid .feature-card .feature-card-inner p.feature-text {
  font-weight: bold;
  color: #02a59c;
  line-height: 1.3;
  font-size: 20px;
  margin-bottom: 12px;
}
@media screen and (max-width:540px) {
  .features .features-grid .feature-card .feature-card-inner p.feature-text {
    font-size: 15px;
    margin-bottom: 9px;
  }
}

/* =========================
  Comparison Section（白カードグリッド）
========================= */
.comparison{
  padding: 70px 0;
}
.comparison .container{
  padding: 0;
}
@media screen and (max-width:540px) {
  .comparison{
    padding: 35px 0;
  }
}

@media screen and (max-width:540px) {
  .comparison h2{
    margin-bottom: 25px;
  }
}

/* featureGrid（7枚でも増えてもOK） */
.featureGrid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  align-items: stretch;
}
@media screen and (max-width:780px) {
  .featureGrid{
    justify-content: left;
  }
}
@media screen and (max-width:540px) {
  .featureGrid{
    gap: 25px;
    justify-content: center;
  }
}

/* カード */
.featureCard{
  position:relative;
  background: white;
  border-radius: 10px;
  padding: 25px 20px;
  max-width: calc((100% - 18px * 3) / 4);
}
@media screen and (max-width:780px) {
  .featureCard{
    max-width: calc((100% - 18px * 3) / 2);
  }
}
@media screen and (max-width:540px) {
  .featureCard{
    max-width: 100%;
  }
}

.featureCard img{
  width: 112px;
  height: auto;
  margin: 10px auto;
}
@media screen and (max-width:540px) {
  .featureCard img{
    margin: 0px auto;
  }
}

/* もし各カードにアイコン入れる場合の共通（任意） */
.featureCard__icon{
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #f1fbff;
  display:grid;
  place-items:center;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}
.featureCard__icon img{
  width: 26px;
  height: 26px;
  object-fit: contain;
  display:block;
}

/* タグ */
.featureCard__tag{
  display: none;
}
@media screen and (max-width:540px) {
  .featureCard__tag{
    display: block;
    position: absolute;
    top: 10px;
    left: -15px;
    transform: translateX(50%);
    font-weight: 800;
    color: #1DBCB2;
    background: #EBF6F5;
    border-radius: 999px;
    font-size: 13px;
    width: 55px;
    height: 55px;
    padding: 14px 8px;
  }
  .yellow .featureCard__tag{
    color: #EBBE2A;
    background: #fbf4de;
  }
  .blue .featureCard__tag{
    color: #137ADF;
    background: #eaf1fc;
  }
  .red .featureCard__tag{
    color: #F0AF6C;
    background: #fcf0e5;
  }
}
.featureCard__tag span{
  font-size: 18px;
}

.featureCard__title{
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  color: #1DBCB2;
  font-weight: 900;
}
.yellow .featureCard__title{
  color: #EBBE2A;
}
.blue .featureCard__title{
  color: #137ADF;
}
.red .featureCard__title{
  color: #F0AF6C;
}
@media screen and (max-width:540px) {
  .featureCard__title{
    margin-bottom: 0;
  }
}

.featureCard__desc{
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 1.5;
  color: #898989;
  min-height: 140px;
}
@media screen and (max-width:540px) {
  .featureCard__desc{
    min-height: auto;
    font-size: 14px;
  }
}

/* メリット枠 */
.featureCard__box{
  background: #f2fff9;
  border-radius: 5px;
  padding: 12px;
  min-height: 200px;
}
@media screen and (max-width:540px) {
  .featureCard__box{
    min-height: auto;
  }
}
.yellow .featureCard__box{
  background: #fbf4de;
}
.blue .featureCard__box{
  background: #eaf1fc;
}
.red .featureCard__box{
  background: #fcf0e5;
}

.featureCard__boxTitle{
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 900;
  color: #1DBCB2;
}
.yellow .featureCard__boxTitle{
  color: #EBBE2A;
}
.blue .featureCard__boxTitle{
  color: #137ADF;
}
.red .featureCard__boxTitle{
  color: #F0AF6C;
}

.featureCard__list{
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.65;
  color: #1DBCB2;
}
.yellow .featureCard__list{
  color: #EBBE2A;
}
.blue .featureCard__list{
  color: #137ADF;
}
.red .featureCard__list{
  color: #F0AF6C;
}
.featureCard__list li{
  line-height: 1.4;
  list-style: disc;
  font-size: 14px;
  margin-bottom: 10px;
}

/* 「is-active」だけ詳細カード扱いにするなら */
.featureCard.is-active{
  position: relative;
}

/* =========================
  Cases Section（活用事例）
========================= */
.section-case {
  padding: 70px 0;
}
@media screen and (max-width:540px) {
  .section-case {
    padding: 35px 0;
  }
}

.caseList{
  display:flex;
  flex-direction:column;
  gap: 70px;
  color: white;
}
@media screen and (max-width:540px) {
  .caseList{
    gap: 35px;
  }
}

.case {
  width: fit-content;
  position: relative;
}
.case img.visual{
  display: none;
}
@media screen and (max-width:540px) {
.case img.visual{
  display: block;
  height: 200px;
  width: fit-content;
  margin: 0 auto 15px;
}
}

.case::after {
  position: absolute;
  content: "";
  width: 162px;
  height: 281px;
  right: -250px;
  top: 0;
}
@media screen and (max-width:780px) {
  .case::after {
    right: -130px;
    top: -155px;
  }
}
@media screen and (max-width:540px) {
  .case::after {
    display: none;
  }
}
.case.case01::after{
  background: url(../img/case-ec.png) no-repeat center/100%;
}
.case.case03::after{
  width: 246px;
  height: 273px;
  right: -290px;
  background: url(../img/case-estate.png) no-repeat center/100%;
}
@media screen and (max-width:780px) {
  .case.case03::after{
    right: -250px;
    top: -30px;
  }
}
/* 交互配置 */
.case.case02{
  margin-left: auto;
}
.case.case02::after{
  width: 258px;
  height: 265px;
  left: -290px;
  background: url(../img/case-saas.png) no-repeat center/100%;
}
@media screen and (max-width:780px) {
  .case.case02::after{
    top: -10px;
  }
}

.case__badge{
  padding: 4px 10px;
  border-radius: 50px;
  background: white;
  margin-bottom: 10px;
  display: flex;
  width: fit-content;
  font-size: 15px;
  gap: 4px;
  align-items: center;
}
.case__badge img{
  width: 18px;
  height: 18px;
 }
 @media screen and (max-width:540px) {
  .case__badge img{
    width: 14px;
    height: 14px;
   }
}
.case__badge p{
  color: #01A59C;
  line-height: 1;
  font-size: 16px;
}
@media screen and (max-width:540px) {
  .case__badge p{
    font-size: 14px;
  }
}
.case__title{
  margin: 0 0 25px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing:.02em;
}
@media screen and (max-width:540px) {
  .case__title{
    margin: 0 0 10px;
    font-size: 22px;
  }
}

/* dl内の行 */
.case__meta{
  margin: 0;
}

.case__row{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: center;
  margin: 15px 0;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width:540px) {
  .case__row{
    gap: 10px;
    margin: 8px 0;
    grid-template-columns: 60px 1fr;
    font-size: 14px;
  }
}
.case__row.st{
  align-items: start;
}
.case__row:last-child{
  margin-bottom: 0;
}
.case__row dt{
  padding: 4px;
  text-align: center;
  border-radius: 5px;
  line-height: 1;
  font-size: 16px;
  border: solid 1px white;
}
@media screen and (max-width:540px) {
  .st{
    align-items: start;
  }
  .st .case__row dt{
    margin-top: 3px;
    font-size: 14px;
  }
}

.case__row dd{
  margin: 0;
  line-height: 1.5;
}

/* 右側イラスト */
.case__media{
  display:flex;
  justify-content:center;
}

/* imgで置き換える場合（推奨） */
.case__media img{
  width: 320px;
  max-width: 100%;
  height: auto;
  display:block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.18));
}

/* =========================
  Responsive
========================= */
@media (max-width: 980px){
  .featureGrid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .case, .case--reverse{
    grid-template-columns: 1fr;
  }
  .case__media{
    justify-content:flex-start;
  }
}

@media (max-width: 560px){
  .tileGrid{
    grid-template-columns: 1fr;
  }
  .featureGrid{
    grid-template-columns: 1fr;
  }
  .featureCard{
    min-height: 140px;
  }
  .case__media img,
  .case__illus{
    width: 100%;
  }
}

.flex {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 780px) {
  .flex {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 540px) {
  .flex {
    gap: 20px;
  }
  .btn {
      width: 100%;
  }
}
.btn.info {
  background: none;
  padding: 0;
}

.btn.info a{
  margin: 0;
}
@media screen and (max-width: 540px) {
  .btn.info a{
    width: 100%;
  }
}
.btn a {
  display: block;
  text-align: center;
  font-weight: bold;
  position: relative;
  letter-spacing: 0.03em;
  padding: 20px 14px !important;
  transition: 0.3s ease;
  margin: auto;
  border:  solid 2px white;
  background: #EBBE2A;
  color: #fff;
}
.btn a::after {
  border-color: transparent transparent transparent white;
}
@media screen and (max-width: 767px) {
  .btn a {
      width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .btn a {
      border-radius: 6px;
      font-size: 14px;
      padding: 14px;
  }
}

.btn.n2 a {
  background: #137ADF;
}


/* ---------------------------
  セクション全体（背景色は画像寄せ）
--------------------------- */
.steps-section{
  --bg: #13b6bf;     /* 背景の青緑 */
  --line: #2aa7b0;   /* 罫線 */
  --left: #0d6f78;   /* 左カラム */
  --white: #fff;
  background: var(--bg);
  color: #fff;
}

.steps-section .sub-container{
  max-width: 920px;
  margin: 0 auto;
}


/* ---------------------------
  料金ブロック（あなたのHTMLに合わせる）
--------------------------- */
.pricingBox__head{
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 8px 0 12px;
}
@media screen and (max-width:540px) {
  .pricingBox__head{
    gap: 5px;
    flex-wrap: wrap;
    margin: 0px 0 5px;
  }
}
.pricingBox__head p{
  margin-bottom: 0;
}

.pricingBox__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid white;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width:540px) {
  .pricingBox__badge{
    padding: 4px 12px;
    font-size: 14px;
  }
}

.pricingBox__title{
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width:540px) {
  .pricingBox__title{
    font-size: 14px;
    text-align: left;
  }
}

/* テーブル */
.pricingTable{
  background: transparent;
  overflow: hidden; /* 角丸付ける場合の保険 */
}

.pricingRow{
  display: grid;
  grid-template-columns: 260px 1fr; /* 左の幅：画像寄せ */
}
@media screen and (max-width:540px) {
  .pricingRow{
    grid-template-columns: 120px 1fr; /* 左の幅：画像寄せ */
  }
}

.pricingRow + .pricingRow{
  border-top: 2px solid var(--line);
}

.pricingCell{
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pricingCell--left{
  background: var(--left);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  border-right: 2px solid var(--line);
}
@media screen and (max-width:540px) {
  .pricingCell--left{
    font-size: 12px;
    line-height: 1.4;
  }
}

.pricingCell--right{
  background: var(--white);
  color: #111;
  font-size: 16px;
  font-weight: 900;
}
@media screen and (max-width:540px) {
  .pricingCell--right{
    font-size: 14px;
  }
}

/* 注釈 */
.pricingBox__notes{
  list-style: none;
  padding-left: 0;
  margin: 10px 0 50px;
}

.pricingBox__notes li{ text-align: left; }
@media screen and (max-width:540px) {
  .pricingBox__notes li{ font-size: 12px; }
}


/* ---------------------------
  導入ステップ（既存クラスに合わせて整える）
--------------------------- */
.steps-section p{
  margin: 0 0 10px;
  font-weight: 800;
}

.steps-section p.step__badge {
  display: block;
  width: fit-content;
  padding: 4px 12px;
  border: 1px solid white;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  margin-right: auto;
  margin-bottom: 15px;
}
@media screen and (max-width:540px) {
  .steps-section p.step__badge {
    padding: 2px 10px;
    font-size: 14px;
  }
}


/* ---------------------------
  開発者向け情報
--------------------------- */
.info {
  background: white;
  padding: 70px 0;
}
@media screen and (max-width:540px) {
  .info {
    background: white;
    padding: 40px 0;
  }
}

.info h2 {
  color: #00A59C;
}

.info p {
  color: #898989;
  font-size: 16px
}
@media screen and (max-width:540px) {
  .info p {
    font-size: 14px
  }
}
.info p.title {
  font-size: 25px;
  font-weight: bold;
  color: #00A59C;
  margin-bottom: 30px;
}
@media screen and (max-width:540px) {
  .info p.title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.info a {
  background: white;
  color: var(--link-color);
  display: block;
  width: 300px;
  padding: 18px;
  font-size: 16px;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  position: relative;
  border:  solid 2px #86D9D4;
  letter-spacing: 0.03em;
  margin: 25px 0 70px;
}
@media screen and (max-width:540px) {
  .info a {
    font-size: 14px;
    width: 100%;
    margin-bottom: 60px;
  }
}
.info a::after {
  position: absolute;
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 8px;
  border-color: transparent transparent transparent #78CDC9;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.info .flex {
  display: flex;
  align-items: stretch;
  gap: 55px;
}
@media screen and (max-width:540px) {
  .info .flex {
    gap: 35px;
  }
}

.info .flex .item {
  background: white;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 0 15px rgba(235, 246, 245, 0.65);
}
@media screen and (max-width:540px) {
  .info .flex .item {
    padding: 20px;
    box-shadow: 0 0 0 10px rgba(235, 246, 245, 0.65);
  }
}

.info .flex .item h3{
  margin-top: 0;
  text-align: center;
  color: #00A59C;
}

.info .flex .item ul {
  padding-left: 30px;
}
@media screen and (max-width:780px) {
  .info .flex .item ul {
    padding-left: 10px;
  }
}
@media screen and (max-width:540px) {
  .info .flex .item ul {
    padding-left: 30px;
  }
}
.info .flex .item ul li{
  list-style: disc;
  margin-bottom: 15px;
  font-size: 18px;
  color: #656565;
  font-weight: bold;
}
@media screen and (max-width:540px) {
  .info .flex .item ul li{
    font-size: 14px;
  }
}
.info .flex .item ul li span{
  color: #00A59C;
}