@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

img {
  display: block;
  max-width: 100%;
}

.pcOnly {
  display: none;
}
@media (min-width: 900px) {
  .pcOnly {
    display: block;
  }
}

.pcTabOnly {
  display: inline-block;
}
@media (max-width: 599px) {
  .pcTabOnly {
    display: none;
  }
}

.spOnly {
  display: none;
}
@media (max-width: 599px) {
  .spOnly {
    display: block;
  }
}

.spTabOnly {
  display: none;
}
@media (max-width: 899px) {
  .spTabOnly {
    display: block;
  }
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}
@media (max-width: 1130px) {
  .header {
    height: 48px;
  }
}

.header .header__inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1368px;
  height: 100px;
  margin: 0 auto;
  padding: 0 36px;
}

@media (max-width: 1130px) {
  .header .header__inner {
    display: inline-block;
    width: 100%;
    padding: 0;
    text-align: left;
  }
}
.header .header__inner .header__logo {
  width: 180px;
  margin: 0 40px 0 0;
  font-size: medium;
  font-size: initial;
}

.header .header__inner .header__logo a {
  display: block;
}

@media (max-width: 1130px) {
  .header .header__inner .header__logo a {
    width: 110px;
    margin: 6px 9px;
  }
}
.header .header__inner .header__logo a img {
  display: block;
}

.header .header__inner .header__nav {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: flex;
  align-items: center;
}

@media (max-width: 1130px) {
  .header .header__inner .header__nav {
    display: none;
    width: 100%;
    background: #fff;
    text-align: right;
  }
}
@media (max-width: 1130px) {
  .header .header__inner .header__nav {
    margin: 0;
    padding: 30px 0;
  }
}
.header .header__inner .header__nav ul {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  white-space: nowrap;
}

@media (max-width: 1130px) {
  .header .header__inner .header__nav ul {
    display: inline-block;
    width: 100%;
    font-size: 1.8rem;
  }
}
.header .header__inner .header__nav ul li {
  list-style: none;
}

.header .header__inner .header__nav ul li a {
  -webkit-transition: all 0.3s;
  display: block;
  position: relative;
  color: #000;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 18px;
  font-size: clamp(14px, 1.4vw, 18px);
}

@media (max-width: 1130px) {
  .header .header__inner .header__nav ul li a {
    padding: 17px 54px 17px 0;
  }
}
@media (max-width: 1130px) {
  .header .header__inner .header__nav ul li a:after {
    display: inline-block;
    position: absolute;
    top: calc(50% - 6px);
    right: 20px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #ea5532;
    border-right: 1px solid #ea5532;
    transform: rotate(45deg);
    content: "";
  }
}
@media (min-width: 1131pxpx) {
  .header .header__inner .header__nav ul li a:hover {
    opacity: 0.7;
  }
}
.header .header__inner .header__nav ul li a:active {
  opacity: 0.7;
}

.header .header__inner .header__nav ul li + li {
  margin-left: 30px;
}

@media (max-width: 1130px) {
  .header .header__inner .header__nav ul li + li {
    margin: 0;
  }
}
.header .header__inner .header__nav ul li.nav-btn {
  -webkit-transition: all 0.3s;
  width: 136px;
  height: 48px;
  padding: 0 4px;
  border: solid 4px #ea5532;
  background: #ea5532;
  text-align: center;
  transition: all 0.3s;
}

@media (max-width: 1130px) {
  .header .header__inner .header__nav ul li.nav-btn {
    margin: 0 20px 0 auto;
  }
}
.header .header__inner .header__nav ul li.nav-btn a {
  -webkit-transition: all 0.3s;
  color: #fff;
  line-height: 42px;
  transition: all 0.3s;
}

@media (max-width: 1130px) {
  .header .header__inner .header__nav ul li.nav-btn a {
    padding: 0;
  }
}
.header .header__inner .header__nav ul li.nav-btn a:after {
  display: none;
}

@media (min-width: 1131pxpx) {
  .header .header__inner .header__nav ul li.nav-btn:hover {
    background: #fff;
  }
}
@media (min-width: 1131pxpx) {
  .header .header__inner .header__nav ul li.nav-btn:hover a {
    color: #ea5532;
    opacity: 1;
  }
}
.header .header__inner .hamburger {
  z-index: 30;
  position: absolute;
  top: 0;
  right: 0;
  width: 47px;
  height: 47px;
  margin-left: auto;
  cursor: pointer;
}
@media (min-width: 1131pxpx) {
  .header .header__inner .hamburger {
    display: none;
  }
}
@media (max-width: 1130px) {
  .header .header__inner .hamburger {
    display: block;
  }
}

.header .header__inner .hamburger span {
  -webkit-transition: 0.4s ease-in-out;
  position: absolute;
  left: 13px;
  width: 20px;
  height: 3px;
  background: #3a3428;
  transition: 0.4s ease-in-out;
}

.header .header__inner .hamburger span:nth-child(1) {
  top: 12px;
}

.header .header__inner .hamburger span:nth-child(2) {
  top: 21px;
}

.header .header__inner .hamburger span:nth-child(3) {
  top: 30px;
}

.header .header__inner .hamburger.is-open span:nth-child(1) {
  -webkit-transform: rotate(135deg);
  top: 23px;
  transform: rotate(135deg);
}

.header .header__inner .hamburger.is-open span:nth-child(2) {
  left: 50%;
  width: 0;
}

.header .header__inner .hamburger.is-open span:nth-child(3) {
  -webkit-transform: rotate(-135deg);
  top: 23px;
  transform: rotate(-135deg);
}

.header:after {
  display: block;
  position: absolute;
  bottom: 0;
  width: 30%;
  max-width: 400px;
  height: 10px;
  background: #ea5532;
  content: "";
}

@media (max-width: 1130px) {
  .header:after {
    height: 5px;
  }
}
.js-fadeIn {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1s;
}

.js-fadeIn {
  transform: translate(0, 30px);
}
.js-fadeIn.active {
  opacity: 1;
  transform: translate(0, 0);
}

.section {
  padding: 80px 0;
}
@media (max-width: 899px) {
  .section {
    padding: 60px 0;
  }
}
.section:nth-of-type(odd) {
  background: url(images/bg_dotted.png);
}

.section__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.section__title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 48px;
  position: relative;
  padding-bottom: 20px;
}
@media (max-width: 899px) {
  .section__title {
    padding-bottom: 12px;
    font-size: 24px;
  }
}
.section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: #ea5532;
  border-radius: 2px;
}

.section__text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

.case-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.case-list__item {
  text-align: center;
}

.case-list__desc {
  font-size: 24px;
  margin: 12px 0 0;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
.case-list__desc strong {
  font-size: 40px;
}
.case-list__desc small {
  font-size: 16px;
  line-height: 1.4;
}

.case__text {
  margin-top: 40px;
}

.section--features .feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.section--features .feature-list .feature-list__title {
  margin-top: 16px;
  font-size: 20px;
  font-weight: bold;
}
@media (min-width: 899px) {
  .section--features .feature-list .feature-list__title {
    min-height: 72px;
  }
}
.section--features .feature-list .feature-list__desc {
  margin-top: 12px;
}
.section--features .feature-pdca {
  display: block;
  width: 80%;
  margin: 60px auto 0;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 899px) {
  .section--features .feature-pdca {
    width: 100%;
    margin: 40px auto 0;
  }
}

.service-cards-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-cards-list__item {
  padding: 20px 16px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 12px 11px 0 0 rgb(221, 221, 221);
}

.service-cards-list__title {
  position: relative;
  padding-bottom: 6px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 899px) {
  .service-cards-list__title {
    font-size: 20px;
  }
}
.service-cards-list__title:after {
  position: absolute;
  width: 80%;
  height: 3px;
  left: 10%;
  bottom: 0;
  background: #c8c8c8;
  content: "";
}

.service-cards-list__features {
  margin: 18px 0 0;
  list-style: none;
}
.service-cards-list__features li {
  position: relative;
  padding-left: 1.2rem;
  font-weight: 600;
}
.service-cards-list__features li:before {
  position: absolute;
  left: 0;
  font-weight: bold;
  content: "・";
}

.troubles-list {
  margin: 0;
  padding: 0;
}

.troubles-list__term {
  font-weight: bold;
  font-size: 18px;
}
.troubles-list__term:not(:first-child) {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px dotted #ccc;
}

.troubles-list__desc {
  position: relative;
  margin: 10px 0 0;
  padding-left: 28px;
}
.troubles-list__desc:before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 10px;
  border-top: 4px solid #ea5532;
  border-right: 4px solid #ea5532;
  transform: rotate(133deg);
  content: "";
}

.flow-list {
  display: grid;
  padding-right: 13px;
  padding-bottom: 10px;
  list-style: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  overflow-x: auto;
}
@media (max-width: 899px) {
  .flow-list {
    margin-right: -20px;
    padding-right: 20px;
  }
}

.flow-list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 160px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px 10px 4px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  border-radius: 20px;
  box-shadow: 12px 11px 0 0 rgb(221, 221, 221);
}
@media (max-width: 899px) {
  .flow-list__item {
    padding: 20px 8px 4px;
  }
}
.flow-list__item:not(:last-of-type):after {
  position: absolute;
  width: 40px;
  height: 30px;
  top: calc((100% - 30px) / 2);
  right: -35px;
  box-sizing: border-box;
  border: 14px solid transparent;
  border-left: 27px solid #393938;
  content: "";
}

.flow-list__step {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 899px) {
  .flow-list__step {
    font-size: 20px;
  }
}
.flow-list__step .flow-list__step-number {
  display: block;
  font-size: 72px;
}
@media (max-width: 899px) {
  .flow-list__step .flow-list__step-number {
    font-size: 50px;
  }
}

.flow-list__text {
  min-height: 97px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 26px 0 0;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 899px) {
  .flow-list__text {
    margin: 16px 0 0;
    font-size: 16px;
  }
}

.flow-list__icon {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 899px) {
  .flow-list__icon {
    margin: 8px 0 0;
  }
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-list__term {
  position: relative;
  font-weight: bold;
  padding-left: 40px;
}
@media (max-width: 899px) {
  .faq-list__term {
    padding-left: 34px;
  }
}
.faq-list__term:not(:first-child) {
  margin-top: 32px;
}
.faq-list__term:before {
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #ea5532;
  border: 2px solid #ea5532;
  color: #fff;
  text-align: center;
  content: "Q";
}
@media (max-width: 899px) {
  .faq-list__term:before {
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
}

.faq-list__desc {
  position: relative;
  margin: 12px 0 0;
  padding-left: 40px;
}
@media (max-width: 899px) {
  .faq-list__desc {
    padding-left: 34px;
  }
}
.faq-list__desc:before {
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 2px solid #ea5532;
  color: #ea5532;
  text-align: center;
  content: "A";
}
@media (max-width: 899px) {
  .faq-list__desc:before {
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
}

.section--contact .contact-box {
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.js-menu_bg.is-open {
  z-index: 90;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: 0.7;
}

.footer {
  background: #333;
  padding: 20px 0;
}
.footer .footer__copy {
  text-align: center;
  color: #fff;
  font-size: 14px;
}
/*# sourceMappingURL=style.css.map */