@charset "UTF-8";
/********************************************
* Component
********************************************/
.c-block {
  background-color: #eee;
  padding: 25px;
}
.c-block:not(:last-of-type) {
  margin-bottom: 25px;
}
.c-block--white {
  background-color: #fff;
}
.c-block__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.c-block__title--green {
  color: #2baca0;
}

.c-btn {
  background: #e95f0f;
  color: #fff;
  border-radius: 5px;
}
.c-btn--white {
  border-radius: 999px;
  background-color: #fff;
  color: #005eac;
  display: inline-block;
  padding: 10px 20px;
}

.c-case:not(:last-of-type) {
  margin-bottom: 68px;
}
@media (width <= 767px) {
  .c-case:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.c-case__title {
  font-size: 24px;
  color: #005eac;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}
@media (width <= 767px) {
  .c-case__title {
    font-size: 20px;
  }
}
.c-case__name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 30px;
}
.c-case__img {
  margin-bottom: 30px;
}
.c-case__inner {
  margin-bottom: 1.875rem;
}
.c-case__sub-title {
  color: #2baca0;
}
.c-case__p {
  font-size: 16px;
  margin-bottom: 30px;
}
.c-case__link {
  text-align: center;
  font-weight: 700;
  color: #005eac;
  display: block;
}

.c-document {
  width: 310px;
  margin: 80px auto;
  text-align: center;
}
@media (width <= 767px) {
  .c-document {
    margin: 20px auto;
  }
}
.c-document__p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}
.c-document .c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  gap: 10px;
  padding: 10px 20px 10px 8px;
}
.c-document .c-btn__left {
  color: #ff0;
  font-size: 12px;
  font-weight: 500;
  width: 55%;
}
.c-document .c-btn__right {
  letter-spacing: 0.2em;
  position: relative;
  width: 45%;
  font-size: 22px;
}
.c-document .c-btn__right:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: -10px;
  top: calc(50% - 6px);
}

.c-faq-list__item {
  border: 1px solid #c7c7c7;
}
.c-faq-list__item:not(:last-of-type) {
  margin-bottom: 20px;
}
.c-faq-list__item.is-active .c-faq-list__question:after {
  transform: rotate(0deg);
}
.c-faq-list__question {
  font-size: 18px;
  color: #005eac;
  padding: 15px 20px;
  background: #eee;
  position: relative;
  letter-spacing: 0.05em;
  cursor: pointer;
}
@media (width <= 767px) {
  .c-faq-list__question {
    padding: 15px 40px 15px 20px;
  }
}
.c-faq-list__question:before {
  content: "";
  background: #005eac;
  font-size: 18px;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 2px;
}
.c-faq-list__question:after {
  content: "";
  background: #005eac;
  font-size: 18px;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 2px;
  transform: rotate(90deg);
  transition: 0.3s;
}
.c-faq-list__answer {
  padding: 15px 20px;
  display: none;
}

.c-flow-list {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.c-flow-list__item {
  border: 4px solid #2baca0;
  border-radius: 5px;
  width: 100%;
  position: relative;
}
.c-flow-list__item:not(:last-of-type):after {
  content: "";
  display: block;
  background: #2baca0;
  width: 40px;
  height: 36px;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, calc(100% - 10px) 24px, 100% 24px, 50% 100%, 0 24px, 10px 24px);
  bottom: -40px;
  left: 45px;
  position: absolute;
}
@media (width <= 767px) {
  .c-flow-list__item:not(:last-of-type):after {
    left: calc(50% - 20px);
  }
}
.c-flow-list__item-title {
  color: #fff;
  font-size: 20px;
  padding: 10px 20px;
  background: #2baca0;
}

.c-has-triangle:after {
  display: block;
  content: "";
  width: 564px;
  height: 40px;
  background: #2baca0;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: 40px auto 0;
}
@media (width <= 767px) {
  .c-has-triangle:after {
    width: 240px;
    height: 20px;
  }
}

.c-inner {
  width: 880px;
  margin: 0 auto;
  padding: 30px 20px;
}
@media (width <= 767px) {
  .c-inner {
    width: 100%;
  }
}

.c-list--default {
  list-style-type: disc;
  margin-left: 1.5em;
}

.c-list02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px 44px;
}
@media (width <= 767px) {
  .c-list02 {
    gap: 30px;
  }
}
.c-list02__item {
  padding: 30px 25px;
  width: 390px;
  box-shadow: 0 4px 12px 2px rgba(0, 0, 0, 0.35);
}
@media (width <= 767px) {
  .c-list02__item {
    width: 100%;
  }
}
.c-list02__img {
  margin: 0 auto 10px;
  display: block;
}
.c-list02__title {
  color: #005eac;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}
.c-list02__p {
  font-size: 14px;
  line-height: 24px;
}

.c-table {
  border-collapse: collapse;
}
.c-table tr:nth-of-type(even) {
  background-color: #eee;
}
.c-table th {
  padding: 15px 25px;
  border-bottom: 1px solid #666;
}
.c-table td {
  padding: 15px 25px;
  border-bottom: 1px solid #666;
}
.c-table__tr-head {
  background-color: #005eac;
  color: #fff;
}
.c-table__tr-head th {
  padding: 15px 25px;
}
.c-table__cell {
  color: #fff;
}
.c-table__cell--none {
  background-color: inherit;
  border: none !important;
}
.c-table__cell--blue {
  background-color: #609aca;
}
.c-table__cell--orange {
  background-color: #e95f0f;
}
.c-table__cell--gray {
  background-color: #999;
}

.c-title {
  font-weight: 700;
}
.c-title__h1 {
  letter-spacing: 0.05em;
  font-size: 30px;
  color: #666;
  padding-left: 20px;
  border-left: 6px solid #005eac;
  margin-bottom: 25px;
}
@media (width <= 767px) {
  .c-title__h1 {
    font-size: 22px;
    padding-left: 10px;
  }
}
.c-title__h2 {
  font-size: 24px;
  color: #005eac;
}
@media (width <= 767px) {
  .c-title__h2 {
    font-size: 20px;
  }
}
.c-title__h2--green {
  color: #2baca0;
}

/********************************************
* Project func_33
********************************************/
body {
  font-size: 16px;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

ul:not([class]) {
  list-style-type: disc;
  margin-left: 1em;
}

li {
  font-size: 16px;
}

.p-func_33 p {
  font-size: 16px;
}
.p-func_33 .c-title__h2 {
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  margin-top: 40px;
}
@media (width <= 767px) {
  .p-func_33 .c-title__h2 {
    font-size: 20px;
  }
}
.p-func_33 .c-document {
  margin: 50px auto;
}
.p-func_33__inner {
  width: 840px;
  margin: 0 auto;
  padding: 30px 0;
}
@media (width <= 767px) {
  .p-func_33__inner {
    width: 100%;
    padding: 30px 20px;
  }
}
.p-func_33__h1 {
  font-size: 30px;
  text-align: center;
  line-height: 1.43;
  margin-bottom: 30px;
}
@media (width <= 767px) {
  .p-func_33__h1 {
    font-size: 22px;
  }
}
.p-func_33__p {
  margin-bottom: 30px;
}
@media (width <= 767px) {
  .p-func_33__mv {
    padding-top: 40px;
  }
}
.p-func_33__mv-img {
  margin-bottom: 30px;
}
.p-func_33__mv p {
  margin-bottom: 0;
}
.p-func_33__pos {
  margin-bottom: 70px;
}
@media (width <= 767px) {
  .p-func_33__pos {
    margin-bottom: 30px;
  }
}
.p-func_33__pos-img {
  margin-bottom: 70px;
}
.p-func_33__pos .js-scroll-hint {
  overflow-x: scroll;
}
.p-func_33__pos .c-table {
  text-align: center;
  font-size: 15px;
  width: 100%;
}
@media (width <= 767px) {
  .p-func_33__pos .c-table {
    min-width: 800px;
  }
}
.p-func_33__pos .c-table__cell--blue {
  border-bottom: 1px solid #fff;
}
.p-func_33__pos .c-table__cell--gray, .p-func_33__pos .c-table__cell--orange {
  border-right: 1px solid #fff;
}
.p-func_33__pos .c-table th:nth-of-type(1) {
  width: 160px;
}
.p-func_33__pos .c-table td {
  background-color: #fff;
  border: 1px solid #eeeeee;
}
.p-func_33__pos .c-table td:nth-of-type(1) {
  border-left: 2px solid #e95f0f;
  border-right: 2px solid #e95f0f;
}
.p-func_33__pos .c-table tr:last-of-type td:nth-of-type(1) {
  border-bottom: 2px solid #e95f0f;
}
.p-func_33__feature {
  margin-bottom: 30px;
}
@media (width <= 767px) {
  .p-func_33__feature {
    margin-bottom: 0;
  }
}
.p-func_33__feature-img {
  margin-bottom: 20px;
}
.p-func_33__feature-list {
  overflow: hidden;
}
@media (width <= 767px) {
  .p-func_33__feature-list {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.p-func_33__feature-item {
  width: 180px;
  display: flex;
  gap: 13px;
}
@media (width <= 767px) {
  .p-func_33__feature-item {
    width: 120px;
    gap: 10px;
  }
}
.p-func_33__feature-logo--small {
  width: calc(50% - 6.5px);
  max-width: calc(50% - 6.5px);
}
@media (width <= 767px) {
  .p-func_33__feature-logo--small {
    width: 56px;
    max-width: 56px;
  }
}
.p-func_33__feature .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  max-width: 760px;
  margin: 0 auto 30px;
  transition-timing-function: linear;
}
@media (width <= 767px) {
  .p-func_33__feature .swiper-wrapper {
    max-width: inherit;
    flex-wrap: nowrap;
  }
}
.p-func_33__can {
  margin-bottom: 80px;
}
@media (width <= 767px) {
  .p-func_33__can {
    margin-bottom: 30px;
  }
}
.p-func_33__can .c-list02__img {
  width: 54px !important;
}
.p-func_33__case {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (width <= 767px) {
  .p-func_33__case {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.p-func_33__case .c-case__link {
  font-size: 15px;
  letter-spacing: 0.05em;
}
.p-func_33__flow {
  margin-bottom: 40px;
}
@media (width <= 767px) {
  .p-func_33__flow {
    margin-bottom: 20px;
  }
}
.p-func_33 .c-flow-list .p-crm42__p {
  padding: 20px 30px;
  margin-bottom: 0;
}
.p-func_33__faq {
  padding-bottom: 130px;
}
@media (width <= 767px) {
  .p-func_33__faq {
    padding-top: 0;
    padding-bottom: 40px;
  }
}
.p-func_33__contact {
  text-align: center;
}
@media (width <= 767px) {
  .p-func_33__contact-title {
    font-size: 24px;
  }
}
.p-func_33__contact .c-document {
  width: 380px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  padding: 20px 30px;
}
@media (width <= 767px) {
  .p-func_33__contact .c-document {
    width: 100%;
    max-width: 320px;
    padding: 10px;
  }
}
.p-func_33__contact .c-document__p {
  font-size: 19px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 10px;
}
@media (width <= 767px) {
  .p-func_33__contact .c-document__p {
    font-size: 1rem;
  }
}
.p-func_33__contact .c-document__p:before {
  width: 35px;
  height: 2px;
  background-color: #666;
  content: "";
  display: block;
}
.p-func_33__contact .c-document__p:after {
  width: 35px;
  height: 2px;
  background-color: #666;
  content: "";
  display: block;
}
@media (width <= 767px) {
  .p-func_33__contact .c-btn__left {
    font-size: 10px;
  }
}
@media (width <= 767px) {
  .p-func_33__contact .c-btn__right {
    font-size: 20px;
  }
}

/* Utilities */
.u-mt0 {
  margin-top: 0px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-pc {
  display: block;
}
@media (width <= 767px) {
  .u-pc {
    display: none;
  }
}
.u-pc--inline {
  display: inline;
}
@media (width <= 767px) {
  .u-pc--inline {
    display: none;
  }
}
.u-pc--iblock {
  display: inline-block;
}
@media (width <= 767px) {
  .u-pc--iblock {
    display: none;
  }
}
.u-pc--table {
  display: table;
}
@media (width <= 767px) {
  .u-pc--table {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media (width <= 767px) {
  .u-sp {
    display: block;
  }
}
.u-sp--inline {
  display: none;
}
@media (width <= 767px) {
  .u-sp--inline {
    display: inline;
  }
}
.u-sp--iblock {
  display: none;
}
@media (width <= 767px) {
  .u-sp--iblock {
    display: inline-block;
  }
}
.u-sp--table {
  display: none;
}
@media (width <= 767px) {
  .u-sp--table {
    display: table;
  }
}

.u-ofit {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.u-pos--absolute {
  position: absolute;
}
.u-pos--fixed {
  position: fixed;
}
.u-pos--relative {
  position: relative;
}

.u-text--default {
  font-family: "メイリオ", Meiryo, Verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
}
.u-text--mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.u-text--center {
  text-align: center;
}
.u-text--left {
  text-align: left;
}
.u-text--right {
  text-align: right;
}
.u-text--thin {
  font-weight: 100;
}
.u-text--extra-light {
  font-weight: 200;
}
.u-text--light {
  font-weight: 300;
}
.u-text--regular {
  font-weight: 400;
}
.u-text--medium {
  font-weight: 500;
}
.u-text--semi-bold {
  font-weight: 600;
}
.u-text--bold {
  font-weight: 700;
}
.u-text--extra-bold {
  font-weight: 800;
}
.u-text--black {
  font-weight: 900;
}
.u-text--big {
  font-size: 1.4em;
}
.u-text--regular {
  font-size: 1em;
}
.u-text--small {
  font-size: 0.8em;
}

.u-ellipsis {
  position: relative;
  overflow: hidden;
  height: 13.8em;
}
.u-ellipsis:before, .u-ellipsis:after {
  position: absolute;
  background: #fff;
}
.u-ellipsis:before {
  width: 2em;
  content: "･･･";
  bottom: 0;
  right: 0;
}
.u-ellipsis:after {
  content: "";
  width: 100%;
  height: 100%;
}

.u-color--blue {
  color: #005eac;
}