html {
  font-size: 100%;
  color: #343434;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans CJK JP", "Noto Sans CJK JP Subset", -apple-system, "Helvetica Neue", HelveticaNeue, "游ゴシック", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴシック", Hiragino Sans, Verdana, "メイリオ", Meiryo, sans-serif;
  scroll-behavior: smooth;
  letter-spacing: 0.1rem;
}

@media screen and (min-width: 481px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
}

/* *{
  outline: 2px red solid;
}*/

/* 文字スタイル */

p {
  font-weight: 400;
  font-size: 16px;
  text-align:justify;
  line-height: 1.7em;
}

h2 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 40px;
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 480px) {
  h3 {
    font-size: 22px;
  }
}

.caption16 {
  font-size: 16px;
  font-weight: bold;
}

.caption20 {
  font-size: 20px;
  font-weight: bold;
}

.gray {
  color: #445572;
}

.blue {
  color: #3666B5;
}

.white {
  color: #FFF;
}

/* 共通 */

.section {
  padding: 80px 0;
}

.bg_blue {
  background-color: #F3F6FD;
}

.bg_white {
  background-color: #FFF;
}

.bg_yellow {
  background-color: #FFE181;;
}

a {
  transition: 0.3s;
}

/* header */

header {
  position: absolute;
  z-index: 999;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  height: 80px;
  margin-right: 20px;
}

@media screen and (max-width: 1000px) {
  header {
    display: none;
  }
}

header img {
  height: 40px;
  margin-left: 20px;
}

.header_CTA {
  display: inline-block;
  width: 120px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  font-size: 12px;
  color: #113674;
  font-weight: bold;
  border-radius: 14px;
}

.header_CTA:hover {
  color: #58729D;
  box-shadow: 0 4px 10px 0 rgb(54, 102, 181, 1);
  transform: translateY(-1px);
}

.header_download {
  background-color: #FFC50C;
  margin-right: 20px;
}

.header_download:hover {
  background-color: #FFD654;
}

.header_contact {
  background-color: #FFF;
  margin-right: 40px;
}

/* top */

.visual_image {
  overflow: hidden;
  height: 500px;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 2000px) {
  .visual_image img {
    width: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 1000px) {
  .visual_image {
    height: 440px;
    object-fit: cover;
  }

  .visual_image img {
    width: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 860px) {
  .visual_image img {
    height: 100%;
  }
}

@media screen and (max-width: 640px) {
  .visual_image {
    height: 500px;
  }
}

.main_text_wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.main_text {
  position: absolute;
  top: -490px;
  left: 50%;
  color: #FFF;
  margin-top: 80px;
}

@media screen and (max-width: 1200px) {
  .main_text {
    left: 42%;
  }
}

@media screen and (max-width: 1000px) {
  .main_text {
    top: -470px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 90%;
  }
}

@media screen and (max-width: 640px) {
  .main_text {
    top: -536px;
  }
}


.main_copy_shoulder {
  font-size: 24px;
  margin-bottom: 8px;
}

@media screen and (max-width: 1000px) {
  .main_copy_shoulder {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .main_copy_shoulder {
    font-size: 4vw;
  }
}

.main_copy {
  font-size: 40px;
  letter-spacing: 0.3rem;
  line-height: 64px;
  margin-bottom: 16px;
}

@media screen and (max-width: 1000px) {
  .main_copy {
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  .main_copy {
    font-size: 6.5vw;
    line-height: 56px;
    letter-spacing: 0.1rem;
  }
}

@media screen and (max-width: 480px) {
  .main_copy {
    line-height: 40px;
  }
}

.main_service_logo {
  width: 320px;
  margin-bottom: 24px;
}

@media screen and (max-width: 1000px) {
  .main_service_logo {
    width: 240px;
    display: block;
    margin: 0 auto 24px;
  }
}

@media screen and (max-width: 480px) {
  .main_service_logo {
    margin: 0 auto 40px;
  }
}

.main_CTA_wrapper {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 0.5fr 1fr;
  column-gap: 40px;
}

@media screen and (max-width: 1000px) {
  .main_CTA_wrapper {
    width: 560px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 640px) {
  .main_CTA_wrapper {
    display: block;
    width: 100%;
    text-align: center;
  }
}

.main_CTA_wrapper p {
  font-size: 14px;
  text-align: center;
  height: 20px;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  width: 260px;
}

@media screen and (max-width: 640px) {
  .main_CTA_wrapper p {
    width: 100%;
    margin-bottom: 8px;
  }
}

.main_CTA_button {
  display: block;
  width: 240px;
  height: 56px;
  border-radius: 28px;
  text-align: center;
  line-height: 56px;
  box-shadow: 0 4px 10px -2px rgb(54, 102, 181, 1);
  font-size: 20px;
  color: #113674;
  font-weight: bold;
  margin: 0 auto;
}

.main_CTA_button:hover {
  box-shadow: none;
  transform: translateY(2px);
  color: #58729D;
}

@media screen and (max-width: 640px) {
  .main_CTA_button {
    margin-bottom: 16px;
  }
}

.main_download {
  background-color: #FFC50C;
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  transition: 0.3s;
}

.main_download:hover {
  background-color: #FFD654;
}

.main_contact {
  background-color: #FFF;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.main_visual_bottom {
  display: flex;
  column-gap: 48px;
  height: 240px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width: 1200px) {
  .main_visual_bottom {
    width: 80%;
    max-width: 1500px;
    justify-content: center;
    margin-bottom: 56px;
  }
}

@media screen and (max-width: 1000px) {
  .main_visual_bottom {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .main_visual_bottom {
    display: block;
  }
}

.pc_image_wrapper {
  width: 400px;
}

.pc_image_wrapper img {
  width: 100%;
  margin-top: -60px;
}

@media screen and (min-width: 1200px) {
  .pc_image_wrapper {
    width: 500px;
  }
}

@media screen and (max-width: 1000px) {
  .pc_image_wrapper {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .pc_image_wrapper {
    width: 320px;
    margin: 0 auto;
  }
  .pc_image_wrapper img {
    width: 80%;
    margin: -80px auto 0;
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .pc_image_wrapper {
    width: 320px;
    margin: 0 auto;
  }
  .pc_image_wrapper img {
    width: 80%;
    margin: -80px auto 0;
    display: block;
  }
}

.main_point {
  display: flex;
  column-gap: 32px;
  margin: 24px 0;
}

@media screen and (max-width: 1000px) {
  .main_point {
    column-gap: 16px;
    width: 90%;
    max-width: 350px;
    margin: 24px auto;
  }
}

.main_point_box {
  display: block;
  position: relative;
  width: 140px;
  height: 140px;
}

.logo {
  padding-bottom: 100px;
}

.logo p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}

@media screen and (max-width: 1000px) {
  .logo p {
    margin-top: 32px;
  }
}

@keyframes logo {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: -1509px;
  }
}

@media screen and (max-width: 480px) {
  @keyframes logo {
    0% {
      background-position-x: 0;
    }

    100% {
      background-position-x: -1207px;
    }
  }
}

.logo_slide {
  height: 150px;
  background: #FFF url(../images/logo-parade.webp) repeat-x left center/auto 100px;
  animation: logo 60s linear infinite;
}

@media screen and (max-width: 480px) {
  .logo_slide {
    height: 100px;
    background: #FFF url(../images/logo-parade.webp) repeat-x left center/auto 80px;
  }
}

/* introduction */

.introduction_text_wrapper {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.introduction_text1 {
  text-align: center;
  margin-bottom: 32px;
}

.introduction_text2 {
  margin-bottom: 56px;
}

.introduction_text_wrapper img {
  position: absolute;
  width: 200px;
  right: 10px;
  top: -40px;
}

@media screen and (max-width: 1000px) {
  .introduction_text_wrapper img {
    top: 0;
    width: 180px;
  }
}


@media screen and (max-width: 840px) {
  .introduction_text_wrapper img {
    display: none;
  }
}

.underline {
  background: linear-gradient(transparent 60%, #FFE181 60%);
}

.failure {
  background-color: #F1F3F7;
  padding: 56px 0;
}

.failure h2 {
  margin-bottom: 56px;
}

@media screen and (max-width: 840px) {
  .failure h2 .sp {
    display: block !important;
  }
}

.failure_image {
  position: relative;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

.failure_image img {
  position: absolute;
  width: 130px;
  left: 10px;
  top: -120px;
}

@media screen and (max-width: 840px) {
  .failure_image img {
    display: none;
  }
}

.failure_wrapper {
  display: flex;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  column-gap: 24px;
  justify-content: space-between;
}

@media screen and (max-width: 840px) {
  .failure_wrapper {
    display: block;
  }
}

.failure_box {
  background-color: #FFF;
  border-radius: 14px;
  box-shadow: 0 3px 10px 3px rgb(111, 111, 111, 0.1);
  width: 310px;
}

@media screen and (max-width: 840px) {
  .failure_box {
    width: 90%;
    max-width: 480px;
    margin: 0 auto 32px;
  }
}

.failure_contents {
  margin: 35px;
}

@media screen and (max-width: 840px) {
  .failure_contents {
    display: inline-block;
  }
}

.failure_contents img {
  display: block;
  height: 60px;
  margin: 0 auto 16px;
}

.failure_caption {
  text-align: center;
  display: flex;
  height: 80px;
  justify-content: center;
  align-items: center;
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
  border-top: 64px solid #F1F3F7;
  border-bottom: 0;
  margin: 0 auto;
}

/* strengths */

#strengths.section{
  padding-top: 40px;
}

.strengths_text1 {
  text-align: center;
  margin-bottom: 32px;
}

@media screen and (max-width: 840px) {
  .section h2 .sp {
    display: block !important;
  }
}

.strength_box {
  max-width: 1000px;
  width: 90%;
  margin: 80px auto 120px;
  display: grid;
  grid-template-rows: 1.3fr 2fr;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
}

@media screen and (max-width: 840px) {
  .strength_box {
    display: block;
    width: 90%;
    margin-bottom: 80px;
  }
}

.strength_caption_wrapper {
  display: flex;
  column-gap: 16px;
}

@media screen and (max-width: 840px) {
  .strength_caption_wrapper {
    display: block;
  }
}

.strength_number {
  text-align: center;
  margin-top: 7px;
}

.strength_number p {
  color: #EAB200;
  font-family: "roboto", sans-serif;
  font-size: 10px;
  font-weight: bold;
}

@media screen and (max-width: 840px) {
  .strength_number p {
    text-align: center;
  }
}

.strength_number span {
  color: #EAB200;
  font-family: "roboto", sans-serif;
  font-size: 40px;
  font-weight: bold;
}

.strength_caption_wrapper h3 {
  margin-top: 0;
}

@media screen and (max-width: 840px) {
  .strength_caption_wrapper h3 {
    text-align: center;
    margin-bottom: 24px;
  }
}

.strength_box img {
  display: block;
  width: 420px;
}

@media screen and (max-width: 840px) {
  .strength_box img {
    margin: 24px auto 0;
  }
  .strength_box p {
    max-width: 600px;
    margin: 0 auto;
  }
}

.strength_box.strength_right h3 {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

.strength_box.strength_right p {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}

.strength_box.strength_right img {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  margin-left: auto;
}

.strength_box.strength_left h3 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

.strength_box.strength_left p {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}

.strength_box.strength_left img {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  margin-right: auto;
}

.survey_design_support {
  max-width: 640px;
  background-color: #F3F6FD;
  border-radius: 8px;
  margin: 0 auto;
  padding-bottom: 48px;
}

@media screen and (max-width: 840px) {
  .survey_design_support {
    width: 90%;
    padding-bottom: 24px;
  }
}

.survey_design_support_heading {
  background-color: #3666B5;
  border-radius: 8px 8px 0 0;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.survey_design_support_text {
  margin: 24px 0;
  text-align: center;
}

@media screen and (max-width: 840px) {
  .survey_design_support_text {
    max-width: 90%;
    margin: 24px auto;
  }
}

.survey_design_support_detail {
  display: flex;
  width: auto;
  justify-content: center;
  column-gap: 16px;
}

@media screen and (max-width: 840px) {
  .survey_design_support_detail {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}

.survey_design_support_detail span {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 4px;
  text-indent: 4px;
}

@media screen and (max-width: 840px) {
  .survey_design_support_detail span {
    height: 36px;
    border-radius: 18px;
    margin: 0 auto 8px;
  }
}

/* CTA */

#CTA {
  height: 200px;
  background-image: linear-gradient(150deg, rgba(73, 190, 254, 1) 10%, rgba(75, 133, 227, 1) 90%);
  padding: 40px 0 20px;
}

@media screen and (max-width: 840px) {
  #CTA {
    height: 270px;
  }
}

.CTA_text {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 840px) {
  .CTA_text {
    font-size: 20px;
    max-width: 90%;
    margin: 0 auto;
  }
}

.CTA_button_wrapper {
  display: flex;
  column-gap: 40px;
  justify-content: center;
  margin-top: 20px;
}

@media screen and (max-width: 840px) {
  .CTA_button_wrapper {
    display: block;
  }
}

.CTA_button {
  display: block;
  width: 400px;
  height: 60px;
  border-radius: 40px;
  text-align: center;
  box-shadow: 0 4px 10px -3px rgb(54, 102, 181);
  color: #113674;
}

.CTA_button:hover {
  box-shadow: none;
  transform: translateY(2px);
  color: #58729D;
}

@media screen and (max-width: 840px) {
  .CTA_button {
    width: 90%;
    max-width: 400px;
    margin: 0 auto 16px;
  }
}

.CTA_download {
  background-color: #FFC50C;
}

.CTA_download:hover {
  background-color: #FFD654;
}

.CTA_contact {
  background-color: #FFF;
}

.CTA_button span {

  font-size: 20px;
  font-weight: bold;
  line-height: 60px;
}

/* features */

.feature_wrapper {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  max-width: 720px;
  margin: 72px auto;
  row-gap: 72px;
}

@media screen and (max-width: 840px) {
  .feature_wrapper {
    display: block;
  }
  .feature_box {
    margin-bottom: 48px;
  }
}

.feature_box img {
  display: block;
  height: 90px;
  margin: 0 auto 24px;
}

.feature_box p {
  text-align: center;
}

/* purpose */

.purpose_image_wrapper {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.purpose_box p {
  text-align: center;
  line-height: 1.5;
}

.purpose_wrapper1 {
  display: flex;
  max-width: 640px;
  margin: 0 auto;
  justify-content: space-between;
  margin-bottom: 64px;
}

@media screen and (max-width: 840px) {
  .purpose_wrapper1 {
    display: block;
  }

  .purpose_wrapper1 .purpose_box {
    margin-bottom: 56px;
  }
}

.purpose_wrapper1 img {
  display: block;
  height: 80px;
  margin: 0 auto 24px;
}

.purpose_wrapper2 {
  display: flex;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
  margin-bottom: 40px;
}

.purpose_wrapper2 img {
  display: block;
  height: 64px;
}

.purpose_wrapper3 {
  display: flex;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
  margin-bottom: 40px;
}

.purpose_wrapper3 img {
  display: block;
  height: 64px;
}

.purpose_box .width64 {
  width: 64px;
  height: initial;
}



@media screen and (max-width: 840px) {
.purpose_wrapper2.pc, .purpose_wrapper3.pc {
  display: none;
}
.purpose_wrapper_sp {
  display: grid !important;
  width: 90%;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  margin: 0 auto;
  column-gap: 8px;
  row-gap: 16px;
}

.purpose_wrapper_sp img {
  height: 64px;
}

.purpose_wrapper_sp p {
  font-size: 14px;
}

}

/* example_survey */

.example_survey_wrapper {
  display: flex;
  max-width: 1000px;
  width: 90%;
  column-gap: 32px;
  margin: 0 auto;
}

@media screen and (max-width: 840px) {
  .example_survey_wrapper {
    display: block;
    width: 90%;
  }
}

.example_survey_box {
  background-color: #FFF;
  border-radius: 14px;
  padding: 32px 0 40px;
  flex: 1;
}

@media screen and (max-width: 840px) {
  .example_survey_box {
    padding: 32px 0 8px;
    margin-bottom: 32px;
  }
}

.example_survey_caption {
  text-align: center;
  margin-bottom: 16px;
}

.example_survey_text {
  height: 90px;
  margin: 0 auto 16px;
  width: 80%;
}

.survey_detail {
  background-color: #F3F6FD;
  border-radius: 8px;
  padding: 8px;
  margin: 0 auto 32px;
  width: 80%;
}

.survey_detail p {
  text-align: center;
}

.performance_wrapper {
  display: flex;
  justify-content: space-between;
  column-gap: 24px;
  width: 70%;
  margin: 0 auto;
}

@media screen and (max-width: 840px) {
  .performance_wrapper {
    display: block;
  }
}

.performance_box div {
  width: 120px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  border-radius: 16px;
  margin-bottom: 8px;
}

@media screen and (max-width: 840px) {
  .performance_box div {
    margin: 0 auto 8px;
  }
}

.performance_box p {
  text-align: center;
}

@media screen and (max-width: 840px) {
  .performance_box p {
    margin: 0 auto 24px;
  }
}

.example_survey_box img {
  width: 80px;
  margin: 0 auto 16px;
  display: block;
}

.example_survey_figure {
  font-size: 28px;
}

/* case */

.case_wrapper {
  display: flex;
  column-gap: 20px;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 840px) {
  .case_wrapper {
    display: block;
  }
}

.case_box {
  flex: 1;
  border-radius: 14px;
  background-color: #FFF;
  box-shadow: 0 3px 10px 3px rgb(54, 102, 181, 0.1);
}

@media screen and (max-width: 840px) {
  .case_box {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.company_image {
  border-radius: 14px 14px 0 0;
  margin-bottom: 8px;
}

.company_logo {
  display: block;
  margin: 0 auto;
}

.case_company {
  text-align: center;
  margin-bottom: 24px;
}

.case_text {
  padding: 0 20px;
  margin-bottom: 30px;
}

@media screen and (max-width: 840px) {
  .case_text {
    padding-bottom: 30px;
  }
}


/* step */

.step_box {
  background-color: #FFF;
  box-shadow: 0 3px 10px 3px rgb(54, 102, 181, 0.1);
  position: relative;
  max-width: 1000px;
  width: 90%;
  border-radius: 18px;
  margin: 0 auto 48px;
}

.step_contents_wrapper {
  display: flex;
  column-gap: 32px;
  width: 90%;
  margin: auto;
  padding: 40px 0;
  align-items: center;
}

@media screen and (max-width: 840px) {
  .step_contents_wrapper {
    display: block;
    width: 90%;
  }
}

.step_number {
  position: absolute;
  left: 20px;
  top: -30px;
  font-family: "roboto", sans-serif;
  font-size: 60px;
  color: #3666B5;
  opacity: 30%;
  font-weight: bold;
}

.step_text_wrapper {
  flex: 1;
}

@media screen and (max-width: 840px) {
  .step_text_wrapper {
    width: 90%;
    margin: 0 auto;
  }
}

.step_content {
  margin-bottom: 8px;
}

.step_caption {
  margin-bottom: 16px;
}

.step_contents_wrapper img {
  flex: 1;
  max-width: 500px;
  width: 60%;
  height: 100%;
}

@media screen and (max-width: 840px) {
  .step_contents_wrapper img {
    display: block;
    margin: 24px auto 0;
    width: 90%;
  }
}

/* support */

.support_wrapper {
  display: flex;
  max-width: 1000px;
  width: 90%;
  column-gap: 60px;
  margin: 0 auto 60px;
  align-items: center;
}

@media screen and (max-width: 840px) {
  .support_wrapper {
    display: block;
  }
}

.support_wrapper img {
  max-width: 360px;
  width: 40%;
}

@media screen and (max-width: 840px) {
  .support_wrapper img {
    width: 90%;
    margin: 0 auto;
    display: block;
  } 
}

.support_caption {
  margin-bottom: 16px;
}

@media screen and (max-width: 840px) {
  .support_caption {
    text-align: center;
  }
}

.support_text_wrapper {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 840px) {
  .support_text_wrapper {
    width: 90%;
    margin: 0 auto;
  }
}

.resercher_check_wrapper {
  background-color: #F3F6FD;
  border-radius: 14px;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 24px;
  padding: 24px 0 40px;
}

@media screen and (max-width: 840px) {
  .resercher_check_wrapper {
    width: 90%;
  }
}

.resercher_check_heading {
  height: 40px;
  background-color: #3666B5;
  border-radius: 20px;
  width: 340px;
  line-height: 40px;
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 840px) {
  .resercher_check_heading {
    max-width: 320px;
    width: 90%;
    font-size: 16px;
  }
}

.resercher_check_contents {
  width: 90%;
  margin: 32px auto 0;
  display: flex;
  column-gap: 40px;
  align-items: center;
}

@media screen and (max-width: 840px) {
  .resercher_check_contents {
    display: block;
  }
}

.resercher_check_image {
  flex: 1
}

@media screen and (max-width: 840px) {
  .resercher_check_image {
    margin-bottom: 24px;
  }
}

.resercher_check_image p {
  text-align: center;
  margin-bottom: 12px;
}

.resercher_check_image img {
  width: 440px;
}

@media screen and (max-width: 840px) {
  .resercher_check_image img {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }
}


.resercher_check_text_wrapper {
  flex: 1
}

@media screen and (max-width: 840px) {
  .resercher_check_text_wrapper {
    width: 90%;
    margin: 0 auto;
  }
}

.resercher_check_caption_wrapper {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  column-gap: 20px;
  
}

@media screen and (max-width: 840px) {
  .resercher_check_caption_wrapper {
    justify-content: center;
  }
  .resercher_check_caption_wrapper p {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 22px;
  }
}

.resercher_check_caption_wrapper img {
  width: 48px;
  height: 100%;
}

/* charge */

.charge_wrapper {
  display: flex;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 80px;
  column-gap: 40px;
  align-items: center;
}

@media screen and (max-width: 840px) {
  .charge_wrapper {
    display: block;
  }

  .charge_wrapper img {
    display: block;
    margin: 24px auto;
  }
}

.charge_box {
  background-color: #FFF;
  border-radius: 14px;
  box-shadow: 0 3px 10px 3px rgb(54, 102, 181, 0.1);
  text-align: center;
  width: 100%;
  padding: 24px 0 8px;
}

@media screen and (max-width: 840px) {
  .charge_box {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.charge_box p {
  text-align: center;
  margin-bottom: 24px;
} 

.charge_figure {
  font-size: 60px;
  font-family: "roboto", sans-serif;
}

@media screen and (max-width: 480px) {
  .charge_figure {
    font-size: 48px;
  }
  .charge_text {
    font-size: 14px;
  }
}


.charge_wrapper img {
  width: 32px;
  height: 100%;
}

.charge_example {
  max-width: 900px;
  width: 90%;
  background-color: #FFF;
  border-radius: 8px;
  margin: 0 auto 64px;
  padding: 20px 0 40px;
}

@media screen and (max-width: 840px) {
  .charge_example {
    width: 90%;
  }
}

.charge_example_caption {
  width: 240px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  text-align: center;
  margin: 0 auto;
}

.charge_example img {
  width: 800px;
  width: 90%;
  display: block;
  margin: 8px auto 0;
}

@media screen and (max-width: 840px) {
  .charge_example img {
    margin-top: 16px;
    width: 90%;
  }
}

.lowest_charge {
  margin-bottom: 80px;
}

.lowest_charge p {
  text-align: center;
  margin-bottom: 24px;
}

.estimate_button {
  display: block;
  width: 420px;
  height: 72px;
  border-radius: 36px;
  margin: 0 auto 24px;
  background-color: #4285F4;
  color: #FFF;
  text-align: center;
  line-height: 72px;
  box-shadow: 0 2px 6px -2px rgb(0, 0, 0, 0.4);
}

.estimate_button:hover {
  background-color: #7AA9F7;
  box-shadow: none;
  transform: translateY(2px);
}

@media screen and (max-width: 480px) {
  .estimate_button {
    width: 90%;
    font-size: 16px;
  }
}

/* faq */

.faq_wrapper {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 840px) {
  .faq_wrapper {
    width: 90%;
  }
}

.question, .answer {
  position: relative;
  background: #fff;
  margin: 20px 0 0 0;
  border-radius: 6px;
  box-shadow: 0 3px 10px 3px rgb(54, 102, 181, 0.1);
  display: flex;
  align-items: center;
}

.question:after, .answer:after {
  position: absolute;
  top: 17px;
  left: 12px;
  display: block;
  font-family: "roboto", sans-serif;
  font-size: 20px;
  font-weight: bold;
  width: 30px;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .question:after, .answer:after {
    top: 15px;
  }
}

.question {
  padding: 0 56px;
  min-height: 60px;
}

@media screen and (max-width: 480px) {
  .question {
    min-height: 48px;
  }
}

.question:after {
  content: "Q";
  color: #3666B5;
}

.question:hover {
  cursor: pointer;
}

@media screen and (max-width: 480px) {
  .question {
    padding: 10px 40px 10px 48px;
    margin-top: 20px;
  }
}

.answer {
  padding: 20px 56px;
  margin: 10px auto 30px;
}

@media screen and (max-width: 480px) {
  .answer {
    padding: 10px 40px 10px 48px;
  }
}

.answer:after {
  content: "A";
  color: #EAB200;
}

@media screen and (max-width: 840px) {
  .answer {
    margin: 10px auto 32px;
  }
}

/* download */

.doc_despriction_wrapper {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
}

@media screen and (max-width: 800px) {
  .doc_despriction_wrapper {
    display: block;
    text-align: center;
  }
}

.doc_image {
  width: 400px;
  height: 100%;
}

@media screen and (max-width: 800px) {
  .doc_image {
    height: auto;
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 480px) {
  .doc_image {
    width: 90%;
  }
}

.doc_despriction {
  line-height: 26px;
  margin-bottom: 16px;
}

@media screen and (max-width: 800px) {
  .doc_despriction {
    text-align: center;
  }
}

.doc_list {
  line-height: 26px;
}

@media screen and (max-width: 800px) {
  .doc_list {
    text-align: center;
  }
}

.form_container {
  display: flex;
  justify-content: center;
  width: 80vw;
  max-width: 800px;
  height: auto;
  margin: 40px auto;
  border-radius: 24px;
  background-color: #FFF;
  box-shadow: 0 3px 10px 3px rgb(54, 102, 181, 0.1);
  padding: 40px 32px 64px;
}

#satori__creative_container {
  height: 120%;
}

@media screen and (max-width: 480px) {
  .form_container {
    padding: 40px 16px 32px;
  }
}

/* justsystems */

.justsysytems_wrapper {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
  column-gap: 48px;
  max-width: 1000px;
  width: 90%;
}

@media screen and (max-width: 840px) {
  .justsysytems_wrapper {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}

.justsysytems_wrapper th {
  padding: 8px 32px 8px 0;
}

.justsysytems_wrapper td {
  white-space: initial;
}

@media screen and (max-width: 840px) {
  .justsysytems_wrapper table {
    margin: 0 auto 40px;
  }
  .justsysytems_wrapper th {
    display: block;
    padding: 24px 0 8px;
    text-align: center;
  }

  .justsysytems_wrapper td {
    display: block;
    text-align: center;
  }
}

.justsysytems_wrapper img {
  max-width: 400px;
  width: 50%;
  height: auto;
}

.justsysytems_contents img {
  padding-top: 24px;
}

@media only screen and (max-width: 840px) {
  .justsysytems_wrapper img {
    width: 340px;
    width: 90%;
    display: block;
    margin: 0 auto;
  }
}

/*footer*/

footer {
  display: block;
  border-top: 1px solid #ddd;
  padding: 20px 0 140px;
  font-size: 12px;
  text-align: center;
}

@media only screen and (max-width: 840px) {
  footer {
    padding-bottom: 60px;
    padding-right: initial !important;
  }
}

@media only screen and (max-width: 800px) {
  footer {
    padding-top: 0;
  }
}

footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
}

@media only screen and (min-width: 600px) {
  footer::after {
    display: none;
  }
}

footer .link {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 800px) {
  footer .link {
    margin-top: 24px;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  footer .link .footer_logo {
    border: none;
    height: 48px;
  }
}

footer .link a {
  text-decoration: none;
}

@media screen and (max-width: 800px) {
  footer .link a {
    display: block;
    margin: 4px;
    text-align: center;
  }
}

footer .link a:hover {
  color: #3666B5;
}

footer .link a+a {
  margin-left: 15px;
}

footer .copyright {
  font-family: Helvetica;
  line-height: 30px;
  text-align: center;
}

/*floating_CTA PC*/

#floating_CTA.pc {
  display: none;
}

@media screen and (max-width: 840px) {
  #floating_CTA.pc {
    display: none !important;
  }
}

.floating_CTA_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 40px;
  width: 100%;
  height: 120px;
  position: fixed;
  bottom: 0;
  z-index: 100000;
  background-image: linear-gradient(150deg, rgba(73, 190, 254, 0.8) 10%, rgba(75, 133, 227, 0.8) 90%);
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  from {
    transform: translateY(100px);
  }

  to {
    transform: translateY(0);
  }
}

.floating_CTA_button p {
  position: relative;
  text-align: center;
  margin-top: 12px;
  font-weight: bold;
}

.floating_CTA_button p:before,
.floating_CTA_button p:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #FFF;
  width: 2px;
  height: 1.5em;
  margin: 0 1em;
  margin-top: -.2em;
  vertical-align: middle;
}

.floating_CTA_button p:before {
  transform: rotate(-35deg);
}

.floating_CTA_button p:after {
  transform: rotate(35deg);
}


.floating_CTA_button a {
  display: block;
  width: 330px;
  height: 48px;
  font-size: 20px;
  font-weight: bold;
  color: #113674;
  text-align: center;
  line-height: 45px;
  border-radius: 24px;
  box-shadow: 0 4px 10px -3px rgb(54, 102, 181);
  transition: .4s;
  margin-top: 10px;
}
.floating_CTA_button a:hover {
  box-shadow: none;
  transform: translateY(2px);
  color: #58729D;
}

.floating_download a {
  background-color: #FFC50C;
}

.floating_download a:hover {
  background-color: #FFD654;
}

.floating_contact a {
  background-color: #FFF;
}

.floating_CTA_button .inquiry:hover {
  transform: scale(1.1);
}

.floating_CTA_button .download:hover {
  transform: scale(1.1);
}

/* sp */
@media screen and (max-width: 840px) {
  #floating_CTA_sp {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    height: 54px;
    position: fixed;
    bottom: 0;
    z-index: 100000;
  }

  #floating_CTA_sp a {
    font-size: 16px;
    font-weight: bold;
    width: 50vw !important;
    text-align: center;
    padding-top: 17px;
  }

  #floating_CTA_sp .inquiry {
    color: #FFF;
    background-color: #3666B5;
  }

  #floating_CTA_sp .download {
    color: #113674;
    background-color: #FFC50C;
  }
}