@charset "UTF-8";
/*common*/
h1,
h2 {
  text-align: center;
  margin-bottom: 50px;
}
h1 {
  font-size: 3.7rem;
  font-weight: 900;
}
h1.theme {
  font-size: 6rem;
  text-align: left;
  margin-bottom: 0;
}
p.theme_sub {
  font-size: 2rem;
  padding-left: 32px;
  position: relative;
  padding-bottom: 50px;
}
p.theme_sub::before {
  position: absolute;
  content: "";
  border-left: 23px solid #000;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  height: 0;
  width: 0;
  display: inline-block;
  border-left-color: #5dcf8a;
  top: 0px;
  left: 0;
}
h2 {
  font-size: clamp(23px, 2.5vw, 35px);
  font-weight: 700;
}
h3 {
  font-size: clamp(15px, 2vw, 2.9rem);
  font-weight: 600;
  margin-bottom: 32px;
  text-align: left;
}
h4 {
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 600;
  padding-top: 16px;
  text-align: center;
  height: 90px;
}

section {
  padding-top: 32px;
  padding-bottom: 30px;
}
.bg {
  background-color: #5dcf8a;
  opacity: 0.8;
  clip-path: polygon(0% 25%, 100% 0%, 100% 75%, 0% 100%);
  width: 100%;
  height: 70rem;
  margin-top: 5rem;
}
div.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3em;
}

.br_tb {
  display: none; /* SPの改行を隠す */
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 1.7rem;
  }
  h3 {
    font-size: 5vw;
  }
  p,
  ul li,
  span,
  dl dt,
  dl dd {
    font-size: 18px;
  }
  p.theme_sub {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 2rem;
  }

  div.inner {
    padding: 0 5%;
  }
  .br_tb {
    display: block;
  }
}
/*header*/
#header {
  height: 70px; /*高さ指定*/
  width: 100%; /*横幅指定*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  color: #333;
  text-align: center;
  padding: 20px;
}

#header.fixed {
  position: fixed; /*fixedを設定して固定*/
  z-index: 999; /*最前面へ*/
  top: 0; /*位置指定*/
  left: 0; /*位置指定*/
}
.header_r {
  display: flex;
  align-items: center;
  width: 40%;
  height: 100%;
}
.header_r p {
  font-size: 2rem;
  font-weight: 600;
  display: contents;
}
.header_r p img {
  height: 1.3em;
}
small {
  background: #333;
  color: #fff;
  display: block;
  text-align: center;
  padding: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}

nav ul li a {
  display: block;
  text-decoration: none;
  color: #292929;
  transition: all 0.3s;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.5vw, 2rem);
}

.contact_btn {
  background-color: #5dcf8a;
  color: #fff;
  border-radius: 5px;
  padding: 0 !important;
}
.contact_btn a {
  color: #fff;
  display: block;
  padding: 10px 15px;
}
a:hover {
  opacity: 1 !important;
}
.asst_btn span::before {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #5dcf8a transparent transparent transparent;
}
.asst_btn span {
  color: #000;
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  position: absolute;
  top: -45%;
  left: 4%;
  right: 4%;
  padding: 10px;
  border: 2px solid #5dcf8a;
  border-radius: 100vh;
  background: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.asst_btn span::after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
/*ハンバーガー*/
.btn-gNav {
  position: fixed;
  top: 20px;
  right: 50px;
  width: 30px;
  height: 24px;
  z-index: 12;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  display: none;
}

.btn-gNav span {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #5dcf8a;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.btn-gNav span:nth-child(1) {
  top: 0;
}

.btn-gNav span:nth-child(2) {
  top: 10px;
}

.btn-gNav span:nth-child(3) {
  top: 20px;
}

.btn-gNav.open span:nth-child(1) {
  background: #5dcf8a;
  top: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.btn-gNav.open span:nth-child(2),
.btn-gNav.open span:nth-child(3) {
  top: 6px;
  background: #5dcf8a;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.gNav .gNav-menu {
  display: flex;
  justify-content: space-between;
}

.gNav .gNav-menu li {
  margin: 0 auto;
  padding: 5px 16px;
  font-size: 1.3rem;
}
@media screen and (max-width: 1000px) {
  .btn-gNav {
    display: block;
  }

  .gNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    box-sizing: border-box;
    z-index: 2;
    padding-top: 50px;
    transition: 0.3s;
  }

  .gNav.open {
    right: 0;
  }

  .gNav .gNav-menu {
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex-direction: column;
    text-align: center;
    /*justify-content: center;*/
  }

  .gNav .gNav-menu li {
    width: 40%;
    padding: 15px;
  }
  .header_r {
    width: 80%;
  }
}

/*main_ttl*/
section#main_ttl {
  background-color: #fff;
  padding-bottom: 0;
  padding-top: 0;
}
.mt-inner {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 3em;
}
#main_ttl h1 {
  margin-bottom: 20px;
  font-size: clamp(21px, 3vw, 4.4rem);
}
#main_ttl h3 b {
  color: #5dcf8a;
  font-weight: 900;
  font-size: 1.2em;
}
.mt_contents {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mt_content_img_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.mt_content_txt {
  width: 50%;
  max-width: 600px;
}
.mt_content_img {
  width: 60%;
  height: 40vw;
}
.mt_content_img p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
p.mt_pc {
  width: 85%;
  height: 100%;
  text-align: center;
}
p.mt_pc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
p.mt_robo {
  z-index: 1;
  right: 0;
  transform: translate(0%, -50%);
  filter: drop-shadow(0 1.9px 2.5px rgba(0, 0, 0, 0.057))
    drop-shadow(0 3px 5px rgba(0, 0, 0, 0.086))
    drop-shadow(0 6.2px 7px rgba(0, 0, 0, 0.092))
    drop-shadow(0 8.4px 8px rgba(0, 0, 0, 0.1));
}
.mt_content_txt h1,
.mt_content_txt h3 {
  text-align: left;
}
.btn_service {
  text-align: center;
  border-radius: 15px;
  background-color: #5dcf8a;
  padding: 3rem 3vw;
  margin-top: 8rem;
  position: relative;
}
.btn_service a {
  color: #fff;
  font-size: clamp(15px, 2vw, 34px);
  font-weight: 700;
}
.mt_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #5dcf8a;
  width: 50%;
  height: 100%;
}
.circle_txts {
  display: flex;
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 1;
}

.circle_txt {
  background-color: #ffffff;
  border: #ecfef1 1px solid;
  width: 10vw;
  min-width: 100px;
  height: 10vw;
  min-height: 100px;
  border-radius: 50%;
  text-align: center;
  align-content: center;
  display: inline-block;
  filter: drop-shadow(0 1.9px 2.5px rgba(0, 0, 0, 0.057))
    drop-shadow(0 3px 5px rgba(0, 0, 0, 0.086))
    drop-shadow(0 6.2px 7px rgba(0, 0, 0, 0.092))
    drop-shadow(0 8.4px 8px rgba(0, 0, 0, 0.1));
  background: linear-gradient(135deg, #fff 0%, #f0fff0 100%);
  margin: 5px;
}
.circle_txt div {
  color: #292929;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 2rem);
}
.box_txts {
  display: none;
}

@media screen and (max-width: 767px) {
  section#main_ttl {
    padding-top: 32px;
  }
  .mt-inner {
    padding: 0;
  }
  #main_ttl h1 {
    font-size: 3.1rem;
  }

  #main_ttl h3 {
    font-size: 2.1rem;
  }
  #main_ttl h3 b {
    font-size: 2.4rem;
  }
  .btn_service a {
    font-size: 2.5rem;
  }

  .mt_contents {
    flex-direction: column;
  }
  .mt_content_txt {
    width: 100%;
    max-width: 700px;
    padding: 0 3% 0 3%;
  }
  .mt_content_img {
    width: 100%;
  }
  .mt_bg {
    height: 50%;
    width: 100%;
    bottom: 0;
    transform: translate(-50%, 0%);
  }
  p.mt_pc {
    width: 65%;
  }
  p.mt_robo {
    right: 16px;
  }
  .btn_service {
    margin-bottom: 32px;
  }
  .circle_txts {
    display: none;
  }
  .box_txts {
    display: flex;
    width: 70%;
  }

  .box_txt {
    background-color: #f0fff0;
    border: #ecfef1 1px solid;
    text-align: center;
    align-content: center;
    display: inline-block;
    margin: 15px;
    padding: 2rem 1rem;
    flex: 1;
  }
  .box_txt div {
    color: #292929;
    font-weight: 700;
    font-size: clamp(1rem, 1.5vw, 2rem);
  }
}

/*big3*/
section#big3 {
  background-color: #e8e8e8;
}
.big3_columns {
  display: flex;
  gap: 20px;
}
.big3_column {
  background-color: #fff;
  border-radius: 15px;
  flex: 1;
  height: 250px;
}
.big3_column_inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}
p.big3_txt {
  height: 20%;
  font-weight: 600;
  font-size: 20px;
}
p.big3_img {
  height: 50%;
}
@media screen and (max-width: 767px) {
  p.big3_txt {
    font-size: 1.4rem;
  }
  .big3_column {
    background-color: #fff;
    border-radius: 15px;
    flex: 1;
    height: 200px;
  }
}
@media screen and (max-width: 499px) {
  .big3_columns {
    flex-direction: column;
    width: 300px;
    margin: auto;
  }
  .big3_column {
    padding: 5%;
  }
  p.big3_txt {
    font-size: 15px;
  }
  p.big3_img {
    width: 150px;
    margin: auto;
    padding: 16px 16px 0px 16px;
  }
}
/*merit*/
section#merit {
  background-color: #fff;
}
#merit .inner p {
  text-align: center;
}
#merit p.theme_sub {
  text-align: left;
}
#merit h2 {
  padding: 32px 0 16px 0;
}
article.merit_article {
  position: relative;
  padding: 10rem 0;
}
#merit div.merit_bg {
  position: absolute;
  background-color: #e8e8e8;
  width: 70%;
  height: 100%;
  top: 0;
  z-index: 0;
}
#merit div.merit_bg.right {
  right: 0;
}
div.merit_article_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 3em 32px 3em;
  margin: auto;
}
#merit .column {
  z-index: 1;
}
.column.txt {
  width: 35%;
}
.column.txt p {
  font-size: clamp(18px, 2vw, 2rem);
}
.column.pic {
  width: 60%;
}
#merit .column.txt span {
  background: linear-gradient(transparent 50%, #5dcf8a 70%);
  font-size: 1em;
  font-weight: 600;
}
.merit_article_inner img {
  border-radius: 8px;
  box-shadow: 0 1.9px 2.5px rgba(0, 0, 0, 0.057), 0 3px 5px rgba(0, 0, 0, 0.086),
    0 6.2px 7px rgba(0, 0, 0, 0.092), 0 8.4px 8px rgba(0, 0, 0, 0.1);
}

.smc_ctaLink {
  margin-top: -5rem;
  z-index: 1;
  position: relative;
}
.smc_ctaLink p {
  background-color: #c7365e;
  margin: 20px 411.5px 20px 411.5px;
  padding: 20px 20px;
  max-width: 900px;
  margin: auto;
  width: 80%;
  text-align: center;
  font-size: 28px;
  letter-spacing: 1px;
}

.smc_ctaLink p a {
  color: #fff;
  font-weight: 900;
  position: relative;
  padding-right: 40px;
}

.smc_ctaLink p a::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url(../img/icon_ctalink.png);
  background-size: cover;
  width: 2.5rem;
  height: 2.5rem;
  right: 0px;
  bottom: 7px;
  margin-top: 0px;
}
@media screen and (max-width: 767px) {
  .smc_ctaLink p {
    padding: 5vw 6vw !important;
    font-size: 4vw;
  }
}
/*Sample*/
#sample {
  margin-bottom: 100px;
}

#sample button {
  color: #5dcf8a;
  font-weight: 600;
  margin: 30px;
  background-color: unset;
  font-size: clamp(1.5rem, 2vw, 2rem);
  border: none;
}
.btns {
  text-align: center;
}
#sample img {
  border-radius: 15px;
  box-shadow: 0px 60px 100px 0px rgba(43, 35, 79, 0.2);
}

#prompt_content,
#chat_content,
#graph_content,
#setting_content,
#RAG_content {
  display: none;
}

#prompt_btn.active,
#chat_btn.active,
#graph_btn.active,
#setting_btn.active,
#RAG_btn.active {
  color: #fff;
  background-color: #5dcf8a;
  padding: 10px 30px;
  border-radius: 30px;
}

#prompt_content.active,
#chat_content.active,
#graph_content.active,
#setting_content.active,
#RAG_content.active {
  display: block;
}

@media screen and (max-width: 767px) {
  .btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
  }
  #prompt_btn.active,
  #chat_btn.active,
  #graph_btn.active,
  #setting_btn.active,
  #RAG_btn.active {
    border-radius: 30px;
    padding: 1rem 1.5rem;
  }
  #sample button {
    margin: 1rem;
    font-size: 1.3rem;
  }
}

h3.add_comment {
  max-width: 1200px;
  z-index: 1;
  position: relative;
  margin: 0 auto;
  padding: 0 3em;
  text-align: center;
}
.merit_support_outer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3em;
  padding-bottom: 32px;
  padding-top: 50px;
}
.merit_support {
  /*width: 80%;*/
  margin: auto;
  border: 3px solid #0068b7;
  box-shadow: 10px 10px 0px 0 #0068b7;
}
.merit_support h2 {
  padding-top: 32px;
  margin-bottom: 0;
}
.merit_support h3 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  padding: 16px;
}
.merit_support p {
  padding: 32px 16px;
}
.merit_support {
  font-size: 2.5rem;
}
.merit_support h2 {
  color: #b80500;
}

.merit_support div.ribbon {
  background-color: #0068b7;
}
.merit_support div.ribbon p {
  color: #fff;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  div.merit_article_inner {
    flex-direction: column;
    padding: 0 3%;
  }
  #merit h2 {
    margin-bottom: 0;
  }
  .merit_support_outer {
    padding: 0;
    padding-bottom: 32px;
    padding-top: 50px;
  }
  #merit .merit_support h2 {
    font-size: 2rem;
    padding: 0;
    padding-top: 32px;
  }
  .merit_support p {
    font-size: 1.2rem;
  }
  .merit_article_inner.odd {
    flex-direction: column-reverse;
  }
  .column.txt {
    padding: 16px 0;
  }
  #merit .column {
    width: 90%;
  }
  h3.add_comment {
    padding: 16px 0;
    width: 90%;
    font-size: 1.5rem;
    text-align: left;
  }
  .merit_support_outer {
    padding: 5% 5% 0 5%;
  }
}

/*scene*/
#scene {
  position: relative;
}

#scene div.inner {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
}
#scene_box li.scene_slider_box {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 1.9px 2.5px rgba(0, 0, 0, 0.057), 0 3px 5px rgba(0, 0, 0, 0.086),
    0 6.2px 7px rgba(0, 0, 0, 0.092), 0 8.4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  padding: 32px;
  gap: 3%;
  align-items: center;
}
.scene_pic,
.scene_txt {
  flex: 1;
}
.scene_pic img {
  border-radius: 8px;
  box-shadow: 0 1.9px 2.5px rgba(0, 0, 0, 0.057), 0 3px 5px rgba(0, 0, 0, 0.086),
    0 6.2px 7px rgba(0, 0, 0, 0.092), 0 8.4px 8px rgba(0, 0, 0, 0.1);
}
.scene_num {
  color: #5dcf8a;
  font-weight: 600;
}
.scene_num b {
  color: #5dcf8a;
  font-size: 2rem;
  font-weight: 600;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider#scene_box {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider#scene_box .slick-slide {
  margin: 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 5px solid #666; /*矢印の色*/
  border-right: 5px solid #666; /*矢印の色*/
  height: 20px;
  width: 20px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}
@media screen and (max-width: 767px) {
  #scene {
    position: relative;
    height: 135vh;
  }
  #scene_box li.scene_slider_box {
    flex-direction: column;
    padding: 16px;
  }
  .slider#scene_box .slick-slide {
    margin: 16px;
  }
  p.scene_num {
    font-size: 1.3rem;
  }
  p.scene_num {
    font-size: 1.3rem;
  }
  .scene_num b {
    font-size: 1.5rem;
  }
  #scene h4 {
    font-size: 18px;
    height: auto;
    padding-bottom: 10px;
  }
  #scene h4.scene_2l {
    height: 80px;
  }
  .scene_box dl dd p {
    font-size: 15px;
  }
  .slick-prev,
  .slick-next {
    display: none !important;
  }
  #scene .bg {
    clip-path: polygon(0% 20%, 100% 10%, 100% 70%, 0% 80%);
    height: 145vh;
  }
  .slider#scene_box {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 100%;
  }
  .scene_pic,
  .scene_txt {
    flex: none;
  }
  .scene_txt p {
    font-size: 16px;
  }
}

/*price*/
section#price {
}
#price h2 {
  padding: 32px 0 32px 0;
  margin: 32px;
  border: 1px solid;
}
#price h3 {
  width: 900px;
  margin: auto;
}
#price .table__correction h3 span {
  font-size: 80%;
  color: #5dcf8a;
  font-weight: bold;
}
#price .priceContents_title {
  cursor: pointer;
}
.priceContents__table {
  display: none; /*はじめは非表示*/
  margin: 10px auto;
  width: fit-content;
  /*display: table;*/
}
.priceContents__list {
  display: table-row;
}
.priceContents__listItem {
  display: table-cell;
  padding: 20px;
  border: 3px solid #fff;
  vertical-align: middle;
  text-align: center;
}
.priceContents__listItem p {
  font-weight: 800;
  font-size: 18px;
  line-height: 2.4rem;
}
.priceContents__note {
  text-align: left;
  padding-left: 10px;
  font-weight: 600;
  margin: 0 auto;
}
p.priceContents__note.priceContents__note_ex {
  margin: 0;
}
.priceContents__note dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.priceContents__note dl dt {
  margin-right: 10px;
}
.price_ttl {
  padding-right: 32px;
  font-weight: 800;
  font-size: clamp(13px, 3vw, 22px);
  line-height: 2.4rem;
  width: 25%;
}
.priceContents__listItem.col1 {
  background-color: #5dcf8a;
}
.priceContents__listItem.col2 {
  background-color: rgba(93, 207, 138, 0.6);
  text-align: center;
}
.priceContents__listItem.col3 {
  background-color: rgba(93, 207, 138, 0.3);
  text-align: center;
}
.priceContents__listItem.col4 {
  background-color: #e8e8e8;
}
#price .table__correction h3 {
  color: #5dcf8a;
  margin-top: 30px;
}

.table__correction table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
.table__correction table thead th {
  line-height: 2.4rem;
  border: 2px solid #a1a1a1;
  text-align: center;
  vertical-align: middle;
  padding: 20px;
  background: #e8e8e8;
  font-weight: bold;
}
.table__correction table tbody th {
  border: 2px solid #a1a1a1;
  text-align: center;
  vertical-align: middle;
  padding: 20px;
  background-color: rgba(93, 207, 138, 0.3);
  font-weight: bold;
}
.table__correction table tbody th span {
  font-weight: bold;
  color: #fe0909;
  font-size: 1.7rem;
}
.table__correction table tbody th.option {
  width: 5%;
  vertical-align: middle;
}
.table__correction table tbody td {
  line-height: 2.4rem;
  border: 2px solid #a1a1a1;
  padding: 20px;
  vertical-align: middle;
  font-weight: bold;
  text-align: center;
}
.table__correction table tbody td sup {
  font-weight: bold;
}
@media screen and (max-width: 820px) {
  .table__correction .table-wrap {
    overflow-x: scroll;
  }
  .table__correction .table-wrap table {
    white-space: nowrap;
  }
  #price .table__correction h3 {
    font-size: 3rem;
  }
}

.ex_price_box {
  display: flex;
  align-items: center;
  margin: auto;
  margin: 32px auto;
  justify-content: space-around;
}

.price_box_initial,
.price_box_running {
  box-shadow: 0 1.9px 2.5px rgba(0, 0, 0, 0.057), 0 3px 5px rgba(0, 0, 0, 0.086),
    0 6.2px 7px rgba(0, 0, 0, 0.092), 0 8.4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  width: 30%;
}

.price_box_ttl {
  background-color: #5dcf8a;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 600;
  padding: 20px;
  border-radius: 15px 15px 0 0;
  text-align: center;
}
.price_box_price {
  background-color: #fff;
  padding: 30px 5px;
  height: 160px;
  border-radius: 0px 0px 15px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price_box_price > p {
  align-items: center;
  font-size: clamp(1rem, 2vw, 2.3rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.45;
}
.price_custom {
  width: 30%;
  height: 100px;
  background-color: #5dcf8a;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.price_custom.initial {
  height: 60px;
}
.price_custom.id {
  background-color: rgba(93, 207, 138, 0.6);
}
.price_custom p {
  font-weight: 600;
  padding-top: 5%;
}
.plus_icon_container {
  width: 15%;
}

.plus_icon_container {
  text-align: center;
  padding-bottom: 30px;
}
.plus_icon {
  position: relative;
}
.plus_icon::before,
.plus_icon::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 3px;
  height: 25px;
  background-color: #000066;
}
.plus_icon::after {
  transform: rotate(90deg);
}
.priceContents__tableSC {
  overflow: overlay;
}
@media screen and (max-width: 767px) {
  .priceContents__note dl dt,
  .priceContents__note dl dd {
    font-size: 1.2rem;
  }
  .priceContents__listItem p {
    font-size: clamp(10px, 2vw, 18px);
  }
  .price_box_price {
    height: 20%;
    padding: 30px;
    margin-bottom: 30px;
  }
  .ex_price_box{
    display: block;
  }
  .price_box_ttl {
    font-size: 2rem;
  }
  .price_box_initial, .price_box_running {
   width: 100%;
  }
  .price_box_price > p {
   font-size: 2rem;
  }
}
@media screen and (max-width: 1056px) {
  .price_box_price {
   height: 20%;
   padding: 11% 0%;
  }	
}
/*cta-btn*/
#cta-btn {
  text-align: center;
}

#cta-btn .btn_service {
  display: inline-block;
}

/*faq*/
section#faq {
  position: relative;
  height: 700px;
  margin-bottom: 70px;
}
.faq_bg {
  background-color: #5dcf8a;
  opacity: 0.3;
  clip-path: polygon(0% 25%, 100% 0%, 100% 75%, 0% 100%);
  width: 100%;
  height: 600px;
  margin-top: 3rem;
}
#faq div.inner {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
}
h3.question {
  background-color: #fff;
  padding: 16px 55px 16px 16px;
  border-radius: 100vh;
  font-size: clamp(1.5rem, 1.7vw, 2.1rem);
  box-shadow: 0 1.9px 2.5px rgba(0, 0, 0, 0.057), 0 3px 5px rgba(0, 0, 0, 0.086),
    0 6.2px 7px rgba(0, 0, 0, 0.092), 0 8.4px 8px rgba(0, 0, 0, 0.1);
  padding-left: 5em;
  text-indent: -2.4em;
}
.faq_box {
  padding: 15px 0;
}
.faqs {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}

.faqs li {
  margin: 10px 0;
}

.question {
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
  margin-bottom: 0;
  padding-left: 50px;
}

.question::before,
.question::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
}
.question::before {
  top: 48%;
  right: 32px;
  transform: rotate(0deg);
}
.question::after {
  top: 48%;
  right: 32px;
  transform: rotate(90deg);
}
.question.close::before,
.question.active::before {
  transform: rotate(45deg);
}

.question.close::after,
.question.active::after {
  transform: rotate(-45deg);
}
.answer {
  display: none;
  padding: 3% 3% 0% 50px;
}
.answer p {
  font-size: 1.5rem;
  font-weight: 600;
}
.q-mark {
  font-size: 2.5rem;
  font-weight: 900;
}
.a-mark {
  font-weight: 900;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  section#faq {
    padding-bottom: 100px;
    margin-bottom: 32px;
  }
  .faq_box {
    padding: 15px 0 0 0;
  }

  h3.question {
    font-size: 1.2rem;
    padding-left: 5em;
    text-indent: -2em;
  }
  .q-mark {
    font-size: 1.5rem;
  }
  .answer {
    padding: 3% 3% 0 50px;
  }
  .answer p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  section#faq {
    height: 550px;
  }
  .faq_bg {
    height: 500px;
  }
}
/*form*/
section#form {
  padding-top: 60px;
}
#form p {
  margin-bottom: 30px;
  text-align: center;
}
.smc_formArea__DocumentInner {
  width: 100%;
  background: #fff;
  margin: 0 auto 40px;
  padding: 40px 0;
  border: 1px solid #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: space-between;
}

.smc_formArea__DocumentText {
  width: 50%;
}
.smc_formArea__DocumentInner figure {
  width: 40%;
}
.smc_contactContents {
  position: relative;
  background-color: #5dcf8a;
  text-align: center;
  margin-bottom: 60px;
}
.smc_contactContents p {
  line-height: 2em;
  padding: 60px 0;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}
.smc_contactContents p span {
  font-size: 18px;
  color: #fff;
}
.smc_contactContents ::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #5dcf8a;
}
.smc_formArea__Document p {
  font-size: 24px;
  color: #5dcf8a;
  font-weight: bold;
  margin-bottom: 5px !important;
}
.smc_formArea__DocumentText p:nth-of-type(1) {
  background-color: #5dcf8a;
  color: #fff;
  margin-bottom: 10px;
  padding: 5px 0;
}
.smc_formArea__Document p:nth-of-type(2) {
  font-size: 36px;
  color: #000;
  margin-bottom: 30px;
}
.smc_formArea__DocumentInner {
  width: 100%;
  background: #fff;
  margin: 0 auto 40px;
  padding: 40px 0;
  border: 1px solid #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: space-between;
  align-items: center;
}
.smc_formArea__DocumentText ul li::before {
  content: "";
  background-image: url("../img/check-solid.png");
  display: inline-block;
  height: 23px;
  width: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
}
.smc_formArea__DocumentText ul li h4 {
  font-weight: 700;
  text-align: left;
  padding-top: 0;
  height: unset;
}
.smc_formArea__DocumentText ul {
  width: 90%;
  margin: 10px auto;
}
.smc_formArea__DocumentText ul li {
  text-align: left;
  padding-left: 23px;
  padding-top: 10px;
  position: relative;
  line-height: 1.8em;
  font-size: clamp(1rem, 2vw, 2rem);
}

@media screen and (max-width: 767px) {
  .smc_formArea__DocumentInner {
    margin: 3vw auto;
    margin-bottom: 40px;
    padding: 3vw;
    border: 1px solid #000;
    display: block;
    width: 95%;
  }
  .smc_formArea__DocumentText {
    width: 100%;
  }
  .smc_formArea__DocumentInner figure {
    width: 100%;
  }
}
/*footer*/
#footer p {
  text-align: center;
}
