/*============================================================
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: 1rem;
  color: #000;
  letter-spacing: 0.04rem;
  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 20px;
}
@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;
}

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

.sec {
  padding: 50px 0;
}

.sec-ttl {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.375rem;
  font-weight: 900;
}
.sec-ttl span {
  display: block;
  color: #d6351a;
  font-size: 0.75rem;
}

.btn-lead {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.btn {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  background: #d6351a;
  background-clip: padding-box;
  border-radius: 100vh;
  padding: 18px 60px;
  transition: all 0.3s ease-in-out 0s;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  bottom: auto;
  left: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -4px;
}
.btn:link, .btn:visited, .btn:active {
  color: #fff;
}
.btn:hover {
  opacity: 0.8;
}

.btn-2 {
  background-color: #fff;
  background-image: none;
  color: #d6351a;
  outline: solid 2px #d6351a;
  outline-offset: -2px;
}
.btn-2::after {
  border-top: 2px solid #d6351a;
  border-right: 2px solid #d6351a;
}
.btn-2:link, .btn-2:visited, .btn-2:active {
  color: #d6351a;
}
.btn-2 span {
  background-color: #d6351a;
  color: #fff;
  font-size: 0.8125rem;
  padding: 0 8px;
  margin-right: 5px;
  border-radius: 100vh;
}

@media (min-width: 769px) {
  .sec {
    padding: 80px 0;
  }
  .sec-ttl {
    font-size: 2.25rem;
  }
  .sec-ttl span {
    font-size: 1.25rem;
  }
  .btn {
    width: 330px;
    font-size: 1.125rem;
    padding: 18px 90px;
  }
}
/*============================================================
header
==============================================================*/
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

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

.header-logo img {
  zoom: 0.8;
}

.navi .link {
  font-weight: 900;
}
.navi .link a:link, .navi .link a:visited, .navi .link a:active {
  color: #000;
}
.navi .btn {
  padding: 12px 20px 12px 20px;
}
.navi .btn::after {
  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: #d6351a;
  border-radius: 0 0 0 8px;
}
.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 {
    position: fixed;
    z-index: 100;
  }
  .header-inner {
    height: 70px;
    padding: 0 20px;
  }
  .header-logo img {
    zoom: 1;
  }
  #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: 1040px) {
  #pc-navi ul {
    font-size: 0.8125rem;
  }
  .navi .btn {
    font-size: 0.8125rem;
  }
}
/*============================================================
main
==============================================================*/
#kv {
  background: no-repeat top center/cover;
  transition: background-image 1s ease-in-out;
  padding-top: 30vh;
}
#kv .inner {
  max-width: 1220px;
}

.main-copy {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.3;
  margin: 10px 0 20px;
}
.main-copy span {
  color: #d6351a;
}
.main-copy small {
  font-size: 1.375rem;
}

.sub-copy {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: solid 1px #000;
}

#about {
  margin-top: 60px;
  padding-bottom: 50px;
}
#about .sec-ttl {
  padding-bottom: 10px;
  border-bottom: solid 1px #d6351a;
}
#about h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 30px 0 20px;
}
#about h3 span {
  display: block;
  font-size: 1rem;
}
#about p {
  line-height: 2;
}

.overview-list {
  width: 100%;
  background-color: #fdf5f3;
  padding: 20px 30px;
  margin-top: 30px;
  border-radius: 40px;
}

.overview-item {
  padding: 12px;
  border-bottom: solid 1px #cdcdcd;
}
.overview-item:last-child {
  border-bottom: none;
}
.overview-item dt {
  width: 100%;
  font-weight: 700;
  margin-bottom: 6px;
}
.overview-item dd {
  line-height: 1.3;
}
.overview-item .small {
  font-size: 0.875rem;
}

#pain {
  background-color: #f4f4f4;
  padding: 40px 0;
}
#pain figure.sp img {
  width: 75%;
}

.pain-list {
  margin-top: 20px;
}

.pain-item {
  background-color: #fff;
  padding: 6px 20px;
  margin-bottom: 10px;
}
.pain-item span {
  display: block;
  font-weight: 700;
  padding-left: 46px;
  background: url(../img/pain-icon.svg) no-repeat left/36px;
}

#cta-01 {
  background: url(../img/cta-bg-01.jpg) no-repeat top center/cover;
}

#cta-02, #cta-03 {
  background: url(../img/cta-bg-02.jpg) no-repeat top center/cover;
}

.cta {
  padding: 50px 0;
}
.cta .sec-ttl {
  text-align: center;
  color: #fff;
}
.cta .btn-wrap {
  gap: 20px;
  margin-top: 30px;
}

.cta-box {
  max-width: 800px;
  text-align: center;
  background-color: #fff;
  padding: 30px 20px;
  margin: 20px auto 0;
  border-radius: 40px;
}
.cta-box p {
  line-height: 1.8;
}

#features .sec-ttl {
  text-align: center;
}

.features-item {
  margin: 50px 0;
}
.features-item:last-child {
  margin-bottom: 0;
}
.features-item .num {
  font-size: 6.25rem;
  color: #f7e1df;
  line-height: 1;
}
.features-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: -40px 0 30px;
}
.features-item .txt {
  margin-bottom: 30px;
}
.features-item .txt p {
  line-height: 1.8;
}

#case {
  background-color: #f4f4f4;
}
#case .sec-ttl {
  text-align: center;
  margin-bottom: 40px;
}

#partner {
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
}
#partner .sec-ttl {
  text-align: center;
}
#partner .intro {
  text-align: center;
  margin: 50px 0;
}

.partner-item {
  position: relative;
  width: 320px;
  max-width: 800px;
  color: #000;
  background-color: #f4f4f4;
  margin: 0 5px;
  border-radius: 10px;
}
.partner-item h3 {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  margin: 1.2em;
}

.partner-info {
  padding: 0 20px 40px;
}
.partner-info .add {
  margin-bottom: 0.5em;
}
.partner-info .label, .partner-info .value {
  font-size: 0.8125rem;
}
.partner-info .label {
  display: block;
  font-weight: 700;
  border-bottom: solid 1px #a7a7a7;
}

.partner-slider {
  position: relative;
}

.partner-slider .slick-prev,
.partner-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;
}
.partner-slider .slick-prev {
  left: 38%;
  transform: translateY(20px) scaleX(-1);
}
.partner-slider .slick-next {
  right: 38%;
}
.partner-slider .slick-prev::before,
.partner-slider .slick-next::before {
  display: none;
}

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

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

@media (min-width: 769px) {
  .partner-item {
    margin: 0 10px;
  }
  .partner-slider .slick-prev {
    left: 44%;
  }
  .partner-slider .slick-next {
    right: 44%;
  }
}
#flow {
  background-color: #f4f4f4;
}
#flow .sec-ttl {
  text-align: center;
}
#flow .intro {
  text-align: center;
  margin: 50px 0;
}

.flow-list {
  margin: 0 auto;
}
.flow-list li {
  position: relative;
  display: flex;
  justify-content: normal;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.flow-list li::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: -20px;
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-top: 12px solid #d6351a;
  border-left: 10px solid transparent;
}
.flow-list li:last-child::after {
  display: none;
}
.flow-list li figure {
  width: 100px;
  height: 100px;
}
.flow-list li h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.flow-list li p {
  font-size: 0.875rem;
}
.flow-list li .txt {
  width: 82%;
}

#faq .sec-ttl {
  text-align: center;
}

.faq-box {
  width: 96%;
  max-width: 800px;
  margin: 60px auto 0;
}

.accordion {
  margin-bottom: 15px;
}

.toggle {
  display: none;
}

.accordion-ttl {
  display: block;
  position: relative;
  text-align: left;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4rem;
  background: #f4f4f4;
  padding: 10px 50px 10px 10px;
  cursor: pointer;
  transition-duration: 0.2s;
  border-radius: 5px;
}
.accordion-ttl p {
  display: flex;
  align-items: center;
}
.accordion-ttl span {
  display: inline-block;
  text-align: center;
  color: #000;
  font-size: 2.25rem;
  line-height: 4rem;
  font-family: "Poppins", sans-serif;
  margin-right: 20px;
}
.accordion-ttl::before, .accordion-ttl::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}
.accordion-ttl::before {
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.accordion-ttl,
.accordion-txt {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.accordion-txt {
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}
.accordion-txt .answer {
  display: inline-block;
  text-align: center;
  color: #d6351a;
  font-size: 2.25rem;
  font-family: "Poppins", sans-serif;
  margin-right: 20px;
  margin-top: 10px;
}
.accordion-txt p {
  display: flex;
  align-items: center;
}

.toggle:checked + .accordion-ttl + .accordion-txt {
  height: auto;
  padding: 20px;
  transition: all 0.3s;
}

.toggle:checked + .accordion-ttl::before {
  transform: translateY(-50%) rotate(0);
}

#company {
  border-top: solid 1px #d6d6d6;
}
#company .sec-ttl {
  text-align: center;
  margin-bottom: 0.5em;
}
#company .flex-wrap-center {
  gap: 30px;
}
#company .name {
  font-weight: 700;
}

.company-logo {
  width: 100px;
}

@media (min-width: 769px) {
  #kv {
    padding-top: 15vh;
    height: 800px;
  }
  .main-copy {
    margin: 30px 0;
    font-size: 4.25rem;
  }
  .main-copy small {
    font-size: 3rem;
  }
  .sub-copy {
    font-size: 1.5rem;
  }
  #about {
    margin-top: 0;
    padding-bottom: 80px;
  }
  #about .inner {
    display: flex;
    justify-content: normal;
    align-items: normal;
  }
  #about .txt {
    width: 56%;
    margin-left: 55px;
  }
  #about h3 {
    margin: 60px 0 30px;
  }
  #about figure {
    margin-top: -140px;
  }
  .overview-list {
    max-width: 740px;
    padding: 20px 50px;
    margin-top: 0;
    margin-left: 60px;
  }
  .overview-item {
    padding: 16px;
  }
  .overview-item dt {
    width: 18%;
    margin-bottom: 0;
  }
  .overview-item dd {
    width: 82%;
  }
  .pain-list {
    margin-top: 0;
    margin-left: 25px;
  }
  .cta-box {
    padding: 40px;
  }
  .features-item h3 {
    font-size: 1.5rem;
  }
  .features-item .txt {
    width: 50%;
    margin-right: 40px;
  }
  .flow-list {
    max-width: 630px;
  }
  .accordion-ttl {
    padding: 0 66px 0 15px;
  }
  .accordion-txt {
    font-size: 1rem;
  }
}
/*============================================================
footer
==============================================================*/
footer {
  font-size: 0.625rem;
  color: #000;
  background: #fff;
  text-align: center;
}

.footer-copy {
  margin: 20px auto;
}/*# sourceMappingURL=style.css.map */