.main-section {
  padding: 120px 15px;
}
@media screen and (max-width: 767px) {
  .main-section {
    padding: 80px 15px;
  }
}
.main-section .c-ttl-1 {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .main-section .c-ttl-1 {
    margin-bottom: 40px;
  }
}
.main-section__subtitle {
  max-width: 774px;
  width: 100%;
  margin: 0 auto 10px;
}
@media screen and (max-width: 767px) {
  .main-section__subtitle {
    max-width: 345px;
  }
}
.main-section__note {
  font-size: 12px;
  margin-top: 30px;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .main-section__note {
    justify-content: flex-start;
    gap: 0;
  }
}
.main-section__note-text {
  display: flex;
  gap: 5px;
}
.main-section__note-text span {
  flex: 0 0 auto;
}
.main-section__body {
  margin: 50px 0 0;
}
@media screen and (max-width: 767px) {
  .main-section__body {
    margin: 40px -15px 0;
  }
}

.option-sec {
  padding: 120px 0;
  background: #D7F2FF;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .option-sec {
    padding: 80px 0;
    border-radius: 20px;
  }
}
.option-sec__inner {
  max-width: 1178px;
  width: 100%;
  margin: 0 auto;
}
.option-sec__note {
  padding: 30px 40px;
  font-size: 14px;
  line-height: 1.6;
  color: #222;
}
@media screen and (max-width: 767px) {
  .option-sec__note {
    padding: 20px 15px;
    font-size: 12px;
  }
}
.option-sec__note p {
  margin: 0;
}
.option-sec__btn {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .option-sec__btn {
    margin-top: 50px;
  }
}

.option-tab__list {
  display: flex;
  position: relative;
  z-index: 10;
}
.option-tab__list:before, .option-tab__list:after {
  content: "";
  width: 58px;
  height: 81px;
  background: url(../img/components/chara01.svg) no-repeat center center/contain;
  position: absolute;
  top: -64px;
  z-index: 5;
  transition: 0.3s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .option-tab__list:before, .option-tab__list:after {
    width: 43px;
    height: 60px;
    top: -48px;
  }
}
.option-tab__list:before {
  left: 90px;
}
@media screen and (max-width: 767px) {
  .option-tab__list:before {
    left: 8%;
  }
}
.option-tab__list:after {
  right: 90px;
}
@media screen and (max-width: 767px) {
  .option-tab__list:after {
    right: 8%;
  }
}
.option-tab__list:has(.option-tab__button:nth-child(1).active):before {
  opacity: 1;
}
.option-tab__list:has(.option-tab__button:nth-child(2).active):after {
  opacity: 1;
}
.option-tab__button {
  aspect-ratio: 590/72;
  max-width: 590px;
  width: 50.08%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  color: #6BAAC8;
  background: #B6E0F4;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1;
  mask-image: url(../img/components/tab_btn_mask.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: bottom;
}
@media screen and (max-width: 767px) {
  .option-tab__button {
    aspect-ratio: 190/67;
    width: 50.06%;
    font-size: 16px;
    flex: 1;
    mask-image: url(../img/components/tab_btn_mask_sp.svg);
  }
}
.option-tab__button:first-of-type {
  left: 27px;
}
@media screen and (max-width: 767px) {
  .option-tab__button:first-of-type {
    left: 15px;
  }
}
.option-tab__button:nth-child(2) {
  right: 30px;
}
@media screen and (max-width: 767px) {
  .option-tab__button:nth-child(2) {
    right: 15px;
  }
}
.option-tab__button.active {
  background: #fff;
  color: #1A9BF3;
  z-index: 3;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
}
.option-tab__button:not(.active) {
  background: #B6E0F4;
  color: #6BAAC8;
  z-index: 0;
}
.option-tab__panels {
  background: #fff;
  border-radius: 30px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
  padding: 56px 100px 60px;
  position: relative;
}
.option-tab__panels:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 163px;
  background: url(../img/components/chara02.svg) no-repeat center center/contain;
  bottom: 0;
  right: -52px;
}
@media screen and (max-width: 767px) {
  .option-tab__panels:after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .option-tab__panels {
    border-radius: 10px;
    padding: 20px 0 20px 15px;
  }
}
.option-tab__panel[hidden] {
  display: none;
}
.option-tab__note {
  margin-top: 30px;
}

.option-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.option-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 595px;
}
.option-table th, .option-table td {
  border: 1px solid #D1D5D7;
  padding: 15px 20px;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .option-table th, .option-table td {
    padding: 12px 15px;
    font-size: 14px;
  }
}
.option-table th {
  background: #2EA7E0;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.option-table th:first-child {
  width: 295px;
  border-left: none;
}
@media screen and (max-width: 767px) {
  .option-table th:first-child {
    width: 160px;
  }
}
.option-table th:nth-child(2) {
  width: 130px;
}
@media screen and (max-width: 767px) {
  .option-table th:nth-child(2) {
    width: 108px;
  }
}
.option-table th:last-child {
  border-right: none;
}
.option-table td {
  color: #222;
}
.option-table td:nth-child(1) {
  border-left: none;
}
.option-table td:nth-child(2) {
  text-align: center;
}
.option-table td:last-child {
  border-right: none;
  text-align: left;
}
.option-table tr:nth-child(even) td {
  background: #ECF6FF;
}
.option-table .logo {
  margin: 10px auto 0;
}
.option-table .logo._dx_suite {
  width: 183px;
}
.option-table .logo._shanon {
  width: 167px;
}
.option-table .logo._sansan {
  width: 125px;
}
.option-table .logo._bownow {
  width: 93px;
}
.option-table .logo._haihai {
  width: 207px;
}
.option-table .logo._moneyforward {
  width: 170px;
}
.option-table .c-link {
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .option-table .c-link {
    font-size: 14px;
  }
}
.option-table .text-row + .text-row {
  margin-top: 10px;
}

.example-sec {
  padding: 120px 15px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .example-sec {
    padding: 80px 15px;
  }
}
.example-sec__logo-slider {
  margin: 80px 0 0;
}
@media screen and (max-width: 767px) {
  .example-sec__logo-slider {
    margin: 50px 0 0;
  }
}
.example-sec__logo-slider-ttl {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.6;
  width: fit-content;
  margin: 0 auto;
  padding: 0 73px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .example-sec__logo-slider-ttl {
    font-size: 23px;
    padding: 0 23px;
    text-align: center;
  }
}
.example-sec__logo-slider-ttl:before, .example-sec__logo-slider-ttl:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #FFD117;
  mask: url(../img/top/mv_slider_ttl_obj.svg) no-repeat center center/contain;
  aspect-ratio: 53/44;
  width: 53px;
}
@media screen and (max-width: 767px) {
  .example-sec__logo-slider-ttl:before, .example-sec__logo-slider-ttl:after {
    top: auto;
    transform: translateY(0);
    bottom: 6px;
    width: 31px;
  }
}
.example-sec__logo-slider-ttl:before {
  left: 0;
}
.example-sec__logo-slider-ttl:after {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}
@media screen and (max-width: 767px) {
  .example-sec__logo-slider-ttl:after {
    transform: translateY(0) scaleX(-1);
  }
}
.example-sec__logo-slider-ttl .em {
  color: #1A9BF3;
}
.example-sec__logo-slider-ttl .large {
  font-size: 46px;
}
@media screen and (max-width: 767px) {
  .example-sec__logo-slider-ttl .large {
    font-size: 36px;
  }
}
.example-sec .l-logo-slider__wrap {
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.08);
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .example-sec .l-logo-slider__wrap {
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08);
    border-radius: 10px;
  }
}

.flow-sec {
  padding: 120px 15px;
  background: #D7F2FF;
  border-radius: 50px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .flow-sec {
    padding: 80px 15px;
    border-radius: 20px;
  }
}
.flow-sec__body {
  list-style-type: none;
  padding-inline-start: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px 46px;
}
@media screen and (max-width: 767px) {
  .flow-sec__body {
    grid-template-columns: repeat(1, 1fr);
    gap: 64px;
  }
}
.flow-sec__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0px;
}
@media screen and (max-width: 767px) {
  .flow-sec__item {
    grid-template-columns: 140px 1fr;
    gap: 15px;
    grid-template-rows: auto;
  }
}
.flow-sec__item-img {
  text-align: center;
  margin: 0 0 15px;
}
.flow-sec__item-img img {
  width: 200px;
}
.flow-sec__item:not(:last-of-type) .flow-sec__item-img {
  position: relative;
  z-index: 0;
}
.flow-sec__item:not(:last-of-type) .flow-sec__item-img:after {
  content: "";
  position: absolute;
  width: 26px;
  height: 18px;
  background: url(../img/price/flow_arrow.svg) no-repeat center center/contain;
  top: 50%;
  right: -35px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .flow-sec__item:not(:last-of-type) .flow-sec__item-img:after {
    bottom: -45px;
    left: 50%;
    top: auto;
    right: auto;
    transform: translate(-50%, 0) rotate(90deg);
  }
}
.flow-sec__item-ttl {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
  color: #1A9BF3;
  margin: 0 0 15px;
}
@media screen and (max-width: 767px) {
  .flow-sec__item-ttl {
    font-size: 18px;
    margin: 0 0 10px;
    text-align: left;
  }
}
.flow-sec__item-txt {
  font-size: 16px;
  line-height: 1.6;
}

.support-sec {
  padding: 120px 15px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .support-sec {
    padding: 80px 15px;
  }
}
.support-sec__lists {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px 30px;
  position: relative;
  z-index: 0;
}
.support-sec__lists:before, .support-sec__lists:after {
  content: "";
  position: absolute;
}
.support-sec__lists:before {
  width: 68px;
  height: 80px;
  background: url(../img/top/recommend_chara01.svg) no-repeat center center/contain;
  top: -80px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  .support-sec__lists:before {
    width: 51px;
    height: 60px;
    top: -60px;
    left: 10px;
  }
}
.support-sec__lists:after {
  width: 60px;
  height: 163px;
  background: url(../img/top/recommend_chara02.svg) no-repeat center center/contain;
  bottom: 0;
  right: -52px;
}
@media screen and (max-width: 767px) {
  .support-sec__lists:after {
    display: none;
  }
}
.support-sec__lists-item {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .support-sec__lists-item {
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08);
    padding: 20px;
    border-radius: 10px;
  }
}
.support-sec__lists-item-img {
  margin: 0 0 15px;
}
.support-sec__lists-item-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1px;
  margin: 0 0 15px;
}
.support-sec__lists-item-subttl {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
}
.support-sec__lists-item-subttl span {
  color: #FF622E;
}
.support-sec__lists-item-body {
  font-size: 16px;
  line-height: 1.6;
}
.support-sec__lists-item-body span {
  font-weight: 600;
}
.support-sec__lists-item-body .c-link {
  margin-top: 15px;
}

.faq-sec {
  padding: 120px 15px;
  background: #D7F2FF;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .faq-sec {
    padding: 80px 15px;
    border-radius: 20px;
  }
}

/*# sourceMappingURL=price.css.map */
