/* ===============================
  全体設定
=================================*/

/* #Features, #Pricing, #Faq {
  scroll-margin-top: 80px;
} */

html {
  scroll-behavior: auto !important;
}


.container {
  max-width: 1200px;
}
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color :#333;
  line-height: 1.7;
  padding-top: 70px;
}

.section-padding {
  padding: 50px 0;
}

.section-title-en {
  color: #2e8b7d;
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding: 10px;
  background: #cfe065;
  padding: 5px;
  display: inline-block;
  font-size: 11px;
}

.section-title-ja {
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 50px;
}

h5 {
  font-size: 1rem;
}

.header-others {
  background: linear-gradient(90deg, #399679, #1d7171);
  padding: 74px 0 30px;
  color: #fff;
}
.header-others p {
  font-size: .9rem;
}

a.link-targetblank[target="_blank"]::after {
    content: url(../img/icon-tab-black.png);
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    transform: scale(0.6);
}

a.whiteblank.link-targetblank[target="_blank"]::after {
    content: url(../img/icon-tab-white.png);
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    transform: scale(0.6);
}



@media (max-width: 767px) {
  #Features, #Pricing, #Faq {
    scroll-margin-top: 30px; /* 固定ヘッダーの高さに合わせる */
  }

  .header-others {
    background: linear-gradient(90deg, #399679, #1d7171);
    padding: 26px 0 10px;
    color: #fff;
    margin-top: 0;
  }
}

/* ===============================
  ヘッダー
=================================*/

/* ヘッダー固定 & スムーズ隠す */
nav.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  transition: top 0.3s;
}

.navbar {
  padding :18px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
}

.btn-primary {
  background: #2e8b7d;
  border: none;
}

.btn-primary:hover {
  background: #256f64;
}

.btn-outline-secondary {
  padding: 10px 20px;
  border-radius: 28px;
}

.btn-outline-secondary__border_gr {
  border: solid 1px #0e8989;
  color: #0e8989;
}

.btn-outline-secondary__border_gr:hover {
  background-color: #0e8989;
  color: #fff;
  border-color: #0e8989;
  transition: 0.3s;
}

.btn-outline-secondary__border_gr_img {
  height: 20px;
}

.btn-outline-secondary__gr {
  background: #0e8989;
  border: solid 1px #0e8989;
  color: #fff;
}

.btn-outline-secondary__gr:hover {
  background-color: #256f64;
  border: solid 1px #256f64;
}

.btn-outline-secondary__gr_img {
  height: 15px;
}

.btn-outline-secondary__border_gr i {
  font-size: 22px;
}


/* ハンバーガー */
.navbar-toggler {
  border: none;
  padding: 0;
}

.hamburger {
  width: 30px;
  height: 22px;
  position: relative;
}

.hamburger span{
  position: absolute;
  width: 100%;
  height: 2px;
  background: #333;
  left: 0;
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0;}
.hamburger span:nth-child(2) { top: 10px;}
.hamburger span:nth-child(3) { bottom: 0;}


/* 開いた時 */

.hamburger.open span:nth-child(1) {
  transform:rotate(45deg);
  top: 10px;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform:rotate(-45deg);
  top: 10px;
}

/* ハンバーガークリック時の枠を消す */

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none;
}


/* ===============================
SPメニュー 右スライド
=================================*/

@media (max-width: 991px) {

  #nav {
    position: fixed;
    top: 68px;
    right: 0;
    width: 85%;
    max-width: 320px;
    /* height: calc(100vh - 80px); */
    background: #fff;
    /* transform: translate3d(100%,0,0);
      transition: transform .01s ease-out; */

      transform: translate3d(0,0,0); /* すでに表示位置 */
      transition: none;              /* アニメーションなし */

    will-change: transform;
    backface-visibility: hidden;
    z-index: 1040;
    padding: 0;
  }

  .navbar {
    padding :15px 0 5px;
  }

  /* 開いた状態 */ 
  #nav.show {
    display: block;  /* パッと表示 */
    /* transform: translate3d(0,0,0); */
  }

  .navbar-toggler {
    position: relative;
    z-index: 1100;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    z-index: 1000;
    cursor: pointer;
  }

  body.menu-open .menu-overlay {
    opacity: 1;
    visibility: visible;
  }

  /* スクロール禁止 */
  body.menu-open {
    overflow: hidden;
  }

  .item-space {
    margin-top: 20px;
  }

  .nav-item {
    padding: 0 0 0 45px;
  }

  .company-link {
    padding: 10px 10px 10px 45px;
    background: #eee;
    margin-top: 20px;
  }

  .btn-outline-secondary__gr {
    background: #0e8989;
    border: solid 1px #0e8989;
    color: #fff;
    width: 85%;
    justify-content: center;
  }

  .btn-outline-secondary__border_gr {
    border: solid 1px #0e8989;
    color: #0e8989;
    width: 85%;
    justify-content: center;
  }
}


/* ===============================
  メインビジュアル
=================================*/
/* .main-visual{
  color: #fff;
  padding: 60px 0 20px;
  text-align: center;
  background-image: url("img/main_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  height: 674px;
} */

.main-visual {
  color: #fff;
  background: url("../img/main_bg.png") center/cover no-repeat;
  min-height: 640px;
  display: flex;
  align-items: flex-start;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 80px;
}

.main-visual .container {
  max-width: 900px;
}

.main-visual h2 {
  font-size: clamp(20px, 5vw, 36px);
  line-height: 1.5;
  margin: 0;
}

.main-visual p {
  opacity: .9;
}

/* ===============================
  カード共通
=================================*/
.card-custom {
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  text-align: center;
  background: #fff;
  transition: .3s;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border: solid 1px #ddd;
  height: 100%;
  width: 100%;
}
/* .card-custom:hover{
  transform: translateY(-6px);
} */

.card-custom .card-header {
  background: #ddd;
  padding: 10px;
  border-radius: 10px 10px 0 0;
}

.card-header__solution {
  background: #0e8989;
  padding: 10px;
  color: #fff;
  border-radius: 10px 10px 0 0;
}

.text-start {
  font-size: .9rem;
}

.card-footer {
  padding: 30px 20px 10px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-footer figure {
  text-align:center;
  margin-bottom:20px;
}

.card-footer img {
  height: 120px;
  width: auto;
  object-fit:contain;
}

.badge-number {
  display: inline-block;
  background: #fff;
  color: #333;
  padding: 4px 12px;
  border-radius: 10px;
  font-size: .75rem;
  /* font-weight: 700; */
  margin-bottom: 15px;
}

/* カードした矢印 */
.arrow-row {
  margin: 10px 0;
}

.arrow-img {
  width: 60px;
  height: auto;
}

/* 矢印の上に重なるテキスト */
.solution_text {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0e8989;
  color: #fff;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 1.4rem;
  width: max-content;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  min-width: 960px;
}


/* ===============================
  SP向け (スマホ: 767px以下)
=================================*/
@media (max-width: 767px) {

  h2 {
    font-size: 1.2rem;
  }

  h5 {
    font-size: .8rem;
  }

  .main-visual {
    color: #fff;
    background: url("../img/main_bg_sp.png") center / cover no-repeat;
    height: 42vh;   /* 画面高さの60% */
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding-top: 35px;
  }

  .section-title-ja {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .text-start {
    font-size: 0.8rem;
  }
  .card-footer {
    padding: 10px;
  }
  .card-footer img {
    height: 80px;
  }
  .card-custom h5 {
    letter-spacing: -0.08em;
  }

  .solution_text {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0e8989;
    color: #fff;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 1.2rem;
    width: max-content;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    min-width: min-content;
  }
}



/* ===============================
  カード　リクエストワイズでできること
=================================*/

/* タイトル・テキスト */
.card-title {
  font-weight: 700;
  margin-bottom: 15px;
}

.card-text {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

/* ボタン */
.btn-teal {
  background-color: #2e8b7d;
  color: #fff;
  border-radius: 28px;
  padding: 10px 25px;
  text-decoration: none;
  display: inline-block;
}

.btn-teal:hover {
  background-color: #256f64;
  color: #fff;
}

/* 画像ボーダーをレスポンシブに調整 */
.card-img-wrapper {
  width: 100%;
  max-width: 320px; /* 最大幅は320pxまで */
  aspect-ratio: 16 / 9; /* 高さを幅に比例させる */
  border: 1px solid #ccc;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px auto; /* 横中央＆下マージン */
  padding: 10px; /* 余白は少なめ */
}

.card-img-wrapper img {
  width: 100%;
  height: 70%;
  object-fit: contain;
}

.section-text {
  font-weight: normal;
  font-size: 1.0rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .row.text-center.g-4 > .col-md-4:nth-child(n+4) { /* カードの4,5,6の上部に余白 */
    margin-top: 4rem; /* 任意の余白量 */
  }
}

@media (max-width: 767.98px) {

  .card-img-wrapper {
    height: 140px;
    padding: 5px;
  }

  .card-img-wrapper img {
    width: 70%;
    height: 70%;
    object-fit: contain;
  }

  .btn-teal {
    background-color: #2e8b7d;
    color: #fff;
    border-radius: 28px;
    padding: 10px 25px;
    text-decoration: none;
    display: inline-block;
    font-size: 0.8rem;
  }

  .card-text {
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
  }

  .section-text {
    font-weight: normal;
    font-size: 0.8rem;
    margin-bottom: 0;
  }

  .features-cord {
    padding: 0;
  }

}

/* ===============================
  カード　オーダーメイド型クラウド
=================================*/
.custom-card {
  border: 2px solid #b7cf9b;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.custom-card .icon {
  margin: 0 auto 15px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.7px;
}

.custom-card p {
  font-size: 0.9rem;
  text-align: left;
}

/* Plus sign */
.plus-sign {
  font-size: 2rem;
  font-weight: 700;
  color: #b7cf9b;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* レスポンシブ対応：スマホでは縦並び */
/* @media (max-width: 767.98px) {
  .plus-sign {
    display: none;
  }
} */

@media (max-width:768px) {
  .custom-card {
    margin: 0 10px;
  }
  .custom-card p {
    margin-bottom: 0;
  }
}

/* ===============================
  料金テーブル
=================================*/

.price-box {
  border: 1px solid #dee2e6;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* GRID */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
}

/* セル */
.price-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #dee2e6;
  text-align: left;
  padding: 48px 100px;
}

/* 左セル */
.price-left {
  background: #f5f6f8;
  font-size: 20px;
  font-weight: 600;
}

/* 右セル */
.price-right {
  border-left: 1px solid #dee2e6;
}

/* 最終行border削除 */
.price-grid .price-cell:nth-last-child(-n+2){
  border-bottom: none;
}

/* 価格行 */
.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.price-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.price-number {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.price-yen {
  font-size: 18px;
  font-weight: 600;
}

/* 補足 */
.price-sub {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* 注意書き */
.price-notes {
  margin-top: 20px;
  font-size: 0.8rem;
  line-height: 1.8;
  color: #666;
  text-align: left;
}
.price-notes p {
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 0;
}


@media (max-width:768px) {

  .price-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .price-right {
    border-left: none;
  }

  .price-cell {
    padding: 20px 10px;
  }
  .price-number {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
  }
  .price-left {
    background: #f5f6f8;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
  }
  .price-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
    justify-content: center;
  }
  .price-sub {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    text-align: center;
  }
  .price-cell.price-left{
    padding: 20px;
  }
}


/* ===============================
  料金テーブル　オプション
=================================*/
.option-table-wrap {
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.option-table {
  width:100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 16px;
}

/* header */
.option-table th {
  background: #fcfaef;
  font-weight: 600;
  text-align: left;
  padding: 22px 50px;
  border-bottom: 1px solid #e3e3e3;
  border-right: 1px solid #e3e3e3;
}

.option-table th:last-child {
  border-right: none;
}

/* body cell */
.option-table td {
  padding: 22px 50px;
  vertical-align: middle;
  border-bottom: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  line-height: 1.7;
  text-align: left;
}

.option-table td:last-child {
  border-right: none;
}

/* Zebra row */
.option-table tbody tr:nth-child(even) {
  background: #f7f7f7;
}

/* Hover */
/* .option-table tbody tr:hover {
  background: #eef6ff;
  transition: background .2s ease;
} */

/* 数字を揃える */
.option-table td:last-child {
  font-feature-settings: "tnum";
  letter-spacing: .02em;
}

/* 最終行 */
.option-table tbody tr:last-child td {
  border-bottom: none;
}

/* Note */
.option-note {
  margin-top: 18px;
  font-size: 0.8rem;;
  line-height: 1.7;
  color: #666;
  text-align: left;
}
.option-note p {
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 0;
}

@media (max-width:768px) {

  .option-table th,
  .option-table td {
    padding: 16px 18px;
    font-size: 14px;
  }

}




/* ===============================
  FAQ
=================================*/

.faq {
  border-top: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 20px;
  cursor: pointer;
  font-weight: 600;
  gap: 20px; /* テキストと＋の余白 */
}

.faq-q p {
  margin: 0;
  flex: 1;           /* テキスト領域を可変 */
  padding-right: 10px;
  text-align: left;
  font-size: 0.9rem;
}

.faq-a {
  display: none;
  padding: 0 20px 28px 20px;
}

.faq-a p {
  margin: 0;
  color: #246f64;
  line-height: 1.8;
  text-align: left;
}

/* ＋ − アイコン */

.faq-icon {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #cfcfcf;
}

.faq-icon::before {
  width: 100%;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 3px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

/* 開いた時（−に変化） */

.faq-item.active .faq-icon::after {
  display: none;
}


.accordion-button {
  font-weight: 600;
}
.accordion-button:not(.collapsed) {
  background: #e8f5f3;
  color: #2e8b7d;
}


/* ===============================
  背景色切替
=================================*/
.bg-light-section {
  background: #f4f7f6;
}
.bg-soft-green {
  background: #eef6f4;
}
.bg-cream {
  background: #fcfaef;
}


/* ===============================
  フッター
=================================*/

/* 固定CTA */
.cta-fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(230,230,230,0.85);
  backdrop-filter: blur(6px);
  padding: 18px 0;
  z-index: 1000;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* CTAボタン */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0e8989;
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.cta-btn:hover {
  background: #0b6f6f;
  color: #fff;
}

/* .cta-btn img {
  height: 18px;
} */

/* アイコン */
/* .btn-outline-secondary__gr_img {
  height: auto;
} */

/* フッター */
.site-footer {
  background: linear-gradient(90deg, #399679, #1d7171);
  padding: 26px 0;
  color: #fff;
  margin-top: 90px;
}

.footer-inner {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 38px;
}


/* ナビ */
.footer-nav {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0 40px;
  padding: 0;
}

.footer-nav li {
  position: relative;
}

.footer-nav li::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.4);
}

.footer-nav li:last-child::after {
  display: none;
}

.footer-nav a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.footer-nav a:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
/* アイコン */
.btn-outline-secondary__gr_img {
  width: 20px;
  height: auto;
}
}


/* コピーライト */
.footer-copy {
  margin-left: auto;
  font-size: 14px;
  opacity: 0.9;
}


/* ===============================
スマホ
=============================== */

@media (max-width: 767px) {

  .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-nav li::after {
    display: none;
  }

  .cta-btn {
    width: 80%;
    max-width: 320px;
  }

  .site-footer {
    background: linear-gradient(90deg, #399679, #1d7171);
    padding: 15px 0 5px;
    color: #fff;
    margin-top: 90px;
  }
  .cta-btn img {
    height: auto;
  }

  .footer-copy {
    margin-left: 0;
    font-size: 14px;
    opacity: 0.9;
    text-align: center;
  }
}




/* ===============================
application_terms
=============================== */
  .section_application_terms {
    padding-bottom: 50px;
  }
  .application_terms p, .application_terms li {
    font-size: .9rem;
    margin-bottom: 0px;
  }
  .application_terms h5 {
    font-weight: bold;
  }
  .application_terms p + p {
    margin-top: 30px;
  }

  @media (max-width: 767px) {
    .application_terms h5 {
      font-size: 1rem;
    }
  }

/* ===============================
privacy_policy
=============================== */
  .section_privacy_policy {
    padding-bottom: 50px;
  }
  .privacy_policy p, .privacy_policy li {
    font-size: .9rem;
    margin-bottom: 0px;
  }
  .privacy_policy h5 {
    font-weight: bold;
  }
  .privacy_policy .privacy_policy_txt.privacy_policy_txt__txtMb {
    margin-bottom: 30px;
  }
  .privacy_policy .privacy_policy_list_number {
    padding-left: 2em;
  }
  .privacy_policy .privacy_policy_list_number.privacy_policy_list_number__Roman {
    list-style-type: lower-roman;
  }
  .privacy_policy .privacy_policy_list_number .privacy_policy_list_number_alpha {
    list-style-type: lower-alpha;
    padding-left: 1.2rem;
  }

  .privacy_policy .privacy_policy_link {
    color: #000;
    text-decoration: underline;
  }

  @media (max-width: 767px) {
    .privacy_policy h5 {
      font-size: 1rem;
    }
  }

/* ===============================
site_policy
=============================== */
  .section_site_policy {
    padding-bottom: 50px;
  }
  .site_policy p, .site_policy li {
    font-size: .9rem;
    margin-bottom: 0px;
  }
  .site_policy h5 {
    font-weight: bold;
  }
  .site_policy p + p {
    margin-top: 30px;
  }
  .site_policy p + .site_policy_logo_adobe {
    margin-top: 20px;
  }
  .site_policy .site_policy_link {
    color: #000;
    text-decoration: underline;
  }
  .site_policy .site_policy_link:hover {
    opacity: 0.8;
  }

  @media (max-width: 767px) {
    .site_policy h5 {
      font-size: 1rem;
    }
  }



/* ===============================
terms
=============================== */
  .section_terms {
    padding-bottom: 50px;
  }
  .terms p, .terms li {
    font-size: .9rem;
    margin-bottom: 0px;
  }
  .terms h5 {
    font-weight: bold;
  }
  .terms .terms_txt {
    padding-left: 1.1em;
    text-indent: -1.1em;
  }
  .terms .terms_txt.terms_txt__txtIndent {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
  .terms .terms_txt.terms_txt__txtMb {
    margin-bottom: 30px;
  }
  .terms_inner {
    padding-left: 1em;
  }
  .terms_inner .terms_inner_txt .terms_inner_ttl {
    font-weight: bold;
  }
  .terms_inner .terms_inner_txt + .terms_inner_txt {
    margin-top: 30px;
  }
  .terms_inner.terms_inner__paddingNone {
    padding-left: 0em;
  }
  .terms_inner .terms_list {
    padding-left: 0.3em;
    text-indent: -0.3em;
    margin-bottom: 0px;
  }
  .terms_inner li{
    list-style: none;
  }
  .terms_inner .terms_list .terms_list_txt {
    padding-left: 2.6em;
    text-indent: -2.6em;
  }
  .terms .terms_list_number {
    padding-left: 1.1em;
  }

  @media (max-width: 767px) {
    .terms h5 {
      font-size: 1rem;
    }
  }

/* ===============================
terms
=============================== */
.form_btn {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.form_btn .form_btn_type {
  padding: 20px;
}

.btn_home {
  display: block;
  margin: 0 auto;
  width: fit-content;
}