@charset "UTF-8";

/*--------------------------------------------
	 サイト基本設定　ここの設定はサイト依存
--------------------------------------------*/
body,
html {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 1.8;
  letter-spacing: 1.2;
  word-break: break-all;
  color: #191919;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 896px) {
  body,html {
    overflow-x: hidden;
  }
}
body img {
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

html.fixed {
  overflow: hidden;
}

a {
  color: #191919;
  text-decoration: none;
  word-wrap: break-word;
}

a:hover {
  color: #191919;
  transition: 0.7s;
}

p,
li p,
address,
table {
  font-size: 1rem;
  line-height: 1.875;
  font-style: normal;
}

li {
  font-size: 1.125rem;
  line-height: 1.425;
}

@media (max-width: 896px) {
  li {
    font-size: 1.025rem;
  }
}

a img:hover {
  opacity: 0.7;
  transition: 0.7s;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media (max-width: 896px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*--------------------------------------------
	Header / ヘッダー
--------------------------------------------*/
header {
  position: fixed;
  padding: 20px 32px;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 897px) {
  header.scrolled {
    background-color: #fff;
    box-shadow: 0px 6px 13px #8E8E8E1F;
    transition: all .7s;
    padding: 15px 32px;
  }
}
@media (max-width: 896px) {
  header {
    height: 60px;
    position: relative;
  }
}

header .hd_inner {
  align-items: center;
  min-width: 1280px;
}

header .hd_inner .hd_logo {
  width: 220px;
}

@media (max-width: 896px) {
  header .hd_inner .hd_logo {
    width: 125px;
    line-height: 1;
  }
}

header .hd_inner .hd_top_link {
  align-items: center;
}

header .hd_inner .hd_top_link li {
  margin-left: 22px;
}

header .hd_inner .hd_top_link li a {
  font-size: 1.025rem;
  font-weight: 900;
  color: #191919;
}

header .hd_inner .hd_top_link li a:hover {
  color: #129393;
  transition: 0.5s;
}

.download_btn {
  position: relative;
}

.download_btn::before {
  position: absolute;
  content: "";
  top: 52%;
  left: 25px;
  transform: translateY(-50%);
  background: url(../img/dl_icon.svg) no-repeat;
  width: 20px;
  height: 20px;
}

.download_btn a {
  display: block;
  padding: 12px 62px;
  background: #ed8b0b;
  color: #FFF;
  font-weight: 900;
  border-radius: 50px;
}

.download_btn a:hover {
  background: #129393;
  transition: 0.7s;
}

/*--------------------------------------------
	ハンバーガーメニュー
--------------------------------------------*/
.sp_nav {
  pointer-events: none;
  position: fixed;
  overflow: scroll;
  top: 0;
  left: 12%;
  z-index: 99;
  width: 88%;
  height: 100%;
  transform: translateX(100vw);
  transition: all 0.3s linear;
  background: #FFF;
}

.sp_nav.active {
  pointer-events: auto;
  transform: translateX(0);
}

.nav-inner {
  height: 100%;
  padding: 2.75em 2.2em 0;
  box-sizing: border-box;
  overflow: scroll;
}

.nav-inner .form_area {
  margin-bottom: 1.2em;
}

.nav-inner address {
  font-size: 0.825rem;
  line-height: 1.625;
}

.menu-btn {
  position: fixed;
  top: 0.575em;
  right: 0.85em;
  display: flex;
  width: 46px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background: #FFF;
  z-index: 100;
}

.menu-btn span {
  position: absolute;
  top: 1.225em;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  transition: 0.3s ease transform, 0.3s ease opacity;
}

.menu-btn span:first-child {
  transform: translate(-50%, -10px);
}

.menu-btn span:last-child {
  transform: translate(-50%, 9px);
}

.menu-btn.active span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
  background: #000;
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
  background: #000;
}

.sp_logo {
  width: 52%;
}

.sp_nav_list {
  margin-bottom: 1.725em;
}

.sp_nav_list li {
  vertical-align: middle;
  font-size: 0.8rem;
  border-bottom: 1px solid #c9c8c8;
  color: #FFF;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  font-weight: 900;
}

.sp_nav_list li a {
  display: block;
  padding: 1.725em 1.2em;
  font-weight: 900;
}

/*--------------------------------------------
	Contents / コンテンツ共通
--------------------------------------------*/
main {
  position: relative;
}

.s_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7.25em 0;
  box-sizing: border-box;
}

@media (max-width: 896px) {
  .s_inner {
    max-width: 100%;
    padding: 5.25em 1.75em;
  }
}

.viewPC {
  display: block;
}

@media (max-width: 896px) {
  .viewPC {
    display: none;
  }
}

.viewSP {
  display: none;
}

@media (max-width: 896px) {
  .viewSP {
    display: block;
  }
}

.img_ct {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.tCenter {
  text-align: center !important;
}

.tLeft {
  text-align: left !important;
}

.tRight {
  text-align: right !important;
}

.s_mainTitle {
  position: relative;
  font-style: normal;
  font-size: 32px;
  font-weight: 900;
  color: #191919;
  margin-bottom: 1.925em;
  line-height: 1.625em;
  text-align: center;
}

@media (max-width: 896px) {
  .s_mainTitle {
    font-size: 1.325rem;
  }
}

.s_mainTitle::after {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 28px;
  height: 21px;
  background: url(../img/title_icon.svg);
}

.s_subTitleBox {
  text-align: center;
}

.s_subTitleBox .s_subTitle {
  display: inline-block;
  background: #108686;
  margin-bottom: 32px;
  padding: 18px 62px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 900;
  color: #FFF;
  text-align: center;
  line-height: 1.625em;
}

@media (max-width: 896px) {
  .s_subTitleBox .s_subTitle {
    font-size: 1.25rem;
    padding: 18px 32px;
  }
}

.s_leadText {
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.825em;
}

@media (max-width: 896px) {
  .s_leadText {
    font-size: 1.025rem;
  }
}

.s_leadText span {
  font-size: 36px;
}

@media (max-width: 896px) {
  .s_leadText span {
    font-size: 1.25rem;
  }
}

.under_line {
  position: relative;
}

.under_line::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  content: "";
  width: 100%;
  height: 13px;
  background: #FFEA00;
  z-index: -1;
}

.flexbox {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  justify-content: space-between;
}

@media (max-width: 896px) {
  .flexbox {
    display: block;
  }
}

table {
  width: 100%;
  font-size: 12px;
}

table th,
table td {
  padding: 12px;
  font-size: 16px;
  line-height: 1.6;
  vertical-align: middle;
}

@media (max-width: 896px) {

  table th,
  table td {
    padding: 20px;
    font-size: 16px;
  }
}

table p {
  font-size: 16px !important;
  line-height: 1.45 !important;
}

.mb_small {
  margin-bottom: 1.75em;
}

@media (max-width: 896px) {
  .mb_small {
    margin-bottom: 22px;
  }
}

.mb_mid {
  margin-bottom: 2.75em;
}

@media (max-width: 896px) {
  .mb_mid {
    margin-bottom: 42px;
  }
}

.mb_large {
  margin-bottom: 3.75em;
}

@media (max-width: 896px) {
  .mb_large {
    margin-bottom: 62px;
  }
}

.font_large {
  font-size: 1.425rem;
  font-weight: 900;
}

input[type=text],
input[type=radio],
input[type=checkbox],
input[type=submit],
input[type=button],
textarea {
  padding: 7px 12px;
}

.s_cta {
  background: #129393;
}

.s_cta .s_inner {
  padding: 84px 0;
}

@media (max-width: 896px) {
  .s_cta .s_inner {
    padding: 2.725rem;
  }
}

.s_cta .s_cta_text .s_ctaTitle {
  position: relative;
  margin-bottom: 60px;
  font-size: 32px;
  font-weight: 900;
  color: #FFF;
}

@media (max-width: 896px) {
  .s_cta .s_cta_text .s_ctaTitle {
    font-size: 1.425rem;
    text-align: center;
    line-height: 1.425;
  }
}

.s_cta .s_cta_text .s_ctaTitle::after {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url(../img/cta_title_icon.svg);
  width: 79px;
  height: 14px;
}

.s_cta .s_cta_text .cta_btn {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  filter: drop-shadow(0px 0px 7px rgba(120, 120, 120, 0.6));
}

.s_cta .s_cta_text .cta_btn::before {
  position: absolute;
  content: "";
  top: 52%;
  left: 95px;
  transform: translateY(-50%);
  background: url(../img/dl_icon02.svg) no-repeat;
  width: 36px;
  height: 50px;
}

@media (max-width: 896px) {
  .s_cta .s_cta_text .cta_btn::before {
    display: none;
  }
}

.s_cta .s_cta_text .cta_btn a {
  display: block;
  padding: 25px 0;
  background: #ed8b0b;
  color: #FFF;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  border-radius: 50px;
}

@media (max-width: 896px) {
  .s_cta .s_cta_text .cta_btn a {
    font-size: 1.025rem;
  }
}

.s_cta .s_cta_text .cta_btn a:hover {
  background: #191919;
  transition: 0.7s;
}

.s_cta img {
  width: 518px;
}

@media (max-width: 896px) {
  .s_cta img {
    display: block;
    width: 72%;
    margin: 25px auto 0;
  }
}

.demo_linkBox {
  text-align: center;
}

.demo_linkBox .demo_link {
}

.demo_linkBox .demo_link::after {
}

.demo_linkBox .demo_link a {
  font-size: 24px;
  font-weight: 900;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2%;
}
@media (max-width: 896px) {
  .demo_linkBox .demo_link a {
    font-size: 1.025rem;
  }
}
.demo_linkBox .demo_link a:hover {
  color: #ed8b0b;
  transition: 0.5s;
}

.demo_linkBox .demo_link a span {
  position: relative;
  display: flex;
}
.demo_linkBox .demo_link a span img {
  width: 36px;
  margin: 0;
}
.demo_linkBox .demo_link a span img.hover {
  position: absolute;
  left: 0;
  top: 0;
}
.demo_linkBox .demo_link a:hover span img.hover {
  opacity: 0;
  transition: 0.5s;
}

/*-------------------------------------
	メインコンテンツ
--------------------------------------*/
#s_mv {
  position: relative;
  width: 100%;
  margin: 0 0 12.25em;
  line-height: 0;
}

@media (max-width: 896px) {
  #s_mv {
    margin: -60px 0 5.75em;
  }
}

#s_mv .mv_mov {
  background: #D5FAF6;
  height: 680px;
}
@media (max-width: 896px) {
  #s_mv .mv_mov {
    height: 480px;
  }
}

#s_mv .mv_mov video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.2;
}

#s_mv .s_mv_content {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  width: 1280px;
}

@media (max-width: 896px) {
  #s_mv .s_mv_content {
    width: 90%;
    top: 20%;
  }
}

#s_mv .s_mv_content .s_mv_text h1 {
  position: relative;
  margin-bottom: 27px;
  font-size: 58px;
  font-weight: 900;
  line-height: 1.45;
}

@media (max-width: 896px) {
  #s_mv .s_mv_content .s_mv_text h1 {
    font-size: 1.825rem;
  }
}

#s_mv .s_mv_content .s_mv_text h1::after {
  position: absolute;
  top: -35px;
  right: 0;
  content: "";
  background: url(../img/mov_icon.svg) no-repeat;
  width: 56px;
  height: 52px;
}

#s_mv .s_mv_content .s_mv_text h1 .f_orange {
  color: #ed8b0b;
}

#s_mv .s_mv_content .s_mv_text h1 .f_small {
  font-size: 48px;
}

@media (max-width: 896px) {
  #s_mv .s_mv_content .s_mv_text h1 .f_small {
    font-size: 1.25rem;
  }
}

#s_mv .s_mv_content .s_mv_text h1 .f_icon {
  position: relative;
  margin-right: 60px;
}

#s_mv .s_mv_content .s_mv_text p {
  font-size: 22px;
  font-weight: 900;
}

@media (max-width: 896px) {
  #s_mv .s_mv_content .s_mv_text p {
    font-size: 1.025rem;
  }
}

#s_mv .s_mv_content .s_mv_text img {
  display: block;
  width: 600px;
  margin: 30px auto 0;
}

@media (max-width: 896px) {
  #s_mv .s_mv_content .s_mv_text img {
    width: 100%;
  }
}

.s_mv_form {
  width: 530px;
  background: #FFF;
  box-shadow: 0px 0px 15px -5px #ababab;
}

@media (max-width: 896px) {
  .s_mv_form {
    width: auto;
  }
}

.s_mv_form .s_mv_formTitle {
  background: #129393;
  padding: 15px 0;
  text-align: center;
}

.s_mv_form .s_mv_formTitle p {
  font-size: 20px;
  font-weight: 900;
  color: #FFF;
}

.s_mv_form .s_mv_formTitle p span {
  background: #ed8b0b;
  margin-right: 10px;
  padding: 10px 12px;
  border-radius: 5px;
}

.s_mv_form .s_mv_form_inner {
  padding: 30px 51px 51px;
  box-sizing: border-box;
}

.s_mv_form .s_mv_form_inner .s_mv_form_box {
  margin-bottom: 20px;
}

.s_mv_form .s_mv_form_inner .s_mv_form_box label {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 5px;
  font-weight: 900;
  line-height: 1;
}

.s_mv_form .s_mv_form_inner .s_mv_form_box input {
  background: #FFF;
  border: 1px solid #ccc;
  width: 100%;
  height: 45px;
  padding: 0 15px;
  font-size: 16px;
  box-sizing: border-box;
}

.s_mv_form .s_mv_form_inner p {
  font-size: 12px;
}

.s_mv_form .s_mv_form_inner button {
  display: block;
  width: 250px;
  margin: 20px auto 0;
  border: none;
  transition: .4s;
  opacity: 0.2;
  background: transparent;
}
@media (max-width: 896px) {
  .s_mv_form .s_mv_form_inner button {
    width: 100%;
  }
}

.s_contentBox_list li {
  margin-bottom: 70px;
}

.s_contentBox_list li:last-child {
  margin-bottom: 0;
}

.s_contentBox_list li:nth-child(2),
.s_contentBox_list li:nth-child(4) {
  flex-direction: row-reverse;
}

.s_contentBox_list .s_contentBox .s_contentBox_text {
  width: 600px;
  margin: 0 20px 0 0;
}

.s_contentBox_list li:nth-child(2) .s_contentBox_text,.s_contentBox_list li:nth-child(4) .s_contentBox_text  {
  margin: 0 0 0 20px;
}

@media (max-width: 896px) {
  .s_contentBox_list .s_contentBox .s_contentBox_text {
    width: auto;
    margin: 0;
  }
}

.s_contentBox_list .s_contentBox .s_contentBox_text .s_contentBox_num {
  margin-bottom: 20px;
  font-size: 36px;
  font-family: "Kanit", serif;
  font-weight: 900;
  font-style: normal;
  color: #191919;
}

@media (max-width: 896px) {
  .s_contentBox_list .s_contentBox .s_contentBox_text .s_contentBox_num {
    font-size: 1.25rem;
  }
}

.s_contentBox_list .s_contentBox .s_contentBox_text .s_contentBox_num span {
  margin-left: 8px;
  font-size: 64px;
  color: #129393;
  line-height: 1.525;
}

@media (max-width: 896px) {
  .s_contentBox_list .s_contentBox .s_contentBox_text .s_contentBox_num span {
    font-size: 2.825rem;
  }
}

.s_contentBox_list .s_contentBox .s_contentBox_text h3 {
  margin-bottom: 30px;
  font-size: 24px;
}

@media (max-width: 896px) {
  .s_contentBox_list .s_contentBox .s_contentBox_text h3 {
    font-size: 1.25rem;
  }
}

.s_contentBox_list .s_contentBox .s_contentBox_image {
  width: 580px;
}

@media (max-width: 896px) {
  .s_contentBox_list .s_contentBox .s_contentBox_image {
    width: auto;
  }
}

@media (max-width: 896px) {
  .s_contentBox_list .s_contentBox p {
    margin-bottom: 1.025em;
  }
}

#s_usercompany {
  padding: 0 0 7.25em;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

#s_usercompany .scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

#s_usercompany .scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

#s_usercompany .scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

#s_usercompany .scroll-infinity__item {
  width: 12.5vw;
}

@media (max-width: 896px) {
  #s_usercompany .scroll-infinity__item {
    width: 25vw;
  }
}

#s_usercompany .scroll-infinity__item>img {
  width: 100%;
}

@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0%);
  }
}

#s_usercompany .scroll-infinity__list--right {
  animation: infinity-scroll-right 80s infinite linear 0.5s both;
}

#s_about {
  position: relative;
  background: #E9FFFF;
}

#s_about .s_inner {
  position: relative;
  z-index: 1;
}

#s_about::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 300px;
  height: 300px;
  border-radius: 0 0 100% 0;
  background: #D0FAFA;
}

#s_about::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 300px;
  height: 300px;
  border-radius: 100% 0 0 0;
  background: #D0FAFA;
}

#s_about .s_contentBox_image {
  padding: 30px;
  box-sizing: border-box;
  background: #FFF;
  box-shadow: 0px 0px 15px -5px #ababab;
}
#s_movie {
  position: relative;
  background: #D0FAFA;
  padding: 60px 0 40px;
}
#s_movie::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 300px;
    height: 300px;
    border-radius: 0 0 100% 0;
    background: #E9FFFF;
}
@media (max-width: 896px) {
  #s_movie::before {
    content: none;
  }
}
#s_movie::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    width: 300px;
    height: 300px;
    border-radius: 100% 0 0 0;
    background: #E9FFFF;
}
@media (max-width: 896px) {
  #s_movie::after {
    content: none;
  }
}
#s_movie h3 {
  text-align: center;
  font-size: 24px;
}
@media (max-width: 896px) {
  #s_movie h3 {
    font-size: 1.25rem;
  }
}
#s_movie h3 span {
  position: relative;
  z-index: 1;
}
#s_movie h3 span::after {
    position: absolute;
    left: 0;
    bottom: -2px;
    content: "";
    width: 100%;
    height: 13px;
    background: #FFEA00;
    z-index: -1;
}
#s_movie p {
  color:#129393;
  text-align: center;
  font-size: 24px;
}
@media (max-width: 896px) {
  #s_movie p {
    font-size: 1.25rem;
  }
}
#s_movie div {
  width: 90%;
  max-width:700px;
  margin: 0 auto;
}
.s_scene_head {
  background: #FFFCFC;
  margin-bottom: 50px;
  padding: 75px;
  box-sizing: border-box;
  box-shadow: 0px 0px 15px -5px #ababab;
}

@media (max-width: 896px) {
  .s_scene_head {
    padding: 2.225em;
  }
}

.s_scene_head_text .s_scene_head_title {
  margin-bottom: 30px;
  font-size: 24px;
}

#s_scene .scene_leadImage {
  width: 522px;
  margin-left: 45px;
}

@media (max-width: 896px) {
  #s_scene .scene_leadImage {
    width: 100%;
    margin-left: 0;
    padding: 30px 0 0;
  }
}

#s_scene .s_contentBox,
#s_merit .s_contentBox {
  align-items: center;
}

#s_scene .s_scene_list {
  align-items: stretch;
}

#s_scene .s_scene_list li {
  position: relative;
  width: 32%;
}

@media (max-width: 896px) {
  #s_scene .s_scene_list li {
    width: auto;
  }
}

#s_scene .s_scene_list li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  width: 100%;
  height: 385px;
  background: #FFF8F8;
  border-radius: 50%;
  z-index: -1;
}

#s_scene .s_scene_list li img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 280px;
}

#s_scene .s_scene_list li h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 900;
  color: #108686;
  text-align: center;
}

#s_merit {
  position: relative;
}

#s_merit .s_inner {
  position: relative;
  z-index: 1;
}

#s_merit::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 300px;
  height: 300px;
  border-radius: 0 0 100% 0;
  background: #D0FAFA;
}

#s_merit::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 300px;
  height: 300px;
  border-radius: 100% 0 0 0;
  background: #D0FAFA;
}

#s_merit .s_comparison {
  background: #FFFCFC;
  padding: 75px 170px;
  box-sizing: border-box;
  box-shadow: 0px 0px 15px -5px #ababab;
}

@media (max-width: 896px) {
  #s_merit .s_comparison {
    padding: 2.725em 1.725em;
  }
}

#s_merit .s_comparison .s_comparisonTitle {
  position: relative;
  margin-bottom: 100px;
  font-size: 32px;
  font-weight: 900;
}

@media (max-width: 896px) {
  #s_merit .s_comparison .s_comparisonTitle {
    font-size: 1.425rem;
    line-height: 1.425;
  }
}

#s_merit .s_comparison .s_comparisonTitle::after {
  position: absolute;
  bottom: -92px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 264px;
  height: 89px;
  background: url(../img/comparison_titleImage.png) no-repeat;
}

#s_merit .s_comparison .s_comparisonList {
  flex-wrap: wrap;
}

#s_merit .s_comparison .s_comparisonList li {
  width: 50%;
  padding: 0 22px;
  box-sizing: border-box;
}

@media (max-width: 896px) {
  #s_merit .s_comparison .s_comparisonList li {
    width: auto;
  }
}

#s_merit .s_comparison .s_comparisonList li img {
  display: block;
  width: auto;
  height: 280px;
  margin: 0 auto;
}

@media (max-width: 896px) {
  #s_merit .s_comparison .s_comparisonList li img {
    width: 75%;
    height: auto;
  }
}

#s_merit .s_comparison .s_comparisonList li .s_comparisonList_title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 900;
  color: #108686;
  text-align: center;
}
#s_comparison .s_inner {
  padding-bottom: 0;
}
#s_comparison .function_img {
  background: #f4f4f4;
  padding: 35px;
  box-sizing: border-box;
}

#s_howto {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7.25em 0;
  box-sizing: border-box;
}

@media (max-width: 896px) {
  #s_howto {
    padding: 7.25em 1.75em;
  }
}

#s_howto .content-8-box {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
  border-radius: 100px;
  -ms-box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
}

@media (max-width: 896px) {
  #s_howto .content-8-box {
    display: block;
    padding: 1.25em;
    border-radius: 20px;
    box-sizing: border-box;
  }
}

#s_howto .content-8-box .step {
  width: 40px;
  margin: 33px 0 0 51px;
}

#s_howto .content-8-box .icon {
  width: 76px;
  margin: 20px 0 0 54px;
}

#s_howto .content-8-box .content-8-box-title {
  margin: 30px 0 0 32px;
}

#s_howto .content-8-box .content-8-box-title h3 {
  font-size: 20px;
  color: #00B29E;
  font-weight: bold;
  letter-spacing: 0.1em;
}

#s_howto .content-8-box .content-8-box-title p {
  padding-top: 17px;
}

#s_howto .demo_linkBox {
  margin-top: 60px;
}

#s_howto .demo_linkBox .demo_link::after {
  background: url(../img/demo_link_icon02.svg) no-repeat;
}

#s_howto .demo_linkBox .demo_link a {
  color: #129393;
}
#s_howto .demo_linkBox .demo_link a:hover {
  color: #ed8b0b;
  transition: 0.5s;
}

#s_faq {
  background: #E9FFFF;
}

#s_faq .faq_list {
  width: 82%;
  margin: 0 auto;
}

@media (max-width: 896px) {
  #s_faq .faq_list {
    width: auto;
  }
}

#s_faq .faq_list li {
  border-bottom: 1px solid #ccc;
  margin-bottom: 3.25em;
  padding-bottom: 3.25em;
}

#s_faq .faq_list li .faq_question {
  margin-bottom: 1.025em;
  justify-content: flex-start;
  align-items: center;
}

@media (max-width: 896px) {
  #s_faq .faq_list li .faq_question {
    display: flex;
    align-items: flex-start;
  }
}

#s_faq .faq_list li .faq_question .question_icon {
  width: 5%;
  padding: 10px 2px;
  background: #129393;
  color: #FFF;
  font-weight: 900;
  border-radius: 7px;
  text-align: center;
}

@media (max-width: 896px) {
  #s_faq .faq_list li .faq_question .question_icon {
    width: 15%;
    margin-right: 2%;
  }
}

#s_faq .faq_list li .faq_question .faq_question_text {
  width: 92%;
  margin-left: 2%;
  font-size: 22px;
  font-weight: 900;
}

@media (max-width: 896px) {
  #s_faq .faq_list li .faq_question .faq_question_text {
    font-size: 1.25rem;
    line-height: 1.525;
  }
}

/*-------------------------------------
	お問い合わせ
--------------------------------------*/
.satei_flowbox {
  background: #f3fde4;
  padding: 8%;
}

.satei_flowbox .ttl02 {
  color: #2c2c2c;
}

#s_contact .s_inner {
  width: 960px;
  margin: 0 auto;
}

@media (max-width: 896px) {
  #s_contact .s_inner {
    width: 100%;
  }
}

#s_contact table {
  width: 100%;
  text-align: left;
}

#s_contact table th,
#s_contact table td {
  width: 100%;
  display: block;
  box-sizing: border-box;
}

@media (max-width: 896px) {

  #s_contact table th,
  #s_contact table td {
    width: 100%;
    display: block;
    padding: 12px 0;
  }
}

#s_contact table th {
  vertical-align: middle;
  text-align: left;
  position: relative;
  padding: 4% 0 1%;
  font-size: 15px;
  border-bottom: none;
}

@media (max-width: 896px) {
  #s_contact table th {
    border-bottom: none;
  }
}

#s_contact table td {
  vertical-align: middle;
  padding: 1% 0 4%;
  border-bottom: 1px solid #dedede;
  font-size: 14px;
}

@media (max-width: 896px) {
  #s_contact table td .size_mail {
    width: 100%;
  }
}

#s_contact table .must,
#s_contact table .not_must {
  position: relative;
  top: 0;
  font-size: 11px;
  color: #fff;
  background: #b11901;
  display: inline-block;
  padding: 2px 9px;
  margin-left: 8px;
}

#s_contact table .not_must {
  background: #585656;
}

#s_contact .attention {
  font-size: 12px;
  font-weight: normal;
}

#s_contact table .size01 {
  width: 60%;
}

#s_contact table .size02 {
  width: 95%;
}

#s_contact table .size03 {
  width: 48%;
}

@media (max-width: 896px) {
  #s_contact .confirmation {
    margin: 20px 0 40px;
  }
}

#s_contact .btn .confirmation_btn,
#s_contact .btn .back_btn {
  background: #f6990a;
  width: 90%;
  padding: 15px 0;
  color: #FFF;
  font-size: 14px;
  margin-top: 20px;
}

#s_contact .btn .back_btn {
  background: #c2c2c2;
}

#s_contact table td .checkbox_list {
  display: block;
}

#s_contact table td .checkbox_list li {
  width: 100%;
}

#s_contact table input,
#s_contact table textarea,
#s_contact input[type=button],
#s_contact select,
#s_contact input[type=file] {
  background: #FFF;
  border: 1px solid #ccc;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 7px 12px;
  width: 100%;
  font-size: 16px;
}

#s_contact input[type=file] {
  border: none !important;
}

#s_contact table input,
#s_contact table select {
  color: #2c2c2c;
  height: 55px;
}

@media (max-width: 896px) {

  #s_contact table input,
  #s_contact table select {
    width: 60%;
  }
}

#s_contact table select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

#s_contact table select::-ms-expand {
  display: block;
}

#s_contact table .content label {
  position: relative;
  margin: 0 10px 0 8px;
}

#s_contact table input[type=radio] {
  position: absolute;
  top: 0px;
  left: -22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-appearance: radio;
}

#s_contact table input[type=checkbox] {
  border: 1px solid #ccc;
  width: 17px;
  height: 17px;
  border-radius: 0;
  -webkit-appearance: checkbox;
}

#s_contact table textarea {
  height: 220px;
  line-height: 1.25;
  font-weight: normal;
}

@media (max-width: 896px) {
  #s_contact table textarea {
    height: 152px;
  }
}

#s_contact table input:focus,
#s_contact table select:focus,
#s_contact table textarea:focus {
  outline: solid 5px rgb(83, 152, 255);
}

#s_contact table input[type=radio]:focus,
#s_contact table input[type=checkbox]:focus,
#s_contact table input[type=file]:focus {
  outline: none;
}

#s_contact table a {
  text-decoration: underline;
  color: #144fbc;
}

#s_contact table a:hover {
  text-decoration: none;
}

#s_contact .completion {
  margin-bottom: 210px;
  text-align: center;
}

#s_contact .submit_content .btn {
  text-align: center;
}

@media (max-width: 896px) {

  #s_contact .submit_content table td,
  #s_contact .submit_content table th {
    border-bottom: 1px solid #dedede;
    padding: 25px 0;
    display: table-cell;
  }
}

#s_contact .wpcf7-submit {
  position: relative;
  display: block;
  background: #141414;
  border: 1px solid #141414;
  color: #FFF;
  width: 38%;
  margin: 20px auto 0;
  padding: 25px 0;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

@media (max-width: 896px) {
  #s_contact .wpcf7-submit {
    display: block;
    width: 300px;
    margin: 0 auto;
    margin-top: 40px;
    padding: 15px 0;
    font-size: 16px;
  }
}

#s_contact .wpcf7-submit:hover {
  background: #FFF;
  color: #141414;
  border: 1px solid #141414;
  box-sizing: border-box;
}

#s_contact .wpcf7-submit::after {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f138";
  color: #FFF;
  font-size: 14px;
}

#s_contact .about_policy {
  margin-top: 32px;
}

#s_contact a {
  text-decoration: underline;
}

#s_contact a:hover {
  text-decoration: none;
  transition: 0.7s;
}

#s_contact .form_pp_txt {
  margin-top: 32px;
  font-size: 14px;
}

#s_contact .form_pp_txt a {
  text-decoration: underline;
}

#s_contact .form_pp_txt a:hover {
  text-decoration: none;
}

#s_contact #zip_footer {
  display: none !important;
}

/*--------------------------------------------
	Footer / フッター
--------------------------------------------*/
.cv_area {
  width: 550px;
  margin: 92px auto;
  padding: 3.25em 5.25em;
  border: 1px solid #ccc;
  text-align: center;
}

@media (max-width: 896px) {
  .cv_area {
    width: 90%;
    box-sizing: border-box;
    margin: 0 auto 3.725em;
    padding: 3.25em 2.25em;
  }
}

.cv_area .cv_area_title {
  margin-bottom: 31px;
  font-size: 1.425rem;
  font-weight: 900;
  line-height: 1.8;
}

@media (max-width: 896px) {
  .cv_area .cv_area_title {
    font-size: 1.025rem;
  }
}

.cv_area img {
  width: 352px;
}

@media (max-width: 896px) {
  .cv_area img {
    width: 100%;
  }
}

.cv_area .btn {
  margin: 40px auto 0 !important;
}

.cv_area .btn::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,1)'%3E%3Cpath d='M19.1642 12L12.9571 5.79291L11.5429 7.20712L16.3358 12L11.5429 16.7929L12.9571 18.2071L19.1642 12ZM13.5143 12L7.30722 5.79291L5.89301 7.20712L10.6859 12L5.89301 16.7929L7.30722 18.2071L13.5143 12Z'%3E%3C/path%3E%3C/svg%3E");
}

.cv_area .btn a {
  background: #ed8b0b;
  border: 1px solid #ed8b0b;
  color: #FFF;
}

.cv_area .btn a:hover {
  background: #129393;
  border: 1px solid #129393;
  color: #FFF;
}

@media (max-width: 896px) {
  footer .ft_inner {
    margin: 0 auto;
    padding: 3.25em 2.75em 12px;
  }
}

@media (max-width: 896px) {
  footer .ft_inner .ft_cts {
    margin-bottom: 42px;
    align-items: center;
  }
}

@media (max-width: 896px) {
  footer .ft_inner .ft_logo {
    width: 182px;
    margin-bottom: 0.925em;
  }
}

footer .ft_inner .ft_logo img {
  display: block;
  width: 65%;
  margin-bottom: 15px;
}

@media (max-width: 896px) {
  footer .ft_inner .ft_logo img {
    width: 100%;
    margin: 0;
  }
}

footer .ft_inner .ft_nav {
  margin-top: 22px;
  text-align: center;
}

@media (max-width: 896px) {
  footer .ft_inner .ft_nav {
    text-align: left;
  }
}

footer .ft_inner .ft_nav ul {
  justify-content: flex-end;
}

footer .ft_inner .ft_nav ul li {
  margin: 0 0 0 1.2em;
}

@media (max-width: 896px) {
  footer .ft_inner .ft_nav ul li {
    margin: 0 0 12px;
  }
}

footer .ft_inner .ft_nav ul li a {
  font-size: 14px;
  font-weight: 900;
  color: #191919;
}

@media (max-width: 896px) {
  footer .ft_inner .ft_nav ul li a {
    font-size: 14px;
  }
}

footer .ft_inner .ft_nav ul li a:hover {
  color: #ed8b0b;
  transition: 0.5s;
}

footer small {
  font-size: 12px;
  display: block;
  text-align: right;
  margin: 2.75em 0;
}

#floating_btn {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1;
}

#floating_btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 125px;
  height: 125px;
  background: #ed8b0b;
  border-radius: 7px 0 0 7px;
  color: #FFF;
}

@media (max-width: 896px) {
  #floating_btn a {
    width: 94px;
    height: 94px;
    padding-top: 10px;
  }
}

#floating_btn a:hover {
  background: #129393;
  transition: 0.5s;
}

#floating_btn a::before {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16' fill='rgba(255,255,255,1)'%3E%3Cpath d='M16 1C16.5523 1 17 1.44772 17 2V5H21C21.5523 5 22 5.44772 22 6V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V6C2 5.44772 2.44772 5 3 5H7V2C7 1.44772 7.44772 1 8 1H16ZM20 7H4V19H20V7ZM13 9V12H16V14H12.999L13 17H11L10.999 14H8V12H11V9H13ZM15 3H9V5H15V3Z'%3E%3C/path%3E%3C/svg%3E");
}

.bl_floatingBanner {
  position: fixed;
  bottom: 15%;
  right: 15px;
  width: 250px;
  max-width: 100%;
}

@media (max-width: 896px) {
  .bl_floatingBanner {
    width: 150px;
  }
}

.bl_floatingBanner.js_close {
  display: none;
}

.bl_floatingBanner_img {
  display: block;
  transition: 0.3s;
}

.bl_floatingBanner_img:hover {
  opacity: 0.6;
}

.bl_floatingBanner_close {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  top: -15px;
  cursor: pointer;
}

.bl_floatingBanner_close span:nth-of-type(1) {
  position: absolute;
  top: 7px;
  right: 0;
  width: 15px;
  height: 1px;
  background-color: #000;
  transform: rotate(45deg);
}

.bl_floatingBanner_close span:nth-of-type(2) {
  position: absolute;
  top: 0;
  right: 7px;
  width: 1px;
  height: 15px;
  background-color: #000;
  transform: rotate(45deg);
}

#page-top a {
  position: fixed;
  z-index: 1;
  bottom: 125px;
  right: 0;
  width: 56px;
  height: 56px;
}

@media (max-width: 896px) {
  #page-top a {
    width: 94px;
    right: 0;
  }
}

#page-top img {
  width: 56px;
}

@media (max-width: 896px) {
  #page-top img {
    width: 94px;
  }
}

/*-------------------------------------
	404
--------------------------------------*/
#not_found main {
  margin-top: 0;
}

#not_found main .s_inner {
  width: 960px;
  margin: 0 auto;
}

@media (max-width: 896px) {
  #not_found main .s_inner {
    width: auto;
  }
}

/*-------------------------------------
	cookie
--------------------------------------*/
/* ポップアップの基本スタイル */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  display: none;
  /* 初期は非表示 */
  z-index: 1000;
  box-sizing: border-box;
}

/* ポップアップコンテンツのスタイル */
.cookie-popup-content {
  position: relative;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
}

.cookie-popup-content a {
  color: #ed8b0b;
  text-decoration: underline;
}

.cookie-popup-content a:hover {
  color: #FFF;
  text-decoration: none;
  transition: 0.5s;
}

/* 同意ボタン */
#cookie-accept-btn {
  background-color: #ed8b0b;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

/* 閉じるボタンのスタイル */
.close-btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* モーダルウィンドウを表示するアニメーション */
.cookie-popup.show {
  display: block;
}

/*--------------------------------------------
	マニュアル
--------------------------------------------*/
#manual {
  width: 780px;
  margin: 0 auto;
  padding: 82px 0;
}

@media screen and (max-width: 896px) {
  #manual {
    width: 100%;
  }
}

#manual h1 {
  font-size: 1.725rem;
  margin-bottom: 1.725em;
}

#manual .manual-content .table-of-contents {
  background-color: #f9f9f9;
  margin-bottom: 3.25em;
  padding: 3.25em 2.75em;
}

#manual .manual-content .table-of-contents p.table-of-contents_title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 10px;
}

#manual .manual-content .table-of-contents ul {
  list-style-type: none;
  padding-left: 0;
}

#manual .manual-content .table-of-contents li {
  margin-bottom: 0.75em;
  line-height: 1;
}

@media (max-width: 896px) {
  #manual .manual-content .table-of-contents li {
    line-height: 1.45;
  }
}

@media (max-width: 896px) {
  #manual .manual-content .table-of-contents li a {
    font-size: 1.025rem;
  }
}

#manual .manual-content .table-of-contents li.toc-level-3 {
  margin-left: 1.25em;
}

#manual .manual-content .table-of-contents li.toc-level-3 a {
  font-size: 0.925rem;
}

#manual .manual-content .table-of-contents a {
  text-decoration: none;
  color: #0073aa;
}

#manual .manual-content .table-of-contents a:hover {
  text-decoration: underline;
}

#manual .manual-content h2 {
  background: #f3f3f3;
  margin: 3.25em 0 1.825em;
  padding: 0.925em 1.25em;
  font-size: 1.325rem;
}

#manual .manual-content h3 {
  margin: 2.025em 0 1.025em;
  font-size: 1.325rem;
}

#manual .manual-content p {
  margin-bottom: 0.5em;
}

#manual .manual-content img {
  width: 1005;
  margin: 0 0 0.925em;
  padding: 1.325em;
  box-sizing: border-box;
  background: #ccc;
}

#manual .manual-content a {
  text-decoration: underline;
  color: #0073aa;
}

#manual .manual-content a:hover {
  text-decoration: none;
}

/*--------------------------------------------
  フッター
--------------------------------------------*/
    footer {
      line-height: 1;
      width: 100%;
      height: auto;
      padding-bottom: 40px;
      background: #333;
      /* footer-content--inner */ }
      footer .footer-content--inner {
        width: 1092px;
        height: auto;
        margin: auto;
        display: flex; }
        footer .footer-content--inner .footer-logo {
          width: 155px;
          margin-top: 25px; }
        footer .footer-content--inner .f-navi {
          margin: 26px 0 0 110px; }
          footer .footer-content--inner .f-navi h2 {
            color: #fff;
            font-size: 14px;
            margin-bottom: 8px; }
          footer .footer-content--inner .f-navi p {
            margin: 0 0 3px;
            line-height:1; }
            footer .footer-content--inner .f-navi p a {
              font-size: 12px;
              line-height: 1.6;
              color: #fff;
              display: inline-table;
              letter-spacing: 0em; }
      footer .copy {
        text-align: center;
        color: #fff;
        font-size: 10px;
        margin-top: 63px; }

@media (max-width: 896px) {

    footer {
      width: calc(750 *(100vw/750));
      height: auto;
      margin-top: calc(110 *(100vw/750));
      padding: calc(40 *(100vw/750)) 0 calc(40 *(100vw/750)) 0;
      background: #333;
      /* footer-content--inner */ }
      footer .footer-content--inner {
        width: calc(650 *(100vw/750));
        height: auto;
        margin: auto;
        display: flex; }
        footer .footer-content--inner .footer-logo {
          width: calc(155 *(100vw/750));
          margin-top: calc(25 *(100vw/750)); }
        footer .footer-content--inner .f-navi {
          margin: calc(26 *(100vw/750)) 0 0 calc(40 *(100vw/750)); }
          footer .footer-content--inner .f-navi h2 {
            color: #fff;
            font-size: calc(26 *(100vw/750));
            margin-bottom: calc(20 *(100vw/750)); }
          footer .footer-content--inner .f-navi p a {
            font-size: calc(18 *(100vw/750));
            line-height: 2;
            color: #fff;
            display: inline-table;
            letter-spacing: 0em; }
      footer .copy {
        text-align: center;
        color: #fff;
        font-size: 10px;
        margin-top: 63px; }
}

/*--------------------------------------------
  デモ動画のCTAを一旦非表示

.demo_linkBox {
  display: none;
}
.s_cta .flexbox {
  align-items: center;
}
.s_cta .s_cta_text .cta_btn {
  margin-bottom: 0;
}
--------------------------------------------*/

/*# sourceMappingURL=style.css.map */

/*--------------------------------------------
  thanks
--------------------------------------------*/
  #wrap.thanks #mv-content {
    width: 100%;
    margin-top: 86px;
    background: linear-gradient(to right, #e5f5f2, #b0e4ed);
  }
  @media screen and (max-width: 980px) {
    #wrap.thanks #mv-content {
      margin-top: 45px;
    }
  }
  #wrap.thanks #mv-content .content-inner {
    width: 1204px;
    margin: auto;
    padding: 40px 0 0;
    justify-content: space-around;
    background-image: url(../img/mv-bg.png);
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: bottom 10px left 30%;
    align-items: flex-start;
  }
  @media screen and (max-width: 980px) {
    #wrap.thanks #mv-content .content-inner {
      width: 100%;
      padding: 30px 20px 140px;
      background-position: right 2vw bottom 2vw;
      background-size: auto 200px;
    }
  }
  #wrap.thanks .cont-inner {
    padding: 30px 0;
  }
  @media screen and (max-width: 980px) {
    #wrap.thanks .cont-inner {
      padding: 20px;
    }
  }
  #wrap.thanks h2 {
    text-align: left;
    margin-bottom: 0;
  }
  #wrap.thanks h3 {
    border-left: solid 8px #00B29E;
    padding: 0 0 0 28px;
    margin: 30px 0;
    font-size: 22px;
  }
  @media screen and (max-width: 980px) {
    #wrap.thanks h3 {
      font-size: calc(30 *(100vw/750));
      padding: 0 0 0 15px;
      margin: 15px 0;
    }
  }
  #wrap.thanks .DL-content .flex-box {
    justify-content: space-between;
    gap: 15%;
    padding: 0 0 30px;
  }
  #wrap.thanks .DL-content .flex-box > img {
    width: 400px;
  }
  @media screen and (max-width: 980px) {
    #wrap.thanks .DL-content .flex-box > img {
      width: 75%;
      margin: 0 auto;
      display: block;
    }
  }
  #wrap.thanks .DL-content .btn-area {
    background: #F7F7F7;
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
  }
  @media screen and (max-width: 980px) {
    #wrap.thanks .DL-content .btn-area {
      padding: 20px;
    }
  }
  #wrap.thanks .DL-content .btn-area .dltext {
    padding-bottom: 10px;
  }