@charset "UTF-8";
/* ----------------------------------------------
    事業内容
---------------------------------------------- */
.business__category {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .business__category {
    margin-bottom: 100px;
  }
}

.business__category-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .business__category-title {
    margin-bottom: 80px;
  }
}

.business__category-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .business__category-list {
    grid-template-columns: 1fr;
  }
}

.business__category-list.column-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .business__category-list.column-3 {
    grid-template-columns: 1fr;
  }
}

.business__category-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 20px 0;
  padding: 32px 20px;
}
.business__category-img {
  width: 96px;
  height: auto;
  margin: 0 auto;
}
.business__category-item-title {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: "M PLUS 1p", sans-serif;
  line-height: 1;
  text-align: center;
}
.business__category-text {
  font-size: 1.4rem;
  line-height: 1.5;
}
.view-more-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5px;
  background-color: #e2241b;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "M PLUS 1p", sans-serif;
  color: #f6f5f1;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0.035em 0.035em 0 rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: inset 2px -2px rgba(0, 0, 0, 0.25), inset -2px 2px rgba(255, 255, 255, 0.45);
          box-shadow: inset 2px -2px rgba(0, 0, 0, 0.25), inset -2px 2px rgba(255, 255, 255, 0.45);
  border-radius: 100px;
  border: 1.5px solid #000;
  -webkit-transition: opacity 0.3s 0s ease;
  transition: opacity 0.3s 0s ease;
  padding: 18px 32px 18px 48px;
  margin: auto;
}
.view-more-btn::after {
  content: "";
  display: block;
  background: url(../img/common/icon-plus-circle.svg) no-repeat center/contain;
  width: 16px;
  height: 16px;
}

.view-more-btn:hover {
  opacity: 0.6;
}

/* ----------------------------------------------
    モーダル
---------------------------------------------- */
.modal {
  display: none;
  overscroll-behavior-y: contain;
  overflow-y: scroll;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
}

.modal__close-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.modal__inner {
  position: relative;
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .modal__inner {
    padding: 120px 0;
  }
}

.modal__content-list {
  position: relative;
  z-index: 1;
  width: 1040px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .modal__content-list {
    width: 92%;
  }
}

.modal-close-btn {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .modal-close-btn {
    width: 24px;
    height: 24px;
    top: 16px;
    right: 19px;
  }
}

.modal__content-item {
  display: none;
  background-color: #f6f5f1;
  border-radius: 20px;
  padding: 80px 40px;
}
@media screen and (max-width: 767px) {
  .modal__content-item {
    padding: 100px 20px;
  }
}

.modal__title {
  font-size: 4rem;
  font-weight: 900;
  font-family: "M PLUS 1p", sans-serif;
  color: #e60012;
  line-height: 1;
  text-align: center;
  text-shadow: 1px 1px 0 #fff, 2px 2px 0 #fff, 3px 3px 0 #fff;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .modal__title {
    font-size: 2.4rem;
  }
}

.modal__recommend-box {
  width: 740px;
  padding: 40px 60px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .modal__recommend-box {
    width: 100%;
    padding: 40px 20px;
  }
}

.modal__recommend-title {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(40%, rgba(254, 205, 0, 0.7)), color-stop(40%, transparent));
  background-image: linear-gradient(to top, rgba(254, 205, 0, 0.7) 40%, transparent 40%);
  font-size: 3.2rem;
  font-weight: 800;
  font-family: "M PLUS 1p", sans-serif;
  line-height: 1.3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  margin: 0 auto 32px;
}
@media screen and (max-width: 767px) {
  .modal__recommend-title {
    font-size: 2rem;
  }
}

.modal__recommend-list {
  text-indent: -32px;
  margin-left: 32px;
}
.modal__recommend-item::before {
  content: "";
  display: inline-block;
  background: url(../img/common/icon-check-verified.svg) no-repeat center/contain;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .modal__recommend-item::before {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }
}

.modal__recommend-item:not(:last-of-type) {
  margin-bottom: 20px;
}

.modal__solution-box::before {
  content: "";
  display: block;
  background: url(../img/common/star-line.svg) no-repeat center/contain;
  width: 90px;
  height: 24px;
  margin: 0 auto 40px;
}

.modal__solution-title {
  font-size: 3.2rem;
  font-weight: 800;
  font-family: "M PLUS 1p", sans-serif;
  line-height: 1;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .modal__solution-title {
    font-size: 2.4rem;
  }
}

.modal__solution-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 32px;
}
@media screen and (max-width: 767px) {
  .modal__solution-list {
    grid-template-columns: 1fr;
    gap: 60px 0;
  }
}

.modal__solution-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 20px 0;
}
.modal__solution-item-title {
  font-weight: 700;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .modal__solution-item-title {
    display: block;
    grid-row: auto;
  }
}

.modal__solution-item-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 16px;
  border-top: 16px solid #ff6438;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .modal__solution-item-title::after {
    margin: 20px auto 0;
  }
}

/* ----------------------------------------------
    支援実績
---------------------------------------------- */
.support-record {
  background-color: #fff;
}
.support-record .inner {
  width: 100%;
}

.support-record__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
  width: 1120px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
  .support-record__title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 20px;
    width: 92%;
    margin: 0 auto 80px;
  }
}

.support-record__title::before,
.support-record__title::after {
  content: "";
  display: block;
  background: url(../img/common/text-deco-star-yellow.svg) repeat-x left/contain;
  width: 418px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .support-record__title::before,
  .support-record__title::after {
    width: 80px;
  }
}

.support-record__list {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .support-record__list {
    margin-bottom: 30px;
  }
}

.support-record__item {
  display: grid;
  grid-template-columns: 262px 1fr;
  gap: 0 24px;
  width: 740px;
  padding: 32px;
}
@media screen and (max-width: 767px) {
  .support-record__item {
    display: block;
    width: 76%;
    height: 100%;
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .support-record__img-box {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .support-record__img-wrap {
    aspect-ratio: 280/180;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .support-record__img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.support-record__item-title {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: "M PLUS 1p", sans-serif;
  color: #ff6438;
  line-height: 1.4;
  border-bottom: 1px solid #c1c1c1;
  padding-bottom: 12px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .support-record__item-title {
    font-size: 1.8rem;
    font-weight: 700;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
}

.support-record__item-text dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .support-record__item-text dl {
    display: block;
    margin-bottom: 20px;
  }
}
.support-record__item-text dt {
  font-weight: 800;
  font-family: "M PLUS 1p", sans-serif;
}
@media screen and (max-width: 767px) {
  .support-record__item-text dt {
    border-bottom: 1px solid #c1c1c1;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
}
.support-record__item-text dt::after {
  content: "：";
}
@media screen and (max-width: 767px) {
  .support-record__item-text dt::after {
    content: none;
  }
}
/* swiper */
.swiper-outer {
  position: relative;
}

.swiper-pagination {
  display: block;
  position: static;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .swiper-pagination {
    display: block;
  }
}

.swiper-pagination-bullet-active {
  background-color: #e2241b;
}

span.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}

.swiper-button-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.swiper-button-prev {
  background-color: #fff;
  position: static;
}
.swiper-button-next {
  position: static;
}
.swiper-button-prev,
.swiper-button-next {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5px;
  background-color: #e2241b;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "M PLUS 1p", sans-serif;
  color: #f6f5f1;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0.035em 0.035em 0 rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: inset 2px -2px rgba(0, 0, 0, 0.25), inset -2px 2px rgba(255, 255, 255, 0.45);
          box-shadow: inset 2px -2px rgba(0, 0, 0, 0.25), inset -2px 2px rgba(255, 255, 255, 0.45);
  border-radius: 100px;
  border: 1.5px solid #000;
  -webkit-transition: opacity 0.3s 0s ease;
  transition: opacity 0.3s 0s ease;
  padding: 7px 28px;
  margin: 0;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  display: block;
  background: url(../img/common/arrow-right.svg) no-repeat center/contain;
  width: 25px;
  height: 25px;
}

.swiper-button-prev::after {
  background: url(../img/common/arrow-left.svg) no-repeat center/contain;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.6;
}

/* ----------------------------------------------
    よくある質問
---------------------------------------------- */
.qa {
  background: url(../img/common/bg-dot-gray.png) repeat 0 0/contain;
  background-color: #fecd00;
}
@media screen and (max-width: 767px) {
  .qa {
    background: url(../img/common/bg-dot-gray-sp.png) repeat 0 0/contain;
    background-color: #fecd00;
  }
}

.qa__title {
  margin-bottom: 54px;
}
@media screen and (max-width: 767px) {
  .qa__title {
    margin-bottom: 60px;
  }
}

.qa__wrap {
  width: 930px;
  padding: 60px 80px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .qa__wrap {
    width: 100%;
    padding: 80px 20px;
  }
}
.qa__wrap dl {
  border-bottom: 1px solid #a8a8a8;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .qa__wrap dl {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.qa__wrap dt,
.qa__wrap dd {
  text-indent: -48px;
  margin-left: 48px;
}
@media screen and (max-width: 767px) {
  .qa__wrap dt,
  .qa__wrap dd {
    text-indent: -31px;
    margin-left: 31px;
  }
}
.qa__wrap dt {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .qa__wrap dt {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.qa__text-q,
.qa__text-a {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: "M PLUS 1p", sans-serif;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .qa__text-q,
  .qa__text-a {
    font-size: 2rem;
    margin-right: 8px;
  }
}

.qa__text-a {
  color: #e2241b;
}/*# sourceMappingURL=business.css.map */