@charset "UTF-8";
/*============================================================
common
==============================================================*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.125rem;
  color: #222;
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: auto;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  /*-webkit-appearance: none;
  -moz-appearance: none;*/
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
a:link, a:visited, a:active {
  color: #222;
}

.sp {
  display: inherit;
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media (min-width: 769px) {
  .pc {
    display: inherit;
  }
}

.en {
  font-family: "Montserrat", serif;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.center {
  text-align: center;
}

.inner {
  width: 100%;
  margin: auto;
  padding: 0 20px;
}
@media (min-width: 769px) {
  .inner {
    width: 90%;
    max-width: 1060px;
  }
}

.sec {
  padding: 2.5rem 0;
}
@media (min-width: 769px) {
  .sec {
    padding: 4.5rem 0;
  }
}

.flex-wrap {
  display: flex;
  justify-content: normal;
  align-items: normal;
  flex-wrap: wrap;
}

.flex-wrap-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.flex-wrap-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.flex-wrap-middle {
  display: flex;
  justify-content: center;
  align-items: normal;
  flex-wrap: wrap;
}

.head-ttl {
  position: relative;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 55px;
}
.head-ttl::after {
  content: "";
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  bottom: -15px;
  border-bottom: solid 3px #E13426;
  width: 30px;
}
@media (min-width: 769px) {
  .head-ttl {
    font-size: 2.25rem;
  }
}

.btn {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  background: #222;
  background-clip: padding-box;
  width: 280px;
  border-radius: 8px;
  padding: 18px 28px;
  transition: all 0.3s ease-in-out 0s;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  bottom: auto;
  left: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  transform: rotate(45deg);
  margin-top: -4px;
}
.btn:hover {
  opacity: 0.8;
}
@media (min-width: 769px) {
  .btn {
    padding: 18px 35px;
  }
}

.btn-download {
  background-color: #FEBE2B;
}
.btn-download:link, .btn-download:visited, .btn-download:active {
  color: #222;
}

.btn-contact {
  color: #E13426;
  background-color: #fff;
  border: solid 2px #E13426;
}
.btn-contact:link, .btn-contact:visited, .btn-contact:active {
  color: #E13426;
}
.btn-contact::after {
  border-top: 2px solid #E13426;
  border-right: 2px solid #E13426;
}

/*============================================================
header
==============================================================*/
header {
  background-color: #FCFCFC;
  border-bottom: solid 1px #E6E6E6;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

@media (min-width: 769px) {
  .header-inner {
    height: 60px;
    padding: 0 20px;
  }
}
/*============================================================
cta
==============================================================*/
.cta {
  background-color: #E13426;
  padding: 40px 0;
}
.cta h2 {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.cta h2 .small {
  display: block;
  font-size: 0.875rem;
}
.cta .btn-wrap {
  gap: 10px;
  margin-top: 20px;
}
.cta ul {
  gap: 40px;
}

.cta-download, .cta-contact {
  padding: 30px;
  border-radius: 10px;
}
.cta-download h3, .cta-contact h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-download h3 span, .cta-contact h3 span {
  display: block;
  font-size: 0.875rem;
}
.cta-download figure, .cta-contact figure {
  margin: 0 auto;
}

.cta-download {
  background-color: #FFF9EA;
  border: solid 4px #FEBE2B;
}
.cta-download h3 span {
  color: #FEBE2B;
}

.cta-contact {
  background-color: #FFF7F7;
}
.cta-contact h3 span {
  color: #E13426;
}

@media (min-width: 769px) {
  .cta h2 {
    font-size: 1.75rem;
  }
  .cta h2 .small {
    font-size: 1.25rem;
  }
  .cta-download, .cta-contact {
    width: 48%;
    max-width: 480px;
  }
  .cta-download h3, .cta-contact h3 {
    font-size: 1.5rem;
  }
  .cta-download .txt-wrap p, .cta-contact .txt-wrap p {
    width: 58%;
  }
}
/*============================================================
kv
==============================================================*/
#kv {
  position: relative;
  background-color: #E13426;
  color: #fff;
  padding: 20px 0 60px;
  overflow: hidden;
}
#kv .btn-wrap a {
  margin: 5px;
}

.kv-inner {
  position: relative;
  max-width: 1360px;
  padding: 0 20px;
  margin: 0 auto;
}

.kv-content h1 {
  text-align: center;
  font-weight: 900;
  font-size: 3.25rem;
  line-height: 1.2;
  letter-spacing: 0.2rem;
  margin: 12px 0;
}
.kv-content h1 span {
  font-size: 2.25rem;
}
.kv-content .subcopy {
  text-align: center;
  font-weight: 700;
  font-size: 1.375rem;
}
.kv-content .subcopy span {
  font-weight: 400;
  font-size: 1rem;
}

.kv-caution {
  position: absolute;
  right: 25px;
  bottom: 25px;
  text-align: right;
  font-size: 0.625rem;
}

.kv-laptop {
  position: relative;
  width: min(990px, 100%);
  margin-left: auto;
  aspect-ratio: 16/10; /* フレーム画像の比率に合わせて調整 */
}

.kv-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}

/* ここが「PCの画面領域」：数値は必ず微調整が必要です */
.kv-screen {
  --sx: 10.5%;
  --sy: 10.5%;
  --sw: 79%;
  --sh: 73%;
  --sr: 10px;
  position: absolute;
  left: var(--sx);
  top: var(--sy);
  width: var(--sw);
  height: var(--sh);
  border-radius: var(--sr);
  overflow: hidden;
  background: #000; /* 画像読み込み前の下地 */
}

/* スライド本体 */
.kv-slides {
  height: 100%;
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 700ms ease;
  will-change: transform;
}

.kv-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画面にフィット。比率維持なら contain */
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .kv-slides {
    transition: none;
  }
}
@media (min-width: 769px) {
  .kv-inner {
    padding: 10vh 0;
  }
  .kv-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 1;
  }
  .kv-content h1 {
    text-align: left;
    font-size: 4.375rem;
    margin: 24px 0 48px;
  }
  .kv-content h1 span {
    font-size: 3rem;
  }
  .kv-content .subcopy {
    text-align: left;
    font-size: 1.75rem;
  }
  .kv-content .subcopy span {
    font-size: 1rem;
  }
  .kv-laptop {
    width: 64.6vw;
    transform: translateX(20%);
  }
  .kv-caution {
    font-size: 1rem;
  }
}
@media (min-width: 1040px) {
  .kv-inner {
    padding: 6vh 0;
  }
  .kv-content h1 {
    font-size: 5.25rem;
  }
  .kv-content h1 span {
    font-size: 3.9375rem;
  }
  .kv-content .subcopy {
    font-size: 2rem;
  }
  .kv-content .subcopy span {
    font-size: 1.25rem;
  }
}
@media (min-width: 1310px) {
  .kv-inner {
    padding: 1vh 0;
  }
  .kv-laptop {
    width: 990px;
  }
}
/*============================================================
problem
==============================================================*/
#problem {
  background-color: #F5F5F5;
}

.problem-list {
  gap: 40px;
}

.problem-before, .problem-after {
  border-radius: 4px;
}
.problem-before h3, .problem-after h3 {
  text-align: center;
  color: #fff;
  font-weight: 700;
}
.problem-before h4, .problem-after h4 {
  text-align: center;
}

.problem-before {
  position: relative;
  text-align: center;
  background-color: #fff;
  border: solid 2px #222;
  padding: 0 15px 20px;
  margin-bottom: 70px;
}
.problem-before h3 {
  margin-top: -15px;
}
.problem-before h3 span {
  display: inline-block;
  font-size: 1.25rem;
  background-color: #222;
  padding: 2px 64px;
  margin-bottom: 20px;
  border-radius: 50vh;
}
.problem-before h4 {
  font-size: 1.125rem;
  margin: 15px 0;
}
.problem-before::after {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  content: "";
  left: 0;
  bottom: -30px;
  right: 0;
  margin: 0 auto;
  border-right: 60px solid transparent;
  border-top: 30px solid #222;
  border-left: 60px solid transparent;
}
.problem-before figure {
  width: 200px;
  height: 140px;
  margin: 0 auto;
}

.problem-check {
  text-align: left;
  font-size: 1rem;
  padding-left: 22px;
  padding-bottom: 2px;
  background: url(../img/icon-problem-check.svg) no-repeat top 3px left/18px;
}

.problem-after {
  background-color: #FEF8F8;
  padding: 0 20px 20px;
  border: solid 2px #E13426;
}
.problem-after h3 {
  font-size: 0.875rem;
  background-color: #E13426;
  padding: 10px 0;
  margin-top: -15px;
  border-radius: 50vh;
}
.problem-after h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.problem-after p {
  font-size: 1rem;
}

@media (min-width: 769px) {
  .plobrem-wrap {
    width: 30%;
  }
  .problem-before {
    height: 380px;
  }
  .problem-after {
    height: 310px;
  }
}
/*============================================================
about
==============================================================*/
#about .head-ttl span {
  display: block;
  font-size: 1rem;
}
#about .intro {
  line-height: 2;
}

.about-movie-wrap {
  position: relative;
  max-width: 800px;
  margin: 40px auto 80px;
}

.about-movie {
  position: relative;
  width: 100%;
}

.about-frame {
  position: relative;
  width: 100%;
  display: block;
  pointer-events: none;
}

.about-movie video {
  position: absolute;
  top: 5.5%;
  left: 0;
  right: 0;
  width: 78%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}

.ttl-red-line {
  text-align: center;
  color: #E13426;
  font-size: 1.75rem;
  font-weight: 700;
  padding: 10px 0;
  margin: 30px 0;
  border-top: solid 2px #E13426;
  border-bottom: solid 2px #E13426;
}

.cloudtool-list {
  margin-top: 30px;
  gap: 60px 40px;
}

.cloudtool-item {
  position: relative;
}
.cloudtool-item h4 {
  font-size: 1.125rem;
  margin: 20px 0;
}

.check-wrap {
  text-align: left;
}

.cloudtool-check {
  padding-left: 24px;
  padding-bottom: 2px;
  background: url(../img/icon-cloudtool-check.svg) no-repeat top left/22px;
}

.image-container {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  transition: all 0.1s ease-in-out 0s;
}
.image-container img {
  display: block;
  width: 100%;
  height: auto;
}
.image-container:hover {
  opacity: 0.8;
  outline: 2px solid #222;
  outline-offset: -2px;
  cursor: pointer;
}

.corner-plus {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: #222;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.corner-plus::after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(30%, -25%);
  color: #fff;
  font-size: 28px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  width: 90%;
  max-width: 800px;
}

.modal-img {
  width: 100%;
  height: auto;
  display: block;
}

.close {
  position: fixed;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.close:hover, .close:focus {
  color: #ccc;
}

.about-meshdata {
  background-color: #FEF8F8;
  padding-bottom: 30px;
  margin-top: 60px;
  border-radius: 10px;
}
.about-meshdata .txt {
  padding: 0 20px;
}
.about-meshdata h3 {
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: #E13426;
  padding: 10px;
  border-radius: 10px 10px 0 0;
}
.about-meshdata p {
  line-height: 2;
  margin: 20px 0;
}

@media (min-width: 769px) {
  .cloudtool-item {
    width: 46%;
    flex-direction: column;
    display: flex;
    align-items: center;
  }
  .cloudtool-item .flex-wrap-center {
    gap: 40px;
  }
  .cloudtool-item h4 {
    font-size: 1.5rem;
  }
  #about .head-ttl span {
    font-size: 1.25rem;
  }
  #about .cloudtool-item:first-child {
    width: 100%;
  }
  .about-meshdata h3 {
    font-size: 1.5rem;
  }
  .about-meshdata p {
    text-align: center;
  }
}
/*============================================================
out-sourcing
==============================================================*/
#out-sourcing {
  background-color: #FEF8F8;
}
#out-sourcing h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}
#out-sourcing .intro {
  margin-bottom: 60px;
  line-height: 2;
}

.out-sourcing-case {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  gap: 30px;
}
.out-sourcing-case li {
  font-size: 1.125rem;
  font-weight: 700;
  padding-left: 24px;
  padding-bottom: 8px;
  background: url(../img/icon-out-sourcing-check.svg) no-repeat top 5px left/20px;
}

.out-sourcing-ex {
  padding: 60px 0;
  margin: 60px 0;
  border-top: solid 1px #DFDADA;
  border-bottom: solid 1px #DFDADA;
}
.out-sourcing-ex .cloudtool-list {
  gap: 50px;
}

.out-sourcing-voice {
  position: relative;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
}
.out-sourcing-voice .voice-head {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 1.125rem;
  font-weight: 700;
  background-color: #E13426;
  color: #fff;
  padding: 6px 70px 6px 20px;
  border-radius: 0 50vh 50vh 0;
}
.out-sourcing-voice h4 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 50px 0;
}
.out-sourcing-voice h5 {
  color: #E13426;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: solid 1px #E13426;
  padding-bottom: 4px;
  margin: 30px 0 10px;
}
.out-sourcing-voice .flex-wrap-center {
  gap: 30px;
}

@media (min-width: 769px) {
  #out-sourcing h3 {
    font-size: 1.875rem;
  }
  .out-sourcing-case figure {
    margin-bottom: -50px;
  }
  .out-sourcing-voice .txt-wrap {
    width: 55%;
  }
}
/*============================================================
price
==============================================================*/
#price .inner {
  max-width: 628px;
}
#price p {
  text-align: right;
  font-size: 0.875rem;
  margin-top: 20px;
}

.price-img {
  height: auto;
  margin: 0 auto;
}

/*============================================================
flow
==============================================================*/
#flow {
  background-color: #F5F5F5;
}

.flow-list {
  gap: 60px;
  margin-top: 80px;
}

.flow-item {
  text-align: center;
  background-color: #fff;
  padding: 0 30px 30px;
  border-radius: 10px;
}
.flow-item .num {
  display: inline-block;
  text-align: center;
  background-color: #fff;
  color: #E13426;
  font-size: 2.625rem;
  line-height: 1;
  width: 100px;
  height: 100px;
  border-radius: 50vh;
  padding: 22px;
  margin-top: -50px;
}
.flow-item .num span {
  display: block;
  font-size: 1rem;
}
.flow-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.flow-item p {
  text-align: left;
  font-size: 1rem;
}

@media (min-width: 769px) {
  .flow-list {
    gap: 20px;
  }
  .flow-item {
    width: 30%;
  }
}
/*============================================================
form
==============================================================*/
#form {
  background-color: #E13426;
}

#download {
  background-color: #FCFCFC;
}

.form-box {
  max-width: 800px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  margin: 0 auto;
}

.contact-group {
  margin-bottom: 20px;
}
.contact-group textarea {
  height: 100px;
}

.contact-label {
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-req, .contact-any {
  font-size: 0.625rem;
  padding: 2px 9px 3px;
  border-radius: 100vh;
  margin-left: 8px;
}

.contact-req {
  color: #222;
  background: #FEBE2B;
}

.contact-any {
  color: #222;
  background: #ececec;
}

.contact-note {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 6px;
  margin-left: 2px;
}

.contact-input {
  width: 100%;
  height: 40px;
  background: #fff;
  padding: 8px 16px 8px;
  border: 1px solid #cfd0cc;
  border-radius: 5px;
}

.agree {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  margin: 30px auto;
}
.agree a {
  text-decoration: underline;
}
.agree a:link, .agree a:visited, .agree a:active {
  color: #222;
}
.agree .check {
  margin-bottom: 10px;
}
.agree label {
  font-size: 1.125rem;
  color: #E13426;
}

.agree input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #E13426;
  border-radius: 3px;
  background: #fff;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  margin-right: 5px;
}

.agree input[type=checkbox]:checked {
  background: #E13426;
}

.agree input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.agree label {
  cursor: pointer;
}

.contact-action {
  text-align: center;
}

.contact-btn {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  width: auto;
  border: none;
}
.contact-btn:hover {
  transition: all 0.2s ease-in-out 0s;
  opacity: 0.5;
}

h6.error {
  color: #ff753b;
}

.form-box input[type=text].error, .form-box input[type=email].error, .form-box select.error {
  background: #FCE6E6 !important;
  border: solid 1px #ff753b;
}

@media (min-width: 769px) {
  .form-box {
    padding: 40px 100px;
  }
  .contact-note {
    display: inline;
    font-size: 0.875rem;
    margin-left: 16px;
  }
}
/*============================================================
thanks
==============================================================*/
#thanks .txt-box {
  text-align: center;
  margin: 40px 0;
}
#thanks .btn-wrap {
  margin-top: 50px;
  padding-top: 50px;
  border-top: solid 1px #E6E6E6;
}

/*============================================================
privacy-purpose
==============================================================*/
#privacy-purpose h3 {
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
#privacy-purpose a {
  text-decoration: underline;
}
#privacy-purpose a:link, #privacy-purpose a:visited, #privacy-purpose a:active {
  color: blue;
}

/*============================================================
footer
==============================================================*/
footer {
  font-size: 0.875rem;
  color: #fff;
  background: #222;
  text-align: center;
  padding: 40px 20px;
}
footer ul {
  gap: 20px;
}
footer ul a {
  text-decoration: none;
}
footer ul a:hover {
  opacity: 0.5;
}
footer ul a:link, footer ul a:visited, footer ul a:active {
  color: #fff;
}
footer li {
  width: 100%;
}
footer p {
  font-size: 0.625rem;
  margin-top: 30px;
}

@media (min-width: 769px) {
  footer li {
    width: auto;
  }
  footer p {
    margin-top: 0;
  }
}/*# sourceMappingURL=style.css.map */