/*********************************/
/* COMMON */
/*********************************/
main.web-production {
  color: #1a346e;
  font-weight: 400;
  font-size: 18px;
  font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'メイリオ', Meiryo,
    'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
h2 {
  font-weight: 800;
  text-align: center;
}
.flex {
  display: flex;
}
.sp {
  display: none;
}
.innr-1000 {
  width: 1000px;
  max-width: calc(100% - 32px);
  margin: auto;
}
.new-innr {
  position: relative;
  z-index: 1;
  display: flex;
  width: 1093px;
  max-width: calc(100% - 32px);
  margin: auto;
  transform: translate(-40px, 0);
}
.accent {
  color: #04b5c4;
}
.section-ttl {
  position: relative;
  margin-bottom: 66px;
  font-weight: 800;
  font-size: 34px;
}
.section-ttl span {
  display: block;
  margin-bottom: 25px;
  font-size: 24px;
}
.section-ttl::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 227.45px;
  height: 165.68px;
  background: url(../img/ttl-bg.svg) no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
  content: '';
}
.section-subttl {
  position: relative;
  height: 63px;
  color: #04b5c4;
  font-weight: 800;
  font-size: 34px;
  line-height: 63px;
  text-align: center;
}
.section-subttl + p {
  margin: 60px auto 56px;
  font-size: 16px;
  line-height: 2.125;
  text-align: center;
}
.btn-wrap {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
.btn-txt {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 16px;
}
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 520px;
  height: 72px;
  margin: auto;
  color: #1a346e;
  font-weight: bold;
  font-size: 25px;
  background: linear-gradient(#fcf200 0%, #ffce00 100%);
  border-radius: 100px;
  transition: all 0.3s ease;
}
.btn-white {
  color: #000;
  background: #fff;
  border: 3px solid #000;
}
.btn-wrap .btn:not(:first-child) {
  margin-top: 20px;
}
.btn::before {
  position: absolute;
  bottom: 4px;
  z-index: -1;
  display: inline-block;
  width: 480px;
  height: 24px;
  background: rgba(3, 49, 154, 0.6);
  border-radius: 30em;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-filter: blur(20px) brightness(0.95);
  filter: blur(20px) brightness(0.95);
  transition: all 0.3s ease-out;
  content: '';
}
.cta-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: 0 40px;
}
.cta-btn-wrapper .btn {
  width: 480px;
  margin: 0;
}
.cta-btn-wrapper .btn:not(:first-child) {
  margin-top: 0px;
}
.ttl-sm {
  font-size: 24px;
}
.accordion-lists {
  display: flex;
  justify-content: space-between;
}
.accordion-lists ul {
  width: 49.6%;
}
.accordion-list {
  position: relative;
  background: linear-gradient(to right, #eaf7ff 0%, #ffffea 100%);
}
.accordion-list::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 88px;
  content: '';
}
.accordion-list:not(:last-of-type) {
  margin-bottom: 8px;
}
.accordion-lists h3 span {
  position: relative;
}
.accordion-lists h3 span a:hover {
  text-decoration: underline;
}
.accordion-lists h3 span::before {
  position: absolute;
  top: 50%;
  left: -48px;
  transform: translate(0, -50%);
  content: '';
}
.accordion-list-ttl {
  position: relative;
  z-index: 1;
  padding: 34px 55px 34px 140px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  cursor: url('../../assets/cursor/pointer-active.cur') 20 20, pointer;
}
.accordion-list-ttl > a:hover {
  text-decoration: underline;
}
.accordion-list-ttl::before,
.accordion-list-ttl::after {
  position: absolute;
  top: 50%;
  right: 40px;
  z-index: 0;
  width: 16px;
  height: 2px;
  background: #04b5c4;
  transform: translate(0, -50%);
  content: '';
}
.accordion-list-ttl::after {
  transform: translate(0, -50%) rotate(-90deg);
  transition: all 0.3s;
}
.accordion-list-ttl.active::after {
  transform: translate(0, -50%) rotate(0deg);
  transition: all 0.3s;
}
.accordion-list-content {
  height: 0;
  padding: 0 40px;
  font-size: 16px;
  line-height: 1.875;
  opacity: 0;
}
.accordion-list-content.active {
  height: auto;
  padding-bottom: 34px;
  opacity: 1;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .btn:hover {
    width: 530px;
    height: 75px;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .btn-txt {
    margin-bottom: 17px;
    font-size: 16px;
    line-height: 1.75;
  }
  .cta-btn-wrapper {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 20px;
  }
  .btn {
    width: 320px;
    height: 68px;
    font-size: 17px;
  }
  .btn::before {
    width: 240px;
    height: 14px;
  }
  .section-ttl h2 {
    font-size: 24px;
    line-height: 1.8;
  }
  .accordion-list {
    padding: 24px;
  }
  .accordion-list-ttl {
    padding: 0 28px 0 56px;
    font-size: 18px;
  }
  .accordion-list::before {
    height: 72px;
  }
  .accordion-list-content {
    font-size: 14px;
    line-height: 2;
  }
  .accordion-lists {
    flex-direction: column;
  }
  .accordion-lists ul {
    width: 100%;
  }
  .accordion-lists ul:first-of-type {
    margin-bottom: 8px;
  }
  .hs-ex {
    display: block;
    margin-left: 0;
  }
  .section-ttl {
    margin-bottom: 50px;
    font-size: 24px;
    line-height: 1.66;
  }
  .section-ttl::before {
    width: 158px;
    height: 115px;
    background: url(../img/ttl-bg-sp.svg) no-repeat;
  }
  .section-ttl span {
    margin-bottom: 4px;
    font-size: 18px;
  }
  .accordion-lists h3 span::before {
    left: -68px;
    transform: translate(0, -50%) scale(0.86);
  }
  .accordion-lists h3 span {
    line-height: 1.4;
  }
  .accordion-list-content {
    padding: 0;
  }
  .accordion-list-content.active {
    margin-top: 27px;
    padding-bottom: 0;
  }
  .accordion-list-ttl::before,
  .accordion-list-ttl::after {
    right: 0;
  }
}

/*********************************/
/* MV */
/*********************************/
.section-mv {
  position: relative;
  min-height: 838px;
}
.section-mv::before {
  position: absolute;
  top: 33.4px;
  left: 50%;
  z-index: -1;
  width: 1224.78px;
  height: 929.64px;
  padding-bottom: 145px;
  background: url(../img/mv-bg.svg) no-repeat;
  background-size: contain;
  transform: translate(-50%, 0);
  content: '';
}
.section-mv::after {
  position: absolute;
  top: -340px;
  left: 50%;
  z-index: -1;
  width: 2088px;
  height: 1266.04px;
  background: url(../img/mv-bg2@2x.jpg) no-repeat;
  background-size: contain;
  transform: translate(-50%, 0) translateX(110px);
  content: '';
}
.mv-content {
  padding-top: 227px;
  text-align: center;
}
.mv-title {
  position: relative;
  display: inline-block;
  margin-bottom: 70px;
  font-weight: 800;
  font-size: 84px;
  line-height: 1.35;
}
.mv-subtitle {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .mv-title {
    margin-bottom: 7px;
    font-size: 48px;
    line-height: 1.54;
  }
  .mv-title::before {
    top: -2px;
    right: -10px;
    width: 50.67px;
    height: 53.84px;
  }
  .mv-subtitle {
    margin-bottom: 8px;
    font-size: 17px;
  }
  .section-mv {
    min-height: auto;
    padding-bottom: 455px;
  }
  .section-mv::before {
    top: -105px;
    left: 50%;
    width: 746px;
    height: 890px;
    background-image: url(../img/mv-sp@2x.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateX(-50%) translateX(28px);
  }
  .section-mv::after {
    top: auto;
    bottom: 0;
    left: 50%;
    width: 558px;
    height: 373px;
    background: url(../img/mv-img-sp@2x.png) no-repeat;
    background-size: contain;
    transform: translateX(-50%);
  }
  .mv-content {
    padding-top: 193px;
  }
}

/*********************************/
/* WORRIES */
/*********************************/
.section-worries .section-ttl::before {
  left: 0;
}
.worries-innr {
  display: flex;
  justify-content: space-between;
}
.worries-l {
  max-width: 735px;
  padding-bottom: 133px;
}
.worries-l li {
  position: relative;
  display: inline-block;
  padding: 20px 32px 20px 52px;
  font-weight: 600;
  white-space: nowrap;
  background: #f7f9ff;
}
.worries-l li:not(:last-of-type) {
  margin-bottom: 8px;
}
.worries-l li::before {
  position: absolute;
  top: 50%;
  left: 24px;
  width: 16px;
  height: 16px;
  background: url(../img/worries-check.svg) no-repeat;
  background-size: contain;
  transform: translate(0, -50%);
  content: '';
}
.worries-l ul {
  position: relative;
}
.worries-l ul::before {
  position: absolute;
  bottom: -78px;
  left: 62px;
  content: url(../img/worries-arrow.svg);
}
.worries-r {
  padding-top: 36px;
}
.worries-r .section-ttl {
  position: relative;
  padding-top: 70px;
  font-size: 28px;
  line-height: 1.785;
}
.worries-r .section-ttl::before {
  top: 0;
  transform: none;
}
@media (max-width: 767px) {
  .worries-innr {
    flex-direction: column-reverse;
  }
  .worries-r {
    padding-top: 0;
  }
  .worries-r .section-ttl {
    padding-top: 0;
    font-size: 22px;
  }
  .worries-r .section-ttl::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .worries-l {
    padding-bottom: 88px;
  }
  .worries-l li {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 24px 24px 24px 56px;
    font-size: 16px;
    line-height: 1.875;
    white-space: initial;
  }
  .worries-l ul::before {
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    content: url(../img/worries-arrow-sp.svg);
  }
}

/*********************************/
/* SUCCESS */
/*********************************/
.success-innr {
  position: relative;
}
.success-innr::before {
  position: absolute;
  right: -470px;
  bottom: -22px;
  z-index: -1;
  width: 954px;
  height: 765.87px;
  background: url(../img/worries-bg@2x.jpg) no-repeat;
  background-size: contain;
  content: '';
}
.success-lead {
  display: block;
  margin-bottom: 22px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.9;
}
.section-success h2 {
  margin-bottom: 30px;
  font-size: 26px;
  line-height: 1.9;
  text-align: left;
}
.section-success p {
  font-weight: 600;
  font-size: 16px;
}
.section-success p a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .success-lead {
    margin-bottom: 16px;
    font-size: 16px;
    text-align: center;
  }
  .section-success h2 {
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
  }
  .section-success p {
    font-size: 14px;
    line-height: 1.85;
  }
  .success-innr {
    padding-bottom: 352px;
  }
  .success-innr::before {
    right: auto;
    bottom: 0;
    left: 50%;
    width: 695px;
    height: 352px;
    background: url(../img/worries-bg-sp@2x.png);
    background-size: contain;
    transform: translateX(-50%) translateX(58px);
  }
}

/*********************************/
/* CONTACT */
/*********************************/
.section-contact {
  margin: 32px auto 40px;
  background: url(../img/contact-bg@2x.jpg) no-repeat;
  background-position: center;
  background-size: 1156.86px 566.9px;
}
.contact-innr {
  width: calc(100% - 32px);
  height: 566.9px;
  margin: auto;
  color: #fff;
  text-align: center;
}
.section-contact h2 {
  padding-top: 157px;
  font-size: 36px;
}
.contact-txt {
  margin: 32px auto;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.86;
}
@media (max-width: 767px) {
  .section-contact {
    margin: 16px auto 40px;
    background: url(../img/contact-bg-sp@2x.png) no-repeat;
    background-size: 100% 470px;
  }
  .contact-innr {
    height: 470px;
  }
  .section-contact h2 {
    padding-top: 80px;
    font-size: 24px;
    line-height: 1.66;
  }
  .contact-txt {
    display: inline-block;
    margin: 22px auto 16px;
    font-size: 16px;
    letter-spacing: 0.05rem;
    text-align: left;
  }
}

/*********************************/
/* BENEFIT */
/*********************************/
.section-benefit {
  margin-top: 80px;
}
.section-benefit ul {
  max-width: 820px;
  margin: auto;
}
.section-benefit ul li {
  position: relative;
  padding: 27px 0 27px 76px;
  font-weight: 600;
  background: linear-gradient(to right, #eaf7ff 0%, #ffffea 100%);
}
.section-benefit ul li:not(:last-of-type) {
  margin-bottom: 8px;
}
.section-benefit ul li::before {
  position: absolute;
  top: 50%;
  left: 48px;
  width: 16px;
  height: 16px;
  background: url(../img/worries-check.svg) no-repeat;
  background-size: contain;
  transform: translate(0, -50%);
  content: '';
}
.accordion-list-01:before {
  background: url(../img/icn-number1.svg) no-repeat;
  background-size: contain;
}
.section-detail {
  margin-top: 80px;
}
.section-detail .section-ttl {
  margin-bottom: 88px;
}
.section-detail .section-subttl + p {
  margin-top: 45px;
}
.section-detail
  .accordion-lists-first
  .accordion-list:nth-child(1)
  h3
  span:before {
  width: 22px;
  height: 24.51px;
  background: url(../img/icn-web1.svg) no-repeat;
  background-size: contain;
}
.accordion-list-02:before {
  background: url(../img/icn-number2.svg) no-repeat;
  background-size: contain;
}
.section-detail
  .accordion-lists-first
  .accordion-list:nth-child(2)
  h3
  span:before {
  width: 20px;
  height: 20px;
  background: url(../img/icn-web2.svg) no-repeat;
  background-size: contain;
}
.accordion-list-03:before {
  background: url(../img/icn-number3.svg) no-repeat;
  background-size: contain;
}
.section-detail
  .accordion-lists-first
  .accordion-list:nth-child(3)
  h3
  span:before {
  width: 24px;
  height: 22.03px;
  background: url(../img/icn-web3.svg) no-repeat;
  background-size: contain;
}
.accordion-list-04:before {
  background: url(../img/icn-number4.svg) no-repeat;
  background-size: contain;
}
.section-detail
  .accordion-lists-first
  .accordion-list:nth-child(4)
  h3
  span:before {
  width: 20px;
  height: 20px;
  background: url(../img/icn-web4.svg) no-repeat;
  background-size: contain;
}
.accordion-list-05:before {
  background: url(../img/icn-number5.svg) no-repeat;
  background-size: contain;
}
.section-detail
  .accordion-lists-first
  .accordion-list:nth-child(5)
  h3
  span:before {
  width: 23px;
  height: 19px;
  background: url(../img/icn-web5.svg) no-repeat;
  background-size: contain;
}
.accordion-list-06:before {
  background: url(../img/icn-number6.svg) no-repeat;
  background-size: contain;
}
.section-detail
  .accordion-lists-second
  .accordion-list:nth-child(1)
  h3
  span:before {
  width: 24px;
  height: 24px;
  background: url(../img/icn-web6.svg) no-repeat;
  background-size: contain;
}
.accordion-list-07:before {
  background: url(../img/icn-number7.svg) no-repeat;
  background-size: contain;
}
.section-detail
  .accordion-lists-second
  .accordion-list:nth-child(2)
  h3
  span:before {
  width: 20.25px;
  height: 24px;
  background: url(../img/icn-web7.svg) no-repeat;
  background-size: contain;
}
.accordion-list-08:before {
  background: url(../img/icn-number8.svg) no-repeat;
  background-size: contain;
}
.section-detail
  .accordion-lists-second
  .accordion-list:nth-child(3)
  h3
  span:before {
  width: 22.16px;
  height: 20px;
  background: url(../img/icn-web8.svg) no-repeat;
  background-size: contain;
}
.accordion-list-09:before {
  background: url(../img/icn-number9.svg) no-repeat;
  background-size: contain;
}
.section-detail
  .accordion-lists-second
  .accordion-list:nth-child(4)
  h3
  span:before {
  width: 22px;
  height: 20.69px;
  background: url(../img/icn-web9.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .section-benefit {
    margin-top: 60px;
  }
  .section-benefit .section-ttl {
    margin-bottom: 20px;
  }
  .section-benefit .section-ttl::before {
    transform: translate(-50%, -50%) translateY(-40px);
  }
  .section-benefit ul li {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 24px 24px 24px 56px;
    font-size: 16px;
    line-height: 1.875;
    white-space: initial;
  }
  .section-benefit ul li::before {
    left: 24px;
  }
}

/*********************************/
/* DETAIL */
/*********************************/
.section-subttl-web {
  background: url(../img/subttl-web.svg) no-repeat;
  background-position: center;
  background-size: 386.67px 62.31px;
}
.section-subttl-support {
  margin-top: 100px;
  background: url(../img/subttl-support.svg) no-repeat;
  background-position: center;
  background-size: 381.88px 62.36px;
}
.section-detail
  .accordion-lists-support
  .accordion-lists-first
  .accordion-list:nth-child(1)
  h3
  span:before {
  width: 22px;
  height: 22px;
  background: url(../img/icn-support1.svg) no-repeat;
  background-size: contain;
}
.section-detail
  .accordion-lists-support
  .accordion-lists-first
  .accordion-list:nth-child(2)
  h3
  span:before {
  width: 26px;
  height: 22px;
  background: url(../img/icn-support2.svg) no-repeat;
  background-size: contain;
}
.section-detail
  .accordion-lists-support
  .accordion-lists-first
  .accordion-list:nth-child(3)
  h3
  span:before {
  width: 22px;
  height: 22px;
  background: url(../img/icn-support3.svg) no-repeat;
  background-size: contain;
}
.section-detail
  .accordion-lists-support
  .accordion-lists-second
  .accordion-list:nth-child(1)
  h3
  span:before {
  width: 16.9px;
  height: 24px;
  background: url(../img/icn-support4.svg) no-repeat;
  background-size: contain;
}
.section-detail
  .accordion-lists-support
  .accordion-lists-second
  .accordion-list:nth-child(2)
  h3
  span:before {
  width: 18px;
  height: 20.77px;
  background: url(../img/icn-support5.svg) no-repeat;
  background-size: contain;
}
.section-detail
  .accordion-lists-support
  .accordion-lists-second
  .accordion-list:nth-child(3)
  h3
  span:before {
  width: 18px;
  height: 20px;
  background: url(../img/icn-support6.svg) no-repeat;
  background-size: contain;
}
@media (min-width: 1000px) {
  .section-subttl-support + p {
    white-space: pre;
  }
}
@media (max-width: 767px) {
  .section-detail {
    margin-top: 67px;
  }
  .section-detail .section-ttl {
    margin-bottom: 60px;
  }
  .section-detail .section-subttl + p {
    margin-top: 0;
  }
  .section-subttl {
    font-size: 22px;
  }
  .section-subttl-web {
    background-size: 260px 66px;
  }
  .section-subttl + p {
    margin-top: 0;
    margin-bottom: 32px;
    line-height: 2;
    text-align: left;
  }
  .section-subttl-support {
    margin-top: 40px;
    background-size: 299px 78px;
  }
}

/*********************************/
/* COMPARE */
/*********************************/
.section-compare .innr-1000 {
  position: relative;
}
.section-compare .section-ttl {
  position: absolute;
  top: 78px;
  left: 16px;
}
.section-compare img {
  width: 106%;
  max-width: 1060px;
}
@media (max-width: 767px) {
  .section-compare {
    margin-top: 80px;
  }
  .section-compare .section-ttl {
    position: relative;
    top: 0;
    left: auto;
  }
  .section-compare img {
    width: 476px;
  }
  .section-compare figure {
    width: calc(100% + 32px);
    margin-top: 78px;
    margin-left: -16px;
    overflow-x: auto;
  }
}

/*********************************/
/* CATEGORY */
/*********************************/
.section-category {
  margin-top: 70px;
}
.section-category .innr-1000 {
  display: flex;
  justify-content: space-between;
}
.section-category .accordion-lists {
  width: 60%;
}
.section-category .accordion-lists ul {
  width: 100%;
}
.section-category .category-txt {
  width: 30.6%;
}
.section-category .section-ttl {
  line-height: 1.76;
}
.section-category .section-ttl + p {
  font-size: 16px;
  line-height: 2.125;
  text-align: center;
}
.section-category .accordion-list:nth-child(1) h3 span:before {
  width: 14px;
  height: 24px;
  background: url(../img/icn-category1.svg) no-repeat;
  background-size: contain;
}
.section-category .accordion-list:nth-child(2) h3 span:before {
  width: 18px;
  height: 20px;
  background: url(../img/icn-category2.svg) no-repeat;
  background-size: contain;
}
.section-category .accordion-list:nth-child(3) h3 span:before {
  width: 24px;
  height: 16px;
  background: url(../img/icn-category3.svg) no-repeat;
  background-size: contain;
}
.section-category .accordion-list:nth-child(4) h3 span:before {
  width: 18px;
  height: 18px;
  background: url(../img/icn-category4.svg) no-repeat;
  background-size: contain;
}
.section-category .accordion-list:nth-child(5) h3 span:before {
  width: 18px;
  height: 16.36px;
  background: url(../img/icn-category5.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .section-category {
    margin-top: 82px;
  }
  .section-category .innr-1000 {
    flex-direction: column-reverse;
  }
  .section-category .category-txt {
    width: 100%;
  }
  .section-category .accordion-lists {
    width: 100%;
  }
  .section-category .section-ttl + p {
    margin-bottom: 28px;
    text-align: left;
  }
}

/*********************************/
/* REASON */
/*********************************/
.section-reason {
  margin-top: 80px;
}
.section-reason .section-ttl {
  margin-bottom: 90px;
}
.section-reason .reason-column {
  display: flex;
  justify-content: space-between;
}
.section-reason .reason-column:nth-of-type(even) {
  flex-direction: row-reverse;
}
.section-reason .reason-column:nth-of-type(1) .reason-column-img {
  margin-top: 15px;
}
.section-reason .reason-column:nth-of-type(2) {
  margin-top: 26px;
}
.section-reason .reason-column:nth-of-type(2) .reason-column-img,
.section-reason .reason-column:nth-of-type(3) .reason-column-img {
  margin-top: -76px;
}
.section-reason .reason-column:nth-of-type(3) {
  margin-top: 100px;
}
.section-reason .reason-column:nth-of-type(4) {
  margin-top: 53px;
}
.section-reason .reason-column:nth-of-type(4) .reason-column-img {
  margin-top: -95px;
}
.section-reason .reason-column:nth-of-type(5) {
  margin-top: 93px;
}
.section-reason .reason-column:nth-of-type(5) .reason-column-img {
  margin-top: -160px;
}
.section-reason .reason-column-txt {
  width: 56%;
  font-size: 16px;
  line-height: 2;
}
.section-reason .reason-column-txt h3 {
  position: relative;
  margin-bottom: 26px;
  color: #04b5c4;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.6;
}
.section-reason .reason-column-txt h3::before {
  position: absolute;
  top: -67px;
  left: -70px;
  z-index: -1;
  width: 154.98px;
  height: 154.98px;
  background: url(../img/reason-ttl-bg.svg) no-repeat;
  background-size: contain;
  content: '';
}
.section-reason .reason-column-img {
  width: 36%;
}
.section-reason .reason-column-img img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .section-reason .reason-column {
    flex-direction: column-reverse;
  }
  .section-reason .reason-column:not(:first-of-type) {
    margin-top: 45px !important;
  }
  .section-reason .reason-column-txt {
    width: 100%;
  }
  .section-reason .reason-column-img {
    width: 100%;
    max-width: 280px;
    margin: auto;
  }
  .section-reason .section-ttl::before {
    transform: translate(-50%, -50%) translateY(-40px);
  }
  .section-reason .section-ttl {
    margin-bottom: 36px;
  }
  .section-reason .reason-column-txt h3 {
    margin: 24px 0 20px;
    font-size: 24px;
    text-align: center;
  }
  .section-reason .reason-column-txt h3::before {
    top: -50px;
    left: -5px;
    width: 101px;
    height: 101px;
  }
  .section-reason .reason-column:nth-of-type(even) {
    flex-direction: column-reverse;
  }
  .section-reason .reason-column:nth-of-type(2) .reason-column-img,
  .section-reason .reason-column:nth-of-type(3) .reason-column-img,
  .section-reason .reason-column:nth-of-type(4) .reason-column-img,
  .section-reason .reason-column:nth-of-type(5),
  .section-reason .reason-column:nth-of-type(5) .reason-column-img {
    margin-top: 0;
  }
}

/*********************************/
/* CASE */
/*********************************/
.section-case {
  margin-top: 80px;
}
.case-slide {
  position: relative;
}
.case-img {
  position: relative;
  cursor: url('../../assets/cursor/pointer-active.cur') 20 20, pointer;
}
.case-img img {
  width: 100%;
  height: auto;
}
.case-img::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45.11px;
  height: 31.59px;
  background: url('../img/cases-play-btn.svg') center center / cover no-repeat;
  transform: translate(-50%, -50%);
  content: '';
}
.case-content {
  padding: 50px 40px 40px;
  background-color: #f7f9ff;
}
.case-name {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}
.case-name span {
  font-size: 20px;
  line-height: 1.6;
}
.case-txt {
  font-weight: 300;
  font-size: 14px;
  line-height: 2;
}

.case-arrow {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
}
.case-arrow-l {
  left: -40px;
  border-top: 2px solid #102e80;
  border-left: 2px solid #102e80;
  transform: translateY(-50%) rotate(-45deg);
}
.case-arrow-r {
  right: -40px;
  border-top: 2px solid #102e80;
  border-right: 2px solid #102e80;
  transform: translateY(-50%) rotate(45deg);
}
.client-ttl {
  margin: 96px auto 38px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.client-logo:nth-child(1) {
  transition-delay: 0s !important;
}
.client-logo:nth-child(2) {
  transition-delay: 0.2s !important;
}
.client-logo:nth-child(3) {
  transition-delay: 0.4s !important;
}
.client-logo:nth-child(4) {
  transition-delay: 0.6s !important;
}
.client-logo:nth-child(5) {
  transition-delay: 0.8s !important;
}
.client-logo:nth-child(6) {
  transition-delay: 1s !important;
}
.client-logo:nth-child(7) {
  transition-delay: 1.2s !important;
}
.client-logo:nth-child(8) {
  transition-delay: 1.4s !important;
}
.client-logo:nth-child(9) {
  transition-delay: 1.6s !important;
}
.client-logo:nth-child(10) {
  transition-delay: 1.8s !important;
}
.client-logo:nth-child(11) {
  transition-delay: 2s !important;
}
.client-logo:nth-child(12) {
  transition-delay: 2.2s !important;
}
.client-logo:nth-child(13) {
  transition-delay: 2.4s !important;
}
.client-logo:nth-child(14) {
  transition-delay: 2.6s !important;
}
.client-logo:nth-child(15) {
  transition-delay: 2.8s !important;
}
.client-logo:nth-child(16) {
  transition-delay: 3s !important;
}
.client-logo:nth-child(17) {
  transition-delay: 3.2s !important;
}
.client-logo:nth-child(18) {
  transition-delay: 3.4s !important;
}
.works .works-content {
  display: flex;
  justify-content: space-between;
}
.works .works-item {
  width: 48%;
}
.works .works-item img {
  max-width: 100%;
}
.works .works-img {
  position: relative;
  width: calc(100% - 30px);
  margin-bottom: 64px;
  border-radius: 6px;
}
.works .works-img::before {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #f4f7fd;
  border-radius: 6px;
  content: '';
}
.works .works-ttl {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 15px;
}
.works .works-txt {
  font-size: 14px;
  line-height: 1.85;
}
@media (min-width: 768px) {
  .glide__slides {
    justify-content: space-between;
  }
  .glide__slide {
    width: 32%;
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .section-case {
    margin-top: 58px;
  }
  .client-ttl {
    margin: 46px auto 34px;
  }
  .client-logos {
    gap: 20px 10px;
  }
  .client-logos img {
    height: auto;
  }
  .logo-jal {
    width: 70.11px;
  }
  .logo-alpen {
    width: 92.92px;
  }
  .logo-zoff {
    width: 41.54px;
  }
  .logo-belmare {
    width: 26.88px;
  }
  .logo-cyberagent {
    width: 107.22px;
  }
  .logo-panasonic {
    width: 74.94px;
  }
  .logo-pasona {
    width: 95.37px;
  }
  .logo-newbalance {
    width: 48.12px;
  }
  .logo-timberland {
    width: 76.6px;
  }
  .logo-persol {
    width: 23.44px;
  }
  .logo-mandom {
    width: 35.06px;
  }
  .logo-gdo {
    width: 45.83px;
  }
  .logo-gree {
    width: 53.94px;
  }
  .logo-forval {
    width: 61.69px;
  }
  .logo-hanacupid {
    width: 55.52px;
  }
  .logo-minatoku {
    width: 24.81px;
  }
  .logo-whill {
    width: 38.54px;
  }
  .logo-nextengine {
    width: 34.7px;
  }
  .case-content {
    padding: 30px 16px 24px;
  }
  .works .works-content {
    flex-direction: column;
  }
  .works .works-item {
    width: 100%;
  }
  .works .works-item:not(:first-of-type) {
    margin-top: 32px;
  }
}

/*********************************/
/* FLOW */
/*********************************/
.section-flow {
  margin-top: 110px;
}
.section-flow .section-ttl {
  margin-bottom: 92px;
}
.flow-content {
  padding-bottom: 50px;
  overflow: hidden;
}
.flow-lists {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.flow-lists::after {
  position: absolute;
  top: 101px;
  left: 50%;
  z-index: -2;
  width: 1px;
  height: 950px;
  background-color: #ebebeb;
  content: '';
}

.flow-list {
  position: relative;
  width: calc(50% - 80px);
  padding: 44px 44px 40px;
  background-color: #f4f7fd;
}
.flow-list:nth-child(odd) {
  float: left;
}
.flow-list:nth-child(even) {
  float: right;
  margin-left: 160px;
}
.flow-list:nth-child(2) {
  margin-top: 50px;
}
.flow-list:nth-child(n + 3) {
  margin-top: 16px;
}
.flow-list:last-child {
  margin-top: 49px;
}
.flow-list::before {
  position: absolute;
  width: 94px;
  height: 64px;
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}
.flow-list:nth-child(1)::before {
  top: 93px;
  right: -112px;
  background-image: url('../img/flow-mail.svg');
}
.flow-list:nth-child(2)::before {
  top: 143px;
  left: -112px;
  background-image: url('../img/flow-hearing.svg');
}
.flow-list:nth-child(3)::before {
  top: 50px;
  right: -112px;
  background-image: url('../img/flow-proposal.svg');
}
.flow-list:nth-child(4)::before {
  top: 100px;
  left: -112px;
  background-image: url('../img/flow-contract.svg');
}
.flow-list:nth-child(5)::before {
  top: 37px;
  right: -112px;
  background-image: url('../img/flow-sitemap.svg');
}
.flow-list:nth-child(6)::before {
  top: 87px;
  left: -112px;
  background-image: url('../img/flow-dev.svg');
}
.flow-list:nth-child(7)::before {
  top: 20px;
  right: -112px;
  background-image: url('../img/flow-confirm.svg');
}
.flow-list:nth-child(8)::before {
  top: 68px;
  left: -112px;
  background-image: url('../img/flow-comp.svg');
}
.flow-list:nth-child(8)::after {
  position: absolute;
  top: 75px;
  left: -80px;
  z-index: -1;
  width: 1px;
  height: 100%;
  background-color: #ffffff;
  content: '';
}
.flow-list-bottom {
  width: 100%;
}

.flow-lead {
  display: flex;
  align-items: baseline;
}
.flow-lead span {
  color: #7ca2ea;
  font-weight: 600;
}
.flow-lead img {
  margin-right: 0;
  margin-left: 0;
}

.flow-lead-title {
  margin-top: -5px;
  margin-left: 5px;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.667;
}

.flow-txt {
  margin-top: 6px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.07em;
}
.flow-txt a {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .section-flow {
    margin-top: 50px;
  }
  .section-flow .section-ttl {
    margin-bottom: 48px;
  }
  .flow-content {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding-bottom: 80px;
  }
  .flow-lists::after {
    display: none;
  }
  .flow-list {
    width: 100%;
    padding: 26px 24px 18px;
  }
  .flow-list:nth-child(odd) {
    float: none;
  }
  .flow-list:nth-child(even) {
    float: none;
    margin-left: 0;
  }
  .flow-list:nth-child(2) {
    margin-top: 14px;
  }
  .flow-list:nth-child(n + 3) {
    margin-top: 14px;
  }
  .flow-list::before {
    display: none;
  }

  .flow-list:nth-child(8)::after {
    display: none;
  }

  .flow-lead {
    margin-bottom: 7px;
  }

  .flow-lead-title {
    margin-top: 0;
    margin-left: 10px;
    font-size: 15px;
  }
}

/*********************************/
/* FEE */
/*********************************/
.section-fee {
  margin-top: 140px;
}
.section-fee .section-ttl {
  margin-bottom: 103px;
}
.tab-switch .tab-inner li:not(.current) {
  display: none;
}
.section-fee .tab-btn {
  display: flex;
  gap: 5px;
  justify-content: space-between;
}
.section-fee .tab-btn li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 20px / 5));
  padding: 20px 10px;
  color: #fff;
  font-weight: 700;
  background: #1a346e;
  cursor: url('../../assets/cursor/pointer-active.cur') 20 20, pointer;
  transition: 0.2s;
}
.section-fee .tab-btn li.current {
  color: #1a346e;
  background: #f4f7fd;
}
.section-fee .tab-inner {
  padding: 40px 40px 40px 56px;
  background: #f4f7fd;
}
.section-fee .tab-inner-item {
  display: flex;
  justify-content: space-between;
}
.section-fee .tab-inner-item .tab-inner-left {
  width: 62.8%;
}
.section-fee .tab-inner-item .tab-inner-left h3 {
  margin-top: 16px;
  font-weight: 800;
  font-size: 22px;
}
.section-fee .tab-inner-item .tab-inner-left h3 a:hover {
  text-decoration: underline;
}
.section-fee .tab-inner-item .tab-inner-left .tab-inner-ttl {
  position: relative;
}
.section-fee .tab-inner-item .tab-inner-left .tab-inner-ttl::before {
  position: absolute;
  top: 0;
  left: -56px;
  width: 3px;
  height: 100%;
  background: #04b5c4;
  content: '';
}
.section-fee .tab-inner-item .tab-inner-left dl {
  display: flex;
  margin: 24px 0;
  background: #fff;
  border: 3px solid #dae5f5;
}
.section-fee .tab-inner-item .tab-inner-left dd {
  padding: 12px 16px;
  color: #04b5c4;
  font-weight: 700;
  border-right: 3px solid #dae5f5;
  border-left: 3px solid #dae5f5;
}
.section-fee .tab-inner-item .tab-inner-left dd:last-of-type {
  border-right: none;
}
.section-fee .tab-inner-item .tab-inner-left dl dt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 16px;
  background: #f4f7fd;
}
.section-fee .tab-inner-item .tab-inner-left p {
  font-size: 16px;
  line-height: 2;
}
.section-fee .tab-inner-item .tab-inner-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30.9%;
  font-size: 14px;
}
.section-fee .tab-inner-item .tab-inner-right dl {
  display: flex;
  align-items: center;
  height: 100%;
  background: #f4f7fd;
}
.section-fee .tab-inner-item .tab-inner-right dl:nth-of-type(odd) {
  background: #ecf1fc;
}
.section-fee .tab-inner-item .tab-inner-right dl:nth-of-type(even) {
  background: #fff;
}
.section-fee .tab-inner-item .tab-inner-right dt {
  display: flex;
  align-items: center;
  width: 51.42%;
  height: 100%;
  padding: 0 14px;
  font-weight: 400;
  border-right: 2px solid #f4f7fd;
}
.section-fee .tab-inner-item .tab-inner-right dd {
  display: flex;
  padding: 0 14px;
}
.section-fee .tab-inner-item .tab-inner-right dd span {
  display: inline-block;
  margin-left: 10px;
  padding-left: 1em;
  font-size: 10px;
  line-height: 1.4;
  text-indent: -1em;
}
@media (max-width: 767px) {
  .section-fee {
    margin-top: 0;
  }
  .section-fee .section-ttl {
    margin-bottom: 50px;
  }
  .tab-switch {
    width: calc(100% + 32px);
    margin-left: -16px;
  }
  .section-fee .tab-btn {
    gap: 2px;
    overflow-x: auto;
  }
  .section-fee .tab-btn li {
    width: auto;
    padding: 22px 18px;
    font-size: 14px;
    white-space: nowrap;
  }
  .section-fee .tab-inner {
    padding: 40px 20px 24px;
  }
  .section-fee .tab-inner-item {
    flex-direction: column;
  }
  .section-fee .tab-inner-item .tab-inner-left {
    width: 100%;
  }
  .section-fee .tab-inner-item .tab-inner-right {
    width: 100%;
  }
  .section-fee .tab-inner-item .tab-inner-left h3 {
    margin-top: 0;
    font-size: 18px;
    text-align: center;
  }
  .section-fee .tab-inner-item .tab-inner-left dl {
    flex-wrap: wrap;
  }
  .section-fee .tab-inner-item .tab-inner-left dl dt {
    justify-content: flex-start;
    width: 96px;
    font-size: 14px;
  }
  .section-fee .tab-inner-item .tab-inner-left dl dt:first-of-type,
  .section-fee .tab-inner-item .tab-inner-left dl dd:first-of-type {
    border-bottom: 3px solid #dae5f5;
  }
  .section-fee .tab-inner-item .tab-inner-left dd {
    width: calc(100% - 96px);
    font-size: 16px;
    border-right: none;
  }
  .section-fee .tab-inner-item .tab-inner-left p {
    margin-bottom: 24px;
  }
  .section-fee .tab-inner-item .tab-inner-right dt,
  .section-fee .tab-inner-item .tab-inner-right dd {
    padding: 14px;
  }
}

/*********************************/
/* AREA */
/*********************************/
.section-area .innr-1000 {
  display: flex;
  justify-content: space-between;
  margin-top: 140px;
}
.section-area .area-block h3 {
  position: relative;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 24px;
}
.section-area .online-area {
  margin-bottom: 72px;
}
.section-area .online-area h3::before {
  margin-right: 10px;
  content: url(../img/icn-area1.svg);
}
.section-area .face-area h3::before {
  margin-right: 10px;
  content: url(../img/icn-area2.svg);
}
.section-area .face-area span {
  display: inline-block;
  margin-bottom: 10px;
  color: #04b5c4;
  font-weight: 600;
}
.section-area .face-area span:nth-of-type(2) {
  margin-top: 20px;
}
.section-area .face-area p {
  font-size: 14px;
  line-height: 2;
}
.section-area .area-innr-left {
  width: 42.7%;
}
.section-area .area-innr-right {
  width: 50%;
  padding-top: 20px;
}
.section-area .section-ttl {
  display: inline-block;
  margin-bottom: 90px;
  line-height: 1.76;
}
.section-area .section-ttl::before {
  left: 15px;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .section-area .innr-1000 {
    flex-direction: column;
    margin-top: 80px;
  }
  .section-area .area-innr-left,
  .section-area .area-innr-right {
    width: 100%;
  }
  .section-area .section-ttl {
    display: block;
    margin-bottom: 36px;
  }
  .section-area .section-ttl::before {
    left: auto;
  }
  .section-area .area-block h3 {
    display: flex;
    margin-bottom: 18px;
    font-size: 18px;
  }
  .section-area .area-block h3 + p {
    font-size: 16px;
    line-height: 2;
  }
  .section-area .online-area {
    margin-bottom: 35px;
  }
  .section-area .map img {
    width: 100%;
    max-width: 310px;
    margin-top: 30px;
  }
}

/*********************************/
/* QA */
/*********************************/
.section-qa {
  margin-top: 96px;
  margin-bottom: 172px;
}
.section-qa .section-ttl {
  margin-bottom: 102px;
}
.qa-list {
  margin-bottom: 8px;
}
.section-qa .accordion-list-ttl {
  padding-left: 0;
}
.section-qa .accordion-list-ttl::before,
.section-qa .accordion-list-ttl::after {
  right: 32px;
}
.qa-title {
  display: flex;
  align-items: center;
  width: 100%;
  height: 72px;
  padding: 0;
  font-size: 16px;
  background-color: #f7f9ff;
}
.qa-title-txt {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 80px;
  font-weight: 600;
}
.qa-title-txt::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 120px;
  height: 72px;
  background: url(../img/qa-q.svg) no-repeat;
  background-size: contain;
  content: '';
}
.qa-txt {
  display: flex;
  align-items: flex-start;
  padding-right: 5px;
  padding-left: 40px;
  font-weight: 300;
}
.qa-txt.active {
  margin-top: 32px;
  padding-bottom: 20px;
}
.qa-txt-a {
  margin-top: 8px;
  margin-right: 14px;
}
.qa-txt-letter {
  width: 91.8%;
  line-height: 2;
}

@media (max-width: 767px) {
  .section-qa .innr-1000 {
    max-width: 100%;
  }
  .qa-title {
    align-items: flex-start;
    padding: 17px 45px 17px 40px;
  }
  .section-qa .accordion-list-ttl::before,
  .section-qa .accordion-list-ttl::after {
    right: 16px;
  }
  .qa-txt {
    padding: 0 30px 0 21px;
    font-size: 16px;
  }
  .qa-txt.active {
    margin-top: 0;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .qa-txt-a {
    width: 18px;
    margin: 5px 15px 0 0;
  }
  .section-qa .section-ttl {
    margin-bottom: 50px;
  }
  .qa-title-txt::before {
    top: -17px;
    left: -40px;
  }
  .qa-title-txt {
    padding-left: 50px;
    line-height: 1.875;
  }
  .section-qa {
    margin-top: 60px;
    margin-bottom: 67px;
  }
}

.consultant_section {
  max-width: 1160px;
  width: 100%;
  padding: 0 20px;
  margin: 50px auto 80px;
}
