@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*style.scss*/
section {
  width: 100%;
}
section.section-odd {
  padding: 60px 0;
}
section.section-even {
  padding: 60px 0;
  background: #f4f3f3;
}
@media screen and (max-width: 920px) {
  section {
    padding: 30px;
  }
}

.pc {
  display: inline-block !important;
}
@media screen and (max-width: 920px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 920px) {
  .sp {
    display: inline-block !important;
  }
}

body {
  color: #313131;
  font-size: 16px;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
}

.section-inner, .footer-inner {
  max-width: 1090px;
  margin: auto;
}
@media screen and (max-width: 920px) {
  .section-inner, .footer-inner {
    padding: 30px;
  }
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #313131;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
header .header-inner {
  background: #fff;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-inner .logo a {
  display: flex;
  align-items: center;
}
header .header-inner .logo a span {
  font-size: 10px;
  padding-left: 16.6px;
  position: relative;
  display: block;
}
@media screen and (max-width: 920px) {
  header .header-inner .logo a span {
    display: none;
  }
}
header .header-inner .logo a span::before {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  background: #B5B5B5;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header .header-inner .btns ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 920px) {
  header .header-inner .btns ul {
    display: flex !important;
  }
  header .header-inner .btns ul.pcbtn {
    display: none !important;
  }
  header .header-inner .btns ul.spbtn {
    display: flex !important;
  }
}
header .header-inner .btns ul.spbtn {
  display: none;
}
header .header-inner .btns a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 54px;
  font-size: 11px;
}
@media screen and (max-width: 920px) {
  header .header-inner .btns a {
    width: 54px;
  }
}
header .header-inner .btns a.dl {
  background: #6B6BFA;
  border: 1px solid #6B6BFA;
  margin-right: 7px;
}
header .header-inner .btns a.dl::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background: url("../images/icon-dl.svg") no-repeat center/100%;
  margin-right: 11px;
}
@media screen and (max-width: 920px) {
  header .header-inner .btns a.dl::before {
    display: none;
  }
}
header .header-inner .btns a.dl:hover {
  background: #fff;
  color: #6B6BFA;
}
header .header-inner .btns a.dl:hover::before {
  background: url("../images/icon-dl-on.svg") no-repeat center/100%;
}
@media screen and (max-width: 920px) {
  header .header-inner .btns a.dl:hover::before {
    display: none;
  }
}
header .header-inner .btns a.contact {
  background: #90CC12;
  border: 1px solid #90CC12;
}
@media screen and (max-width: 920px) {
  header .header-inner .btns a.contact {
    margin-right: 7px;
  }
}
header .header-inner .btns a.contact::before {
  content: "";
  display: block;
  width: 10px;
  height: 8px;
  background: url("../images/icon-mail.svg") no-repeat center/100%;
  margin-right: 11px;
}
@media screen and (max-width: 920px) {
  header .header-inner .btns a.contact::before {
    display: none;
  }
}
header .header-inner .btns a.contact:hover {
  background: #fff;
  color: #90CC12;
}
header .header-inner .btns a.contact:hover::before {
  background: url("../images/icon-mail-on.svg") no-repeat center/100%;
}
@media screen and (max-width: 920px) {
  header .header-inner .btns a.contact:hover::before {
    display: none;
  }
}
header .spbtn {
  margin-left: 7px;
}
header .spbtn li.spmenubtn {
  width: 54px;
  height: 54px;
  position: relative;
  background: #f4f3f3;
  z-index: 1000;
}
header .spbtn li.spmenubtn span {
  width: 70%;
  height: 2px;
  background: #000;
  position: absolute;
  top: 20%;
  left: 15%;
  display: inline-block;
  transition: all 0.3s ease;
}
header .spbtn li.spmenubtn span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
header .spbtn li.spmenubtn span:nth-child(3) {
  bottom: 20%;
  top: auto;
}
header .spbtn li.spmenubtn.active span {
  top: 50%;
  left: 15%;
}
header .spbtn li.spmenubtn.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
header .spbtn li.spmenubtn.active span:nth-child(2) {
  display: none;
}
header .spbtn li.spmenubtn.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
header .gnavi {
  background: rgba(255, 255, 255, 0.84);
  height: 53px;
}
header .gnavi nav {
  height: 100%;
}
header .gnavi ul {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
header .gnavi ul li:not(:last-child) {
  margin-right: 55px;
}
header .gnavi ul li a {
  font-size: 18px;
  font-weight: 500;
}
header .gnavi ul li a:hover {
  color: #90CC12;
}
@media screen and (max-width: 920px) {
  header .gnavi {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    position: fixed;
    background: #90CC12;
    height: 100%;
    right: 0;
    top: 0;
    padding: 120px 30px 30px;
    transition: all 0.3s ease;
  }
  header .gnavi.open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  header .gnavi nav ul {
    display: block;
    text-align: left;
  }
  header .gnavi nav ul li:not(:last-child) {
    margin-right: 0;
  }
  header .gnavi nav ul li {
    margin-bottom: 10px;
  }
  header .gnavi nav ul li a {
    color: #fff;
  }
}


.main{
  position:relative;
  top:-53px;
}

/*==========================
MV
==========================*/

.main .mv{
  position:relative;
  background:url("../images/gate_ciam_mv.png") no-repeat center/cover;
  min-height:570px;
  padding:170px 0 60px;
  overflow:hidden;
}

.main .mv::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.3);
}

.main .mv .mv-inner{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:0 auto;
  padding:0 40px;
}

.main .mv .mv-box{
    width:800px;
    max-width:100%;
    margin-left:0;
    padding:40px;
    background:rgba(255,255,255,.75);
    text-align: left;
}

.main .mv .mv-inner h1{
  font-size:24px;
  line-height:1.6;
  font-weight:700;
  width:auto;
  margin:0;
  padding:0;
  text-shadow:0 0 20px rgba(255,255,255,.8);
}

.main .mv .mv-inner-bottom{
  display:flex;
  align-items:center;
  gap:40px;
  margin-top:30px;
}

.main .mv .mv-logo{
  flex-shrink:0;
}

.main .mv .mv-logo img{
  width:320px;
  max-width:100%;
  display:block;
}

.main .mv .mv-btn{
  display:flex;
  flex-direction:column;
  gap:18px;
  width:340px;
}

.main .mv .mv-btn a{
  display:flex;
  justify-content:center;
  align-items:center;

  width:100%;
  height:64px;

  color:#fff;
  font-size:18px;
  font-weight:700;

  border-radius:999px;
  border:2px solid;

  transition:.25s;
}

.main .mv .btn-download{
  background:#63AFED;
  border-color:#63AFED;
}

.main .mv .btn-contact{
  background:#F58220;
  border-color:#F58220;
}

.main .mv .btn-download:hover{
  background:#fff;
  color:#63AFED;
}

.main .mv .btn-contact:hover{
  background:#fff;
  color:#F58220;
}

.main .mv .mv-btn i{
  margin-left:10px;
}

/*==========================
SP
==========================*/

@media (max-width:767px){

  .main .mv{
    min-height:auto;
    padding:90px 15px 40px;
  }

  .main .mv .mv-inner{
    padding:0;
  }

  .main .mv .mv-box{
    width:100%;
    margin:0;
    padding:24px 18px;
  }

  .main .mv .mv-inner h1{
    font-size:18px;
    text-align:center;
  }

  .main .mv .mv-inner-bottom{
    flex-direction:column;
    gap:24px;
  }

  .main .mv .mv-logo img{
    width:220px;
    margin:auto;
  }

  .main .mv .mv-btn{
    width:100%;
    max-width:none;
  }

  .main .mv .mv-btn a{
    height:56px;
    font-size:16px;
  }

}


.title-wrap span.en {
  display: inline-block;
  font-size: 20px;
  position: relative;
  line-height: 1;
  font-family: "Jost", sans-serif;
  margin-bottom: 23px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.title-wrap span.en::before {
  content: "";
  display: block;
  position: absolute;
  top: -9px;
  left: -9px;
  width: 10px;
  height: 10px;
  background: #90CC12;
}
.title-wrap h2 {
  font-size: 30px;
  font-weight: bold;
  color: #90CC12;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .title-wrap h2 {
    font-size: 6vw;
  }
}
strong {
  color: #333;
  font-weight: 700;
}
h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 6.2vw;
  }
}
#about {
  padding: 120px 0 60px;
  width: 100%;
  text-align: center;
}
#about .about-text h3 {
  margin-top: 48px;
}

#about .about-img {
  padding: 60px 0 0;
  margin: auto;
}

#features .result-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  max-width: 900px;
  margin: 60px auto 0 auto;
  align-items: stretch;
}
#features .result-items .result-item {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  box-sizing: border-box;
}

.result-item:nth-child(4) {
  grid-column: 1 / 4;
}
@media screen and (max-width: 920px) {
  #features .result-items .result-item {
    flex-direction: column;
    gap: 0;
  }
}
#features .result-items .result-item:not(:last-child) {
  margin-bottom: 40px;
}

#features .result-items .result-item .result-item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px 0 12px;
  background: #707070;
  height: 80px;
}

#features .result-items .result-item .result-item-title .tag {
  font-size: 14px;
  background: #313131;
  color: #fff;
  border-radius: 100vh;
  width: 79px;
  text-align: center;
  line-height: 36px;
  height: 36px;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  #features .result-items .result-item .result-item-title {
    height: auto;
    padding: 20px;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  #features .result-items .result-item .result-item-title .tag {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  #features .result-items .result-item .result-item-title .title {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #features .result-items .result-item .result-item-title .icon {
    margin-right: auto;
  }
}
#features .result-items .result-item .result-item-title .title p {
  color: #fff;
  font-weight: 500;
}
#features .result-items .result-item .result-item-title .title h4 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
#features .result-items .result-item .result-item-title .icon {
  margin-left: auto;
}

#features .result-items .result-item .result-item-text {
  padding: 10px;
  line-height: 1.25;
}
#features .result-items .result-item .result-item-text img {
  display: block;
  margin: 16px auto 0 auto;
}
#features .result-items .result-item .after {
  display: flex;
  flex-direction: column;
  height: 420px;
  background: #fff;
  border: 6px solid #90CC12;
  border-radius: 12px;
}

#features .result-item-text p {
text-align: left;
margin-top: 20px;
}
#features .result-item-text p strong {
font-weight: 700;
font-size: 110%
}
@media screen and (max-width: 920px) {
  #features .result-items .result-item .after {
    width: 100%;
  }
}
#features .result-items .result-item .after .result-item-title {
  background: #90CC12;
}
#features .result-items .result-item .after .result-item-title .tag {
  background-color: #018E27;
  width: 80px;
  margin-right: 23px;
}
@media screen and (max-width: 767px) {
  #features .result-items .result-item .after .result-item-title .tag {
    margin: auto;
  }
}
#features .result-items .result-item .after .result-item-title .title {
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  #features .result-items .result-item .after .result-item-title .title {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  /* 1カラム縦並びにする */
  #features .result-items {
    display: block;
    max-width: 100%;
    margin: 40px 0 0 0;
    gap: 0;
  }
  #features .result-items .result-item {
    width: 100%;
    margin-bottom: 32px;
  }
  #features .result-items .result-item .after {
    width: 100%;
    min-width: 0;
    height: auto;
  }
  /* はみ出し防止 */
  #features .result-items .result-item .result-item-text {
    padding: 16px 12px;
    box-sizing: border-box;
    width: 100%;
    word-break: break-word;
  }
  #features .result-items .result-item .result-item-text img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 16px auto 0 auto;
  }
}
#features .result-items .result-item .after .result-item-title .title p {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: left;
  margin-left: 10px;
  min-height: 3.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
#features .result-items .result-item .after .result-item-text h5 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
#features .result-items .result-item .after .result-item-text p {
  font-size: 16px;
  font-weight: 500;
}
#features h4,
#features .guide {
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 0 20px;
}

#contact {
  padding: 100px 0 120px;
  text-align: center;
}
#contact h2 {
  color: #90CC12;
}
.contact-btn {
  padding-top: 30px;
}
.contact-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 470px;
  height: 100px;
  color: #fff;
  border-radius: 100vh;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #90CC12;
  background: #90CC12;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .contact-btn a {
    width: 100%;
  }
}
.contact-btn a::before {
  content: url("../images/icon-mail.svg");
  margin-right: 17px;
}
.contact-btn a:hover {
  background: #fff;
  color: #90CC12;
}
.contact-btn a:hover::before {
  content: url("../images/icon-mail-on.svg");
}


.container{
  max-width: 900px;
  margin: 0 auto;
}

.container p{
  text-align: left;
}
aside.cta {
  padding: 60px 0 60px;
}
@media screen and (max-width: 920px) {
  aside.cta {
    padding: 30px;
  }
}

.cta-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6B6BFA;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 29px;
  width: 544px;
  height: 116px;
  border: 1px solid #6B6BFA;
  border-radius: 100vh;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta-btn a {
    width: 100%;
    flex-direction: column;
    height: 120px;
    position: relative;
    font-size: 14px;
  }
}
.cta-btn a .img {
  margin-right: 30px;
  align-self: center;
  margin-top: -27px;
}
.cta-btn a .img img {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .cta-btn a .img {
    margin-top: -20%;
    margin-right: 0;
  }
}
.cta-btn a span {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 920px) {
  .cta-btn a span {
    padding-left: 0;
  }
}
.cta-btn a span::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../images/icon-dl.svg") no-repeat center/100%;
  margin-right: 12px;
}
.cta-btn a:hover {
  background: #fff;
}
.cta-btn a:hover span {
  color: #6B6BFA;
}
.cta-btn a:hover span::before {
  background: url("../images/icon-dl-on.svg") no-repeat center/100%;
}


/*--------------------------- footer */
.footer {
  background-color: #f2f2f2;
  padding-bottom: 8px;
  text-align: center;
  position: relative;
}

.footer__contents {
  width: 1112px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .footer__contents {
    width: 100%;
  }
}

@media screen and (min-width: 1112px) {
  .footer__contents {
    width: 1112px;
  }
}

@media screen and (min-width: 767px) and (max-width: 768px) {
  .footer__contents {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .footer__contents {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .footer {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 767px) and (max-width: 768px) {
  .footer {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.guide {
  background: #f5f5f5;
  text-align: left;
  border-left: 6px solid #90CC12;
  margin: 32px 0;
  padding: 20px 24px;
  color: #333;
  line-height: 1.7;
}
.guide strong {
  color: #333;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #features .guide {
    margin-bottom: 40px; /* 必要に応じて値を調整 */
  }
}

#about .mv-btn{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:40px;
}

#about .arrow-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    width:250px;
    height:45px;

    background:#90CC12;
    color:#fff;
    font-weight:bold ;

    border:2px solid #90CC12;
    border-radius:100vh;

    transition:.25s;
}

#about .arrow-btn:hover{
    background:#fff;
    color:#90CC12;
    border:2px solid #90CC12;
    box-shadow:none;
}

#about .arrow-btn i{
    margin-left:10px;
    transition:none;
}

#price .section-inner {
  background: #fff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
  border-radius: 12px;
  box-sizing: border-box;
}

#price {
  text-align: center;
  background: #F7F7F7;
  padding: 120px 0 60px;
}

#price table.price_table {
  background-color: #ffffff;
  margin-top: 20px;
}
#price table.price_table {
  border-top: 3px solid #9abd1f;
}
#price table.price_table thead .borderb_none {
  border-bottom: 0;
}
#price table.price_table thead .price_row {
  padding: 15px 10px;
}
#price table.price_table thead .price_row > a,
#price table.price_table thead .price_row > span {
  display: flex;
  justify-content: center;
  height: 100%;
  padding: 5px;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #00a0c7;
  color: #ffffff;
  text-align: center;
}
#price table.price_table thead .price_row .txt {
  background-color: #ffffff;
  line-height: 1.25;
}
#price table.price_table tr {
  border-bottom: 1px solid #bdbbba;
}
#price table.price_table tr th,
#price table.price_table tr td {
  padding: 10px;
  border-right: 1px solid #bdbbba;
  box-sizing: border-box;
}
#price table.price_table tr th:last-child,
#price table.price_table tr td:last-child {
  border-right: none;
}
#price table.price_table tr th .price-note,
#price table.price_table tr td .price-note {
  font-size: 13px;
  line-height: 1.5;
}
#price table.price_table tr th.w3split,
#price table.price_table tr td.w3split {
  width: 33.3333333333%;
}
#price table.price_table tr th.w4split,
#price table.price_table tr td.w4split {
  width: 25%;
}
#price table.price_table tr th.w6split,
#price table.price_table tr td.w6split {
  width: 16.6666666667%;
}
#price table.price_table tr th {
  background-color: rgba(0, 160, 199, 0.05);
  font-weight: normal;
}
#price table.price_table tr td {
  text-align: center;
}
#price table.price_table.gate thead {
  border-top-color: #9abd1f;
}
#price table.price_table.gate thead .price_row > a,
#price table.price_table.gate thead .price_row > span {
  background-color: #9abd1f;
}
#price table.price_table.gate tr th {
  background-color: rgba(154, 189, 31, 0.05);
}

@media screen and (max-width: 767px) {
  #price table.price_table {
    font-size: 13px;
    margin-bottom: 40px;
  }
  #price table.price_table thead .price_row {
    padding: 10px 5px;
  }
  #price table.price_table.sp_w2split tr, #price table.price_table.sp_w3split tr, #price table.price_table.sp_w4split tr {
    display: flex;
    flex-wrap: wrap;
  }
  #price table.price_table.sp_w2split tr th.sp_none_price,
  #price table.price_table.sp_w2split tr td.sp_none_price, #price table.price_table.sp_w3split tr th.sp_none_price,
  #price table.price_table.sp_w3split tr td.sp_none_price, #price table.price_table.sp_w4split tr th.sp_none_price,
  #price table.price_table.sp_w4split tr td.sp_none_price {
    display: none;
  }
  #price table.price_table.sp_w2split tr th .price-note,
  #price table.price_table.sp_w2split tr td .price-note, #price table.price_table.sp_w3split tr th .price-note,
  #price table.price_table.sp_w3split tr td .price-note, #price table.price_table.sp_w4split tr th .price-note,
  #price table.price_table.sp_w4split tr td .price-note {
    font-size: 11px;
  }
  #price table.price_table.sp_w2split tr th, #price table.price_table.sp_w3split tr th, #price table.price_table.sp_w4split tr th {
    display: block;
    width: 100%;
    padding: 5px 10px;
    border-right: none;
    border-bottom: 1px solid #bdbbba;
    text-align: center;
  }
  #price table.price_table.sp_w2split tr th.sp_gray, #price table.price_table.sp_w3split tr th.sp_gray, #price table.price_table.sp_w4split tr th.sp_gray {
    background-color: #f4f3f3 !important;
    text-align: left;
  }
  #price table.price_table.sp_w2split tr td, #price table.price_table.sp_w3split tr td, #price table.price_table.sp_w4split tr td {
    display: inline-block;
    width: 50%;
  }
  #price table.price_table.sp_w2split tr td.splitall, #price table.price_table.sp_w3split tr td.splitall, #price table.price_table.sp_w4split tr td.splitall {
    width: 100%;
  }
  #price table.price_table.sp_w3split tr td {
    width: 33.3333333333%;
  }
  #price table.price_table.sp_w4split tr td {
    width: 25%;
  }
  #price table.price_table.flow .business-cell {
    font-size: 13px;
  }
  #price table.price_table.flow tr th,
  #price table.price_table.flow tr td {
    padding: 5px;
  }
}
#price .price_table b {
  font-weight: bold;
  letter-spacing: 0.02em;
  font-family: "Jost", "Noto Sans JP", sans-serif;
}
#price p {
  margin: 20px 0;;
}

#faq strong {
  color: #333;
  font-weight: 700;
}

#bnrDownload {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 9999;
  width: min(100% - 30px, 380px);
}
.bnr-download-close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.bnr-download-link {
  display: block;
  border-radius: 0;
  background-color: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}
.bnr-download-img {
  display: block;
  width: 100%;
  filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.2));
}

@media screen and (max-width: 767px) {
  #bnrDemo,
  #bnrDownload {
    display: none;
  }
}
.gate-ttl {
  margin-bottom: 45px;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.gate-ttl > .gate-ttl-sub {
  display: block;
  margin-bottom: 5px;
  color: rgba(0, 160, 199, 0.5);
  font-size: 24px;
  font-family: "Sawarabi Gothic", sans-serif;
  letter-spacing: initial;
}
@media screen and (max-width: 767px) {
  .gate-ttl {
    margin-bottom: 30px;
    font-size: 24px;
  }
  .gate-ttl > .gate-ttl-sub {
    font-size: 16px;
  }
}

.guide p {
  margin-bottom: 1.5em; /* 1行分の余白。お好みで調整 */
}
#function li strong{
  display:flex;
  align-items:center;
  gap:10px;
  color:#90CC12;
  font-size:16px;
}

#function li strong::before{
  content:"✓";
  display:flex;
  justify-content:center;
  align-items:center;
  width:24px;
  height:24px;
  border-radius:50%;
  background:#90CC12;
  color:#fff;
  font-size:14px;
}
