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

body {
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  color: #000;
  /*読み込み時ふわっと表示させる*/
  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: #000;
}

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

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

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

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

.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;
}

.sec {
  padding: 50px 0;
}

.sec-ttl {
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #1d67a6;
  text-align: center;
  margin-bottom: 30px;
}
.sec-ttl span {
  display: block;
  font-size: 3.125rem;
  font-weight: 300;
  opacity: 0.2;
  margin-bottom: -0.5em;
}

.btn-wrap {
  text-align: center;
}

.btn {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  background: #ec6941;
  background-clip: padding-box;
  border-radius: 100vh;
  padding: 14px 80px;
  transition: all 0.3s ease-in-out 0s;
}
.btn:link, .btn:visited, .btn:active {
  color: #fff;
}
.btn:hover {
  opacity: 0.8;
}
@media (min-width: 769px) {
  .btn {
    width: 380px;
    font-size: 1.25rem;
    padding: 18px 90px;
  }
}

.line-frame-top:before,
.line-frame-top:after,
.line-frame-bottom:before,
.line-frame-bottom:after {
  content: "";
  background: #1d67a6;
  position: fixed;
  display: block;
  z-index: 20;
}

/* 上 */
.line-frame-top:before {
  height: 10px;
  width: 100vw;
  left: 0;
  top: 0;
}

/* 右 */
.line-frame-top:after {
  width: 10px;
  height: 100vh;
  right: 0;
  top: 0;
}

/* 下 */
.line-frame-bottom:before {
  height: 10px;
  width: 100vw;
  bottom: 0;
  left: 0;
}

/* 左 */
.line-frame-bottom:after {
  width: 10px;
  height: 100vh;
  top: 0;
  left: 0;
}

/*============================================================
header
==============================================================*/
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

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

.header-logo img {
  transform: scale(0.7);
  transform-origin: top left;
}

.navi .link {
  font-weight: 900;
}
.navi .link a:link, .navi .link a:visited, .navi .link a:active {
  color: #000;
}
.navi .btn {
  padding: 10px 30px 10px 30px;
}
.navi .btn::after {
  display: none;
}

#pc-navi {
  display: none;
}
#pc-navi ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

#sp-navi {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.3s;
}
#sp-navi ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sp-navi li {
  list-style: none;
  text-align: center;
}
#sp-navi li a {
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#sp-navi li .btn {
  width: 280px;
  padding: 12px 20px 12px 20px;
  margin-top: 10px;
}
#sp-navi li .btn::after {
  right: 20px;
  margin-top: -13px;
}

#sp-navi.panelactive {
  opacity: 1;
  z-index: 999;
}

#sp-navi.panelactive ul {
  display: block;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #1d67a6;
  border-radius: 0 0 0 20px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media (min-width: 769px) {
  .header-inner {
    height: 70px;
    padding: 0 20px;
  }
  .header-logo {
    display: block;
    z-index: 10;
  }
  #pc-navi ul {
    font-size: 1.300390117vw;
  }
  #pc-navi ul li {
    margin: 0 15px;
  }
  .navi .btn {
    width: auto;
    font-size: 1.300390117vw;
  }
}
@media (min-width: 1000px) {
  header {
    position: fixed;
    z-index: 10;
  }
  #pc-navi {
    display: block;
  }
  .openbtn {
    display: none;
  }
  #sp-navi {
    display: none;
  }
}
@media (min-width: 1040px) {
  #pc-navi ul {
    font-size: 0.8125rem;
  }
  .navi .btn {
    font-size: 0.8125rem;
  }
}
/*============================================================
kv
==============================================================*/
#kv {
  position: relative;
  background: url(../img/kv-bg.jpg) no-repeat top center/cover;
  height: 100vh;
}
#kv .inner {
  padding: 20px 30px 0;
}
#kv .logo img {
  width: 50%;
  margin: 0;
}
#kv h1 {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  padding-top: clamp(65px, 65px + (100vw - 375px) * 1.41, 120px);
}
#kv h1 span {
  font-size: 2.25rem;
}
#kv .lead {
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
}
#kv .btn-wrap {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 7%;
}

.pain-line {
  position: absolute;
  bottom: 0;
  width: 100%;
  aspect-ratio: 16.644/1;
  background: url(../img/pain-line.svg) no-repeat top center/contain;
  margin-bottom: -1px;
}

#pain {
  position: relative;
  padding: 30px 0 50px;
  overflow: hidden;
}

.pain-list {
  width: 85%;
  margin: 0 auto;
}

.pain-item {
  position: relative;
  margin: 20px 0;
}
.pain-item p {
  display: flex;
  justify-content: left;
  align-items: center;
  font-weight: 500;
  color: #fff;
  background-color: #1d67a6;
  height: 9vh;
  border-radius: 10px;
}
.pain-item figure {
  position: absolute;
}
.pain-item figure img {
  width: 50%;
}
.pain-item:nth-child(2n+1) p {
  padding: 0 0 0 40px;
}
.pain-item:nth-child(2n+1) figure {
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}
.pain-item:nth-child(2n) p {
  padding: 0 40px 0 20px;
}
.pain-item:nth-child(2n) figure {
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}
.pain-item:nth-child(4) figure {
  right: -60px;
}

.balloon {
  position: relative;
}
.balloon p {
  position: absolute;
  top: 50%;
  left: 12%;
  transform: translateY(-50%);
  font-size: clamp(14px, 14px + 8 * (100vw - 375px) / 393, 22px);
  color: #1d67a6;
  font-weight: 900;
  line-height: 2;
}

#solution {
  position: relative;
  text-align: center;
  color: #fff;
  background: url(../img/solution-bg.jpg);
  padding: 26.666vw 0 16vw;
  margin-top: 26.666vw;
}
#solution .sec-ttl {
  color: #fff;
}
#solution p {
  font-size: 0.875rem;
  line-height: 2;
}

.solution-img01 {
  position: absolute;
  top: -32vw;
  width: 100%;
  aspect-ratio: 2.049/1;
  background: url(../img/solution-img01.png) no-repeat top center/contain;
}

.solution-img02 {
  position: absolute;
  bottom: -10%;
  right: 10%;
}
.solution-img02 img {
  width: 122px;
  height: auto;
}

#service {
  background-color: #f1f1f1;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -1px;
}
#service .sec-ttl {
  margin-top: 40px;
}

.service-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.service-item {
  position: relative;
  text-align: center;
  width: 40%;
  margin: 8px;
}
.service-item h3 {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 15px;
  font-size: 0.8125rem;
  color: #1d67a6;
  font-weight: 900;
}

#voice {
  position: relative;
  background-color: #fdd835;
  padding: 0 0 90px;
  overflow: hidden;
}

.voice-item {
  position: relative;
  width: 335px;
  max-width: 800px;
  font-size: 0.875rem;
  color: #1d67a6;
  background-color: #fff;
  padding: 50px 30px 50px;
  margin: 0 5px;
  border-radius: 50px;
}

.voice-img {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.voice-img img {
  width: 125px;
  height: auto;
}

.voice-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #d9d9d9;
  padding-bottom: 20px;
  margin: 20px 0;
}
.voice-info .customer, .voice-info .content {
  width: 46%;
  text-align: center;
}
.voice-info .label {
  display: block;
  font-size: 0.75rem;
  color: #fff;
  background-color: #1d67a6;
  margin-bottom: 4px;
  border-radius: 100vh;
}

.slick-track {
  padding-top: 60px;
}

.voice-slider {
  position: relative;
}

.voice-slider .slick-prev,
.voice-slider .slick-next {
  width: 40px;
  height: 40px;
  font-size: 0;
  background: none;
  border: none;
  position: absolute;
  top: 100%;
  transform: translateY(20px);
  background-image: url(../img/arr.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 10;
  cursor: pointer;
}
.voice-slider .slick-prev {
  left: 38%;
  transform: translateY(20px) scaleX(-1);
}
.voice-slider .slick-next {
  right: 38%;
}
.voice-slider .slick-prev::before,
.voice-slider .slick-next::before {
  display: none;
}

.voice-circle-top {
  margin-top: 4rem;
  margin-bottom: -1px;
}

.voice-circle-bottom {
  margin-top: -1px;
  margin-bottom: 4rem;
}

#flow {
  position: relative;
  padding-top: 0;
}
#flow .inner {
  padding: 0;
}

.flow-list {
  display: flex;
  overflow-x: auto;
  margin-bottom: 50px;
  gap: 3vw;
}

.flow-item {
  width: 80%;
  min-width: 240px;
  flex-shrink: 0;
  color: #fff;
  background-color: #29a9e1;
  padding: 0 30px 40px;
  border-radius: 50px;
  scroll-snap-align: start;
}
.flow-item:first-child {
  margin-left: 30px;
}
.flow-item:last-child {
  margin-right: 30px;
}
.flow-item h3 {
  font-size: 1.25rem;
  margin: 40px 0 20px;
}

.flow-num {
  position: relative;
  width: 80px;
  height: 80px;
  font-size: 2.25rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -15px;
}
.flow-num::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 60px;
  right: -18px;
  background: white;
  transform: rotate(135deg);
}

.company-list {
  max-width: 500px;
  font-size: 0.8125rem;
  margin: 0 auto;
}
.company-list dt {
  width: 25%;
}

.company-item {
  padding: 15px 10px;
  border-bottom: solid 1px #d9d9d9;
}
.company-item:last-child {
  border-bottom: none;
}

@media (min-width: 550px) {
  #kv h1 {
    font-size: 1.5rem;
  }
  #kv h1 span {
    font-size: 3rem;
  }
  #kv .lead {
    font-size: 1.125rem;
  }
}
@media (min-width: 580px) {
  #kv {
    background: url(../img/kv-bg.jpg) no-repeat center -165px/cover;
  }
  #kv h1 {
    padding-top: calc(0px + (100vw - 414px) * 0.221);
  }
}
@media (min-width: 769px) {
  .sec-ttl {
    font-size: 1.5rem;
  }
  .sec-ttl span {
    font-size: 4.5rem;
  }
  #kv {
    background: url(../img/kv-bg-pc.jpg) no-repeat top center/cover;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #kv h1 {
    font-size: 1.5rem;
    padding-top: 22%;
  }
  #kv h1 span {
    font-size: 3rem;
  }
  #kv .lead {
    font-size: 1.125rem;
    margin-bottom: 30px;
  }
  #kv .btn-wrap {
    position: static;
  }
  .kv-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .kv-wrap figure {
    width: 40%;
    margin-left: 40px;
  }
  .pain-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .pain-item {
    width: 49%;
    margin: 0 0 20px;
  }
  .balloon {
    width: 60%;
    margin: 0 auto;
  }
  .balloon p {
    left: 15%;
    font-size: 1.125rem;
  }
  #solution {
    padding: 11.666vw 0 0;
    margin-top: 11.666vw;
  }
  #solution p {
    font-size: 1.125rem;
  }
  .solution-img01 {
    top: calc(-95px - (100vw - 769px) * 0.0825);
    aspect-ratio: 5.24590164/1;
    background: url(../img/solution-img01-pc.png) no-repeat top center/contain;
  }
  .solution-img02 {
    bottom: -25%;
  }
  .solution-img02 img {
    width: auto;
  }
  .service-item {
    width: 18%;
  }
  .service-item h3 {
    font-size: 1rem;
  }
  .voice-item {
    margin: 0 30px;
  }
  .voice-slider .slick-prev,
  .voice-slider .slick-next {
    width: 50px;
    height: 50px;
  }
  .voice-slider .slick-prev {
    left: 44%;
  }
  .voice-slider .slick-next {
    right: 44%;
  }
  #flow .inner {
    width: 100%;
    max-width: 1920px;
  }
  .flow-item {
    width: 35%;
  }
  .flow-item:first-child {
    margin-left: 100px;
  }
  .flow-item:last-child {
    margin-right: 100px;
  }
  .company-list {
    font-size: 1rem;
  }
}
/*============================================================
form
==============================================================*/
.form-box {
  max-width: 700px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  margin: 0 auto;
}

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

.contact-label {
  display: flex;
  justify-content: left;
  align-items: center;
  font-weight: 500;
  margin-bottom: 4px;
}

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

.contact-req {
  color: #fff;
  background: #ec6941;
}

.contact-any {
  color: #000;
  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: 0.875rem;
  margin: 20px auto;
}
.agree a {
  text-decoration: underline;
}
.agree a:link, .agree a:visited, .agree a:active {
  color: #000;
}

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

.contact-btn {
  font-family: "Zen Kaku Gothic New", "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 textarea.error {
  background: #FCE6E6 !important;
  border: solid 1px #ff753b !important;
}

@media (min-width: 769px) {
  .contact-note {
    display: inline;
    font-size: 0.875rem;
    margin-left: 16px;
  }
}
/*============================================================
thanks
==============================================================*/
#thanks {
  padding: 80px 0;
}
#thanks .txt {
  text-align: center;
}
#thanks .tel-wrap {
  color: #1d67a6;
  font-size: 2.25rem;
  font-weight: 500;
  margin-top: 30px;
}
#thanks .tel-wrap a:link, #thanks .tel-wrap a:visited, #thanks .tel-wrap a:active {
  color: #1d67a6;
}
#thanks .tel {
  display: inline-block;
  background: url(../img/tel.svg) no-repeat left 10px/36px;
  padding-left: 36px;
}
#thanks .time {
  font-size: 0.875rem;
}
#thanks .btn-wrap {
  margin-top: 30px;
}

/*============================================================
privacypolicy
==============================================================*/
#privacypolicy {
  padding: 80px 0;
}

.policy-list h3 {
  margin-bottom: 10px;
}
.policy-list p {
  margin-bottom: 30px;
}

/*============================================================
footer
==============================================================*/
footer {
  position: relative;
  background: url(../img/footer-bg.png) no-repeat top center/cover;
  height: 190px;
  font-size: 0.625rem;
  color: #fff;
  text-align: center;
}

.footer-copy {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 30px auto;
}

@media (min-width: 769px) {
  footer {
    background: url(../img/footer-bg-pc.png) no-repeat top center/cover;
    height: 220px;
  }
}/*# sourceMappingURL=style.css.map */