/*********************************/
/* COMMON */
/*********************************/
main.meo {
  color: #343546;
  font-weight: 400;
  font-size: 18px;
  font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'メイリオ', Meiryo,
    'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
img {
  max-width: 100%;
}
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: #fc6c41;
}
.accent-purple {
  color: #5a5ae6;
}
.emphasis {
  -webkit-text-emphasis: filled;
  text-emphasis: filled;
}
.section-ttl {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  font-weight: 800;
  font-size: 34px;
}
.section-ttl span {
  display: block;
  margin-bottom: 26px;
  font-size: 24px;
}
.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;
}
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 64px;
  margin: auto;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  background: linear-gradient(#74c900 0%, #62aa00 100%);
  border-radius: 100px;
  transition: all 0.3s ease;
}
.btn::before {
  position: absolute;
  bottom: -4px;
  z-index: -1;
  display: inline-block;
  width: 360px;
  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: '';
}
.btn:hover {
  width: 410px;
  letter-spacing: 0.05em;
}
.btn-white {
  color: #000;
  background: #fff;
  border: 3px solid #000;
}
.btn-wrap .btn:not(:first-child) {
  margin-top: 30px;
}
.cta-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.cta-btn-wrapper .btn {
  width: 350px;
}
.cta-btn-wrapper .btn:hover {
  width: 380px;
  /* transform: scale(1.1); */
}
.cta-btn-wrapper .btn:not(:first-child) {
  margin-top: 0;
}
.ttl-sm {
  font-size: 24px;
}
.accordion-lists {
  display: flex;
  justify-content: space-between;
}
.accordion-lists ul {
  width: 48%;
}
.accordion-list {
  position: relative;
  max-width: 480px;
  height: 96px;
  padding: 0 32px;
  background: linear-gradient(to right, #ffffff 0%, #f4f4f4 100%);
}
.accordion-list.active {
  height: auto;
}
.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::before {
  position: absolute;
  top: 50%;
  left: -48px;
  transform: translate(0, -50%);
  content: '';
}
.accordion-list-ttl {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 96px;
  padding-left: 68px;
  color: #fc6c41;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
}
.accordion-list-ttl::before,
.accordion-list-ttl::after {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 0;
  width: 16px;
  height: 2px;
  background: #fc6c41;
  transform: translate(0, -50%);
  content: '';
}
.accordion-list-ttl::after {
  transform: translate(0, -50%) rotate(-90deg);
  transition: all 0.3s;
}
.accordion-list.active .accordion-list-ttl::after {
  transform: translate(0, -50%) rotate(0deg);
  transition: all 0.3s;
}
.accordion-list-content {
  height: 0;
  font-size: 16px;
  line-height: 1.875;
  opacity: 0;
}
.accordion-list.active .accordion-list-content {
  height: auto;
  opacity: 1;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .btn-txt {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.75;
  }
  .cta-btn-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
  .btn {
    width: 327px;
    height: 56px;
    font-size: 18px;
  }
  .btn:hover {
    width: 327px;
  }
  .btn::before {
    width: 240px;
    height: 14px;
  }
  .section-ttl {
    font-size: 24px;
    line-height: 1.8;
  }
  .accordion-list {
    max-width: 100%;
    height: 80px;
  }
  .accordion-list-ttl {
    height: 80px;
    padding: 0 0 0 62px;
  }
  .accordion-list-content {
    font-size: 14px;
    line-height: 2;
  }
  .accordion-lists ul:first-of-type {
    margin-bottom: 8px;
  }
  .hs-ex {
    display: block;
    margin-left: 0;
  }
  .section-ttl span {
    margin-bottom: 0;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .btn {
    width: 300px;
  }
}

/*********************************/
/* MV */
/*********************************/
.section-mv {
  position: relative;
  padding-bottom: 240px;
}
.section-mv::before {
  position: absolute;
  top: -379px;
  left: 50%;
  z-index: -1;
  width: 2137.53px;
  height: 1251.08px;
  padding-bottom: 145px;
  background: url(../img/mv-bg@2x.jpg) no-repeat;
  background-size: contain;
  transform: translate(-50%, 0) translateX(-120px);
  content: '';
}
.mv-content {
  position: relative;
  max-width: 570px;
  margin: auto;
  padding-top: 127px;
  text-align: center;
}
.mv-title {
  position: relative;
  display: inline-block;
  margin-bottom: 110px;
  font-weight: 800;
  font-size: 84px;
  line-height: 1.35;
}
.mv-subtitle {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.7;
}
.mv-fukidashi {
  position: absolute;
  left: -190px;
  width: 202.94px;
}
.mav-googlemap {
  width: 124px;
  margin: 0 auto 32px;
}
@media (min-height: 800px) and (min-width: 768px) {
  .mv-title {
    margin-bottom: 110px;
  }
}
@media (max-width: 767px) {
  .section-mv {
    padding-bottom: 0;
  }
  .mv-title {
    margin: 32px 0 17px;
    font-size: 46px;
    line-height: 1.3;
    text-align: center;
  }
  .mv-title::before {
    top: -2px;
    right: -10px;
    width: 50.67px;
    height: 53.84px;
  }
  .section-mv::before {
    top: -52px;
    width: 1129.62px;
    height: 778.25px;
    background-image: url(../img/mv-sp@2x.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: translate(-50%, 0) translateX(85px);
  }
  .mv-content {
    padding-top: 160px;
  }
  .mv-fukidashi {
    top: 28px;
    left: 14px;
    width: 178.59px;
  }
  .mv-img-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    justify-content: center;
    margin-right: 75px;
  }
  .mav-googlemap {
    width: 67px;
    margin: 0;
  }
  .mv-subtitle {
    margin-left: 16px;
    font-size: 16px;
    text-align: left;
  }
}

/*********************************/
/* WORRIES */
/*********************************/
.section-worries .section-ttl::before {
  left: 0;
}
.worries-innr {
  display: flex;
  justify-content: space-between;
}
/* .worries-l {
  padding-top: 36px;
} */
.worries-l .section-ttl {
  position: relative;
  margin-bottom: 40px;
  font-size: 28px;
  line-height: 1.785;
}
.worries-l .section-ttl::before {
  top: 0;
  transform: none;
}
.worries-r {
  max-width: 684px;
  padding-bottom: 133px;
}
.worries-r li {
  position: relative;
  display: inline-block;
  padding: 20px 32px 20px 54px;
  font-weight: 600;
  white-space: nowrap;
  background: #f4f4f4;
}
.worries-r li:not(:last-of-type) {
  margin-bottom: 8px;
}
.worries-r li::before {
  position: absolute;
  top: 50%;
  left: 24px;
  width: 22px;
  height: 11px;
  background: url(../img/icn-check.svg) no-repeat;
  background-size: contain;
  transform: translate(0, -50%);
  content: '';
}
.worries-txt {
  margin-top: -24px;
  font-weight: 800;
  font-size: 20px;
}
.worries-r .worries-txt img {
  width: 85px;
}
@media (min-height: 800px) and (min-width: 768px) {
  .section-worries {
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 870px) {
  .worries-r {
    width: calc(100% - 260px);
  }
  .worries-r li {
    white-space: normal;
  }
  .worries-txt {
    margin-top: 15px;
    font-size: 16px;
  }
  .worries-txt img {
    width: 58px;
  }
}
@media (max-width: 767px) {
  .section-worries {
    margin-top: 0;
  }
  .worries-innr {
    flex-direction: column;
  }
  /* .worries-l {
    padding-top: 116px;
  } */
  .worries-l .section-ttl {
    margin-bottom: 24px;
    font-size: 22px;
    line-height: 1.54;
  }
  .worries-r li {
    width: 100%;
    padding: 16px 16px 16px 42px;
    font-size: 15px;
    line-height: 1.73;
    white-space: normal;
  }
  .worries-r li::before {
    left: 12px;
    width: 18px;
    height: 9px;
  }
  .worries-r .worries-txt {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    line-height: 1.88;
  }
  .worries-r .worries-txt img {
    width: 101.79px;
    margin: 0 0 0 16px;
  }
  .worries-r {
    padding-bottom: 42px;
  }
}

/*********************************/
/* EXPECT */
/*********************************/
.section-expect {
  position: relative;
  z-index: 1;
  margin-bottom: 90px;
  background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 1)
    ),
    url(../img/expect-bg@2x.jpg) no-repeat;
  background-size: cover;
}
.section-expect::before {
  position: absolute;
  top: -47px;
  left: 50%;
  width: 190px;
  height: 120px;
  background: url(../img/expect-bg-triangle.svg) no-repeat;
  background-size: contain;
  transform: translate(-50%, 0) translateX(-280px);
  content: '';
}
.expect-innr {
  padding-top: 135px;
}
.section-expect .section-ttl {
  width: 742.32px;
  height: 75.6px;
  margin: 0 auto 53px;
  background: url(../img/expect-ttl.svg) no-repeat;
  background-size: contain;
}
.section-expect ul li {
  position: relative;
  padding: 27px 15px 27px 150px;
  overflow: hidden;
  font-weight: 600;
  background: #fff;
  box-shadow: 0px 16px 20px rgb(0, 54, 201, 0.11);
}
.section-expect ul li:not(:last-of-type) {
  margin-bottom: 8px;
}
.section-expect ul li::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 100%;
  content: '';
}
.section-expect ul li:nth-of-type(1)::before {
  background: url(../img/icn-point1.svg) no-repeat;
  background-size: contain;
}
.section-expect ul li:nth-of-type(2)::before {
  background: url(../img/icn-point2.svg) no-repeat;
  background-size: contain;
}
.section-expect ul li:nth-of-type(3)::before {
  background: url(../img/icn-point3.svg) no-repeat;
  background-size: contain;
}
.section-expect ul li:nth-of-type(4)::before {
  background: url(../img/icn-point4.svg) no-repeat;
  background-size: contain;
}
.section-expect ul li:nth-of-type(5)::before {
  background: url(../img/icn-point5.svg) no-repeat;
  background-size: contain;
}
.section-expect ul li:nth-of-type(6)::before {
  background: url(../img/icn-point6.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .section-expect {
    margin-bottom: 40px;
    background-position: top center;
  }
  .expect-innr {
    padding-top: 82px;
  }
  .section-expect::before {
    top: -17px;
    width: 90.45px;
    height: 57.29px;
    transform: translate(-50%, 0) translateX(-130px);
  }
  .section-expect .section-ttl {
    width: 100%;
    height: 100.4px;
    margin: 0 auto 20px;
    background: url(../img/expect-ttl-sp.svg) no-repeat;
    background-position: center;
    background-size: contain;
  }
  .section-expect ul li {
    padding: 24px 24px 24px 54px;
    font-size: 16px;
    line-height: 1.875;
  }
  .section-expect ul li::before {
    position: absolute;
    top: 50%;
    left: 21px;
    width: 16px;
    height: 80px;
    transform: translate(0, -50%);
    content: '';
  }
  .section-expect ul li:nth-of-type(1)::before {
    background: url(../img/icn-point1-sp.svg) no-repeat;
    background-size: contain;
  }
  .section-expect ul li:nth-of-type(2)::before {
    background: url(../img/icn-point2-sp.svg) no-repeat;
    background-size: contain;
  }
  .section-expect ul li:nth-of-type(3)::before {
    background: url(../img/icn-point3-sp.svg) no-repeat;
    background-size: contain;
  }
  .section-expect ul li:nth-of-type(4)::before {
    background: url(../img/icn-point4-sp.svg) no-repeat;
    background-size: contain;
  }
  .section-expect ul li:nth-of-type(5)::before {
    background: url(../img/icn-point5-sp.svg) no-repeat;
    background-size: contain;
  }
  .section-expect ul li:nth-of-type(6)::before {
    background: url(../img/icn-point6-sp.svg) no-repeat;
    background-size: contain;
  }
}

/*********************************/
/* CONTACT */
/*********************************/
.section-contact {
  margin: 0 auto 140px;
  background: url(../img/contact-bg@2x.png) no-repeat;
  background-position: center;
  background-size: 1280px 400px;
}
.contact-innr {
  width: calc(100% - 32px);
  height: 400px;
  margin: auto;
  text-align: center;
}
.section-contact h2 {
  padding-top: 60px;
  font-size: 36px;
  line-height: 1.76;
}
.contact-txt {
  margin: 16px auto 28px;
  font-weight: 600;
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 767px) {
  .section-contact {
    position: relative;
    margin: 0 auto 200px;
    background: none;
  }
  .section-contact::before {
    position: absolute;
    top: -225px;
    left: 50%;
    z-index: -1;
    width: 1049px;
    height: 894px;
    background: url(../img/contact-bg-sp@2x.jpg) no-repeat;
    background-size: contain;
    transform: translate(-50%, 0) translateX(66px);
    content: '';
  }
  .section-contact h2 {
    padding-top: 180px;
    font-size: 26px;
  }
  .contact-txt {
    text-align: left;
  }
  .contact-innr {
    height: auto;
  }
}

/*********************************/
/* ABOUT */
/*********************************/
.section-about {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.about-l {
  padding-top: 36px;
}
.section-about .section-ttl {
  width: 373.14px;
  height: 165.6px;
  margin: auto;
  background: url(../img/about-ttl.svg) no-repeat;
  background-size: contain;
}
.section-about .section-ttl a:hover {
  text-decoration: underline;
}
.about-column {
  display: flex;
  justify-content: space-between;
}
.about-column:not(:last-of-type) {
  margin-bottom: 114px;
}
.about-column-content {
  position: relative;
  max-width: 440px;
}
.about-column-content h3 {
  margin-bottom: 14px;
  color: #fc6c41;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.9;
}
.about-column-content h3 + p {
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 2;
}
.about-column-ttl {
  margin-top: 60px;
}
.about-img1 {
  position: absolute;
  left: -250px;
  width: 750px;
  max-width: none;
}
.about-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}
.about-lists li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  font-weight: 600;
  font-size: 16px;
  background: #f4f4f4;
  border-radius: 100%;
}
.about-lists li figure {
  transform: translateY(-11px);
}
.about-lists li span {
  position: absolute;
  top: 65px;
  left: 50%;
  white-space: nowrap;
  transform: translate(-50%, 0);
}
.about-txt-column {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-txt {
  font-weight: 600;
  line-height: 1.88;
  letter-spacing: 0.03em;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .about-column {
    flex-direction: column;
  }
  .about-l {
    padding-top: 200px;
  }
  .about-column-content {
    max-width: 100%;
  }
  .section-about .section-ttl {
    width: 248.76px;
    height: 100.4px;
    background: url(../img/about-ttl-sp.svg) no-repeat;
    background-size: contain;
  }
  .about-img1 {
    position: unset;
    width: 100%;
  }
  .about-column-content h3 {
    margin-top: 30px;
    font-size: 18px;
  }
  .about-column-content h3 + p,
  .about-column:not(:last-of-type) {
    margin-bottom: 32px;
  }
  .about-lists li {
    width: 81.07px;
    height: 81.07px;
    margin-bottom: 8px;
    font-size: 12px;
  }
  .about-lists li figure {
    transform: translateY(-10px) scale(0.76);
  }
  .about-lists li span {
    top: 50.7px;
  }
  .about-lists {
    gap: 6px;
    max-width: 343px;
    margin: 0 auto 34px;
  }
  .about-txt-column {
    max-width: 347px;
    margin: auto;
  }
  .about-txt {
    font-size: 16px;
  }
  .about-txt + img {
    width: 73.45px;
  }
}

/*********************************/
/* REASON */
/*********************************/
.section-reason {
  position: relative;
  z-index: 1;
  margin-bottom: 57px;
}
.section-reason .section-ttl {
  height: 75.6px;
  margin-bottom: 60px;
  background: url(../img/reason-ttl.svg) no-repeat;
  background-position: center;
  background-size: 656.64px 75.6px;
}
.reason-column {
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
}
.reason-column-txt {
  max-width: 450px;
  margin-top: 26px;
}
.reason-column-txt h3 {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  color: #fc6c41;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.58;
}
.reason-column-txt h3 figure {
  position: relative;
  padding: 0 25px;
}
.reason-column-txt h3 figure::before {
  position: absolute;
  top: -32px;
  left: 0;
  width: 32px;
  height: 32px;
  background: url(../img/reason-decoration.svg) no-repeat;
  background-size: contain;
  content: '';
}
.reason-column-img {
  max-width: 494px;
}
.reason-column-txt p {
  font-size: 16px;
  line-height: 2;
}
.reason-data {
  margin-top: 104px;
}
.reason-data h3 {
  font-weight: 700;
  font-size: 26px;
  text-align: center;
}
.reason-data h3 + p {
  margin: 24px auto 32px;
  font-weight: 600;
  text-align: center;
}
.reason-data-content {
  max-width: 296px;
}
.reason-data-content figure {
  height: 120px;
}
.reason-data-content p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 767px) {
  .section-reason {
    margin-bottom: 40px;
  }
  .section-reason .section-ttl {
    height: 100.4px;
    margin-bottom: 0;
    background: url(../img/reason-ttl-sp.svg) no-repeat;
    background-position: center;
    background-size: 263.88px 100.4px;
  }
  .reason-column {
    flex-direction: column;
    margin-bottom: 32px;
  }
  .reason-column-img {
    margin: auto;
  }
  .reason-column-txt {
    max-width: 100%;
  }
  .reason-column-txt h3 {
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.8;
  }
  .reason-column:nth-of-type(1) .reason-column-txt img {
    width: 46.3px;
  }
  .reason-column:nth-of-type(2) .reason-column-txt img {
    width: 58.65px;
  }
  .reason-column:nth-of-type(3) .reason-column-txt img {
    width: 59.95px;
  }
  .reason-column-txt h3 figure {
    padding: 8px 10px 0 21px;
  }
  .reason-column-txt h3 figure::before {
    top: -17px;
  }
  .reason-column-txt p {
    margin-bottom: 24px;
  }
  .reason-column:nth-of-type(2) {
    flex-direction: column-reverse;
  }
  .reason-data .reason-column:nth-of-type(2) {
    flex-direction: column;
  }
  .reason-data {
    margin-top: 60px;
  }
  .reason-data h3 {
    font-size: 22px;
    line-height: 1.72;
  }
  .reason-data h3 + p {
    margin-bottom: 0;
    line-height: 2;
  }
  .reason-data-content {
    max-width: 100%;
    margin-top: 22px;
  }
  .reason-data-content figure {
    max-width: 275px;
    margin: auto;
  }
}

/*********************************/
/* COMPARISON */
/*********************************/
.section-comparison {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
.section-comparison h2 {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 34px;
}
.comparison-table tr {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #efefef;
}
.comparison-table th {
  width: 185px;
  padding-right: 24px;
  font-weight: 600;
  font-size: 16px;
}
.comparison-table td {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px;
  text-align: center;
}
.comparison-table td.w-one-third {
  width: 243px;
}
.comparison-table td.pd-t {
  padding-top: 15px;
}
.comparison-name td {
  position: relative;
  height: 72px;
  overflow: hidden;
  color: #fff;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.1rem;
  background: linear-gradient(to right, #f36f56 0%, #ffc444 100%);
  border-radius: 4px 4px 0 0;
}
.comparison-content td {
  /* display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center; */
  height: 72px;
  font-weight: 600;
  font-size: 35px;
  line-height: 1.6;
  background: #fcfae5;
  border-radius: 4px 0 4px 4px;
}
.comparison-content td .txt-sm {
  margin-top: 5px;
  font-size: 10px;
}
.comparison-content td .single-p {
  display: block;
  line-height: 20px;
}
@media (max-width: 1000px) {
  .section-comparison {
    margin-bottom: 40px;
  }
  .comparison-table th {
    width: 135px;
  }
  .section-comparison .innr-1000 {
    max-width: calc(100% - 16px);
    margin-left: 16px;
    overflow: scroll;
  }
  .comparison-table td.w-one-third {
    width: 175px;
  }
  .comparison-name td {
    height: 56px;
  }
  .comparison-content td {
    height: 56px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .section-comparison h2 {
    font-size: 24px;
  }
}

/*********************************/
/* EXAMPLE */
/*********************************/
.section-example {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  padding-top: 16px;
  padding-bottom: 55px;
  background: url(../img/case-bg@2x.jpg) no-repeat;
  background-size: cover;
}
.section-example::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: #71810c0d;
  content: '';
}
.section-example .innr-1000 {
  position: relative;
  z-index: 1;
}
.section-example .section-ttl {
  height: 75.6px;
  margin-bottom: 60px;
  /* background: url(../img/reason-ttl.svg) no-repeat; */
  /* background-position: center;
  background-size: 656.64px 75.6px; */
}
.example-column {
  display: flex;
  justify-content: space-between;
  padding: 15px 10px;
  background: #fff;
}
.example-column:not(:first-child) {
  margin-top: 32px;
}
.example-column-txt {
  max-width: 450px;
  margin-top: 26px;
}
.example-column-txt h3 {
  display: flex;
  align-items: center;
  color: #fc6c41;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.58;
}
.example-column-txt h3 figure {
  position: relative;
  padding: 0 25px;
}
.example-column-txt h3 figure::before {
  position: absolute;
  top: -32px;
  left: 0;
  width: 32px;
  height: 32px;
  background: url(../img/reason-decoration.svg) no-repeat;
  background-size: contain;
  content: '';
}
.example-column-desc {
  max-width: 555px;
}
.example-column-desc h4 {
  font-size: 20px;
  line-height: 2;
}
.example-column-desc p {
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 767px) {
  .section-example {
    margin-bottom: 40px;
  }
  .section-example .section-ttl {
    height: 100.4px;
    margin-bottom: 0;
    background: url(../img/reason-ttl-sp.svg) no-repeat;
    background-position: center;
    background-size: 263.88px 100.4px;
  }
  .example-column {
    flex-direction: column;
    margin-bottom: 32px;
  }
  .example-column-desc {
    margin: auto;
  }
  .example-column-txt {
    max-width: 100%;
  }
  .example-column-txt h3 {
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.8;
  }
  .example-column-txt h3 figure {
    padding: 8px 10px 0 21px;
  }
  .example-column-txt h3 figure::before {
    top: -17px;
  }
  .example-column-txt p {
    /* margin-bottom: 24px; */
  }
}

/*********************************/
/* SERVICE */
/*********************************/
.section-service {
  margin-bottom: 80px;
}
.section-service .section-ttl {
  margin-bottom: 84px;
}
.section-service .section-ttl::before {
  position: absolute;
  bottom: -18px;
  z-index: -1;
  width: 401.04px;
  height: 75.6px;
  background: url(../img/service-ttl.svg) no-repeat;
  background-size: contain;
  content: '';
}
.section-service .accordion-list .accordion-list-content {
  font-size: 16px;
}
.section-service .accordion-list.active .accordion-list-content {
  padding-bottom: 32px;
}
.section-service .accordion-list-ttl figure {
  position: absolute;
  top: 50%;
  left: -27px;
  transform: translate(0, -50%);
}
.section-service .accordion-list-ttl figure::before {
  position: absolute;
  top: 50%;
  left: 56px;
  transform: translate(0, -50%);
  content: '';
}
.section-service .accordion-lists-first li:nth-of-type(1) figure::before {
  width: 32px;
  height: 21.76px;
  background: url(../img/service-icn1.svg) no-repeat;
}
.section-service .accordion-lists-first li:nth-of-type(2) figure::before {
  width: 32px;
  height: 28px;
  background: url(../img/service-icn2.svg) no-repeat;
}
.section-service .accordion-lists-first li:nth-of-type(3) figure::before {
  width: 32px;
  height: 32px;
  background: url(../img/service-icn3.svg) no-repeat;
}
.section-service .accordion-lists-second li:nth-of-type(1) figure::before {
  width: 32px;
  height: 28px;
  background: url(../img/service-icn4.svg) no-repeat;
}
.section-service .accordion-lists-second li:nth-of-type(2) figure::before {
  width: 32px;
  height: 32px;
  background: url(../img/service-icn5.svg) no-repeat;
}
.section-service .accordion-lists-second li:nth-of-type(3) figure::before {
  width: 31px;
  height: 30px;
  background: url(../img/service-icn6.svg) no-repeat;
}
@media (max-width: 767px) {
  .section-service {
    margin-bottom: 50px;
  }
  .section-service .section-ttl::before {
    top: -8px;
    width: 267.36px;
  }
  .section-service .section-ttl {
    margin-bottom: 32px;
  }
  .accordion-lists {
    flex-direction: column;
  }
  .accordion-lists ul {
    width: 100%;
  }
  .section-service .accordion-list-ttl figure::before {
    left: 47px;
  }
  .section-service .accordion-list.active .accordion-list-content {
    padding-bottom: 24px;
  }
}

/*********************************/
/* PLAN */
/*********************************/
.section-plan {
  margin-bottom: 200px;
}
.section-plan h2 {
  font-weight: 700;
  font-size: 26px;
}
.section-plan h2 + p {
  max-width: calc(100% - 32px);
  margin: 24px auto 40px;
  font-weight: 600;
  text-align: center;
}
.section-plan .btn {
  background: #74c900;
}
.section-plan .btn::before {
  content: none;
}
.plan-table {
  margin-bottom: 24px;
}
.plan-table tr {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #efefef;
}
.plan-table th {
  width: 150px;
  font-weight: 600;
  font-size: 16px;
}
.plan-table td {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px;
  text-align: center;
}
.plan-table td.w-half {
  width: 420px;
}
.plan-name td {
  position: relative;
  height: 72px;
  overflow: hidden;
  color: #fff;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.1rem;
  background: linear-gradient(to right, #f36f56 0%, #ffc444 100%);
  border-radius: 4px 4px 0 0;
}
.plan-name td::before {
  position: absolute;
  bottom: -11px;
  left: 28px;
  content: '';
}
.plan-name td:nth-of-type(1)::before {
  width: 63.2px;
  height: 65.6px;
  background: url(../img/plan-a.svg) no-repeat;
  background-size: contain;
}
.plan-name td:nth-of-type(2)::before {
  width: 67.28px;
  height: 64.52px;
  background: url(../img/plan-b.svg) no-repeat;
  background-size: contain;
}
.plan-price td {
  height: 72px;
  font-weight: 600;
  font-size: 22px;
  background: #fcfae5;
  border-radius: 4px 0 4px 4px;
}
.plan-content td {
  height: 120px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.6;
  background: #fcfae5;
  border-radius: 4px 0 4px 4px;
}
.plan-content td .txt-sm {
  font-size: 14px;
}
.plan-period td,
.plan-keyword td {
  width: calc(100% - 150px);
  height: 56px;
  font-weight: 600;
  font-size: 16px;
  background: #f4f4f4;
  border-radius: 4px 0 4px 4px;
}
@media (max-width: 1000px) {
  .section-plan {
    margin-bottom: 140px;
  }
  .plan-table {
    margin-bottom: 10px;
  }
  .section-plan .btn-wrap {
    margin-top: 24px;
  }
  .plan-table th {
    width: 135px;
  }
  .plan-period td,
  .plan-keyword td {
    width: calc(100% - 135px);
  }
  .section-plan .innr-1000 {
    max-width: calc(100% - 16px);
    margin-left: 16px;
    overflow: scroll;
  }
  .plan-table td.w-half {
    width: 300px;
  }
  .plan-name td {
    height: 56px;
  }
  .plan-price td {
    height: 64px;
    font-size: 20px;
  }
  .plan-content td {
    height: 90px;
    font-size: 18px;
  }
  .plan-name td::before {
    top: 14px;
    bottom: auto;
  }
  .plan-name td:nth-of-type(1)::before {
    width: 53.4px;
    background: url(../img/plan-a-sp.svg) no-repeat;
  }
  .plan-name td:nth-of-type(2)::before {
    width: 58.46px;
    background: url(../img/plan-b-sp.svg) no-repeat;
  }
}
@media (max-width: 767px) {
  .section-plan h2 {
    font-size: 24px;
  }
  .section-plan h2 + p {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 2;
    text-align: left;
  }
}

/*********************************/
/* STRENGTHS */
/*********************************/
.section-strengths {
  position: relative;
  z-index: 1;
}
.section-strengths .section-ttl::before {
  position: absolute;
  bottom: -18px;
  z-index: -1;
  width: 584.01px;
  height: 75.6px;
  background: url(../img/strengths-ttl.svg) no-repeat;
  background-size: contain;
  content: '';
}
.section-strengths .section-ttl {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .section-strengths .section-ttl::before {
    top: -9px;
    bottom: auto;
    width: 389.34px;
    height: 50.4px;
  }
  .section-strengths .section-ttl {
    margin-bottom: 32px;
  }
  .section-strengths .reason-column {
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
  .section-strengths .reason-column:nth-of-type(2) {
    flex-direction: column;
  }
  .section-strengths .reason-column:nth-of-type(2) .reason-column-txt h3 {
    align-items: center;
  }
}

/*********************************/
/* CASE */
/*********************************/
.section-case {
  position: relative;
  z-index: 1;
  margin-bottom: 104px;
}
.section-case .section-ttl {
  margin-bottom: 85px;
}
.section-case .section-ttl::before {
  position: absolute;
  bottom: -18px;
  z-index: -1;
  width: 437.94px;
  height: 75.6px;
  background: url(../img/case-ttl.svg) no-repeat;
  background-size: contain;
  content: '';
}
.case-slide {
  position: relative;
}
.case-img {
  position: relative;
  cursor: 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: #f4f4f4;
}
.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: 80px 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;
}
@media (min-width: 768px) {
  .glide__slides {
    justify-content: space-between;
  }
  .glide__slide {
    width: 32%;
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .section-case .section-ttl::before {
    top: -9px;
    bottom: auto;
    width: 291.96px;
    height: 50.4px;
  }
  .section-case .section-ttl {
    margin-bottom: 32px;
  }
  .section-case {
    margin-bottom: 50px;
  }
  .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;
  }
}

/*********************************/
/* FLOW */
/*********************************/
.section-flow {
  margin-top: 134px;
}
.section-flow .innr-1000 {
  width: 1040px;
}
.section-flow .section-ttl::before {
  position: absolute;
  z-index: -1;
  width: 722.61px;
  height: 75.6px;
  background: url(../img/flow-ttl.svg) no-repeat;
  background-size: contain;
  content: '';
}
.flow-content {
  padding: 0 20px 50px;
  overflow: hidden;
  font-family: 'Noto Sans', sans-serif;
}
.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: 39px 39px 30px;
  background-color: #ffffff;
  box-shadow: 0px 16px 20px rgb(0 15 100 / 8%);
}
.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;
  padding-bottom: 45px;
}
.flow-list:nth-child(n + 3) {
  margin-top: 24px;
}
.flow-list:nth-child(4) {
  padding-bottom: 45px;
}
.flow-list:nth-child(6) {
  padding-bottom: 50px;
}
.flow-list::before {
  position: absolute;
  width: 104px;
  height: 64px;
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}
.flow-list:nth-child(1)::before {
  top: 86px;
  right: -112px;
  background-image: url('../img/flow-mail.svg');
}
.flow-list:nth-child(2)::before {
  top: 130px;
  left: -112px;
  background-image: url('../img/flow-hearing.svg');
}
.flow-list:nth-child(3)::before {
  top: 41px;
  right: -112px;
  background-image: url('../img/flow-proposal.svg');
}
.flow-list:nth-child(4)::before {
  top: 70px;
  left: -112px;
  background-image: url('../img/flow-contract.svg');
}
.flow-list:nth-child(5)::before {
  top: 23px;
  right: -112px;
  background-image: url('../img/flow-sitemap.svg');
}
.flow-list:nth-child(6)::before {
  top: 64px;
  left: -112px;
  background-image: url('../img/flow-dev.svg');
}
.flow-list:nth-child(7)::before {
  top: 5px;
  right: -112px;
  background-image: url('../img/flow-confirm.svg');
}
.flow-list:nth-child(8)::before {
  top: 55px;
  left: -112px;
  width: 135px;
  height: 70px;
  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: center;
}
.flow-lead span {
  color: #5083f5;
  font-weight: 600;
}
.flow-lead img {
  margin-right: 0;
  margin-left: 0;
}

.flow-lead-title {
  margin-top: 2px;
  margin-left: 14px;
  font-weight: 700;
  font-size: 18px;
}

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

@media (max-width: 767px) {
  .section-flow .section-ttl::before {
    bottom: 0px;
    width: 267.36px;
    height: 100.4px;
    background: url(../img/flow-ttl-sp.svg) no-repeat;
    background-size: contain;
  }
  .section-flow .section-ttl {
    margin-bottom: 0;
  }
  .section-flow {
    margin-top: 50px;
  }
  .flow-content {
    padding-right: 16px;
    padding-bottom: 40px;
    padding-left: 16px;
  }

  .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;
  }
}

/*********************************/
/* QA */
/*********************************/
.section-qa {
  margin: 140px auto 120px;
}
.section-qa .section-ttl {
  margin-bottom: 70px;
}
.section-qa .section-ttl::before {
  position: absolute;
  z-index: -1;
  width: 184.68px;
  height: 94.59px;
  background: url(../img/qa-ttl.svg) no-repeat;
  background-size: contain;
  content: '';
}
.qa-list {
  max-width: 100%;
  height: auto;
  margin-bottom: 8px;
  padding: 0;
  background: none;
}
.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-left: 35.6px;
  overflow: hidden;
  color: #343546;
  font-weight: 600;
  font-size: 16px;
  background: #f4f4f4;
}

.qa-title-q {
  margin: 0 -7px 10px 0;
}

.qa-title-txt {
  font-weight: 600;
}

.qa-txt {
  display: flex;
  align-items: flex-start;
  font-weight: 300;
}
.qa-txt.active {
  padding-top: 25px;
  padding-bottom: 20px;
}

.qa-txt-a {
  margin-top: 8px;
  margin-right: 41px;
}

.qa-txt-letter {
  line-height: 2;
}
.section-qa .accordion-list .accordion-list-content {
  margin: 0 120px 0 48px;
}
.section-qa .accordion-list.active .accordion-list-content {
  margin: 32px 120px 32px 48px;
}
@media (max-width: 767px) {
  .section-qa .section-ttl::before {
    top: -9px;
    width: 123.12px;
    height: 63.06px;
  }
  .section-qa .section-ttl {
    margin-bottom: 32px;
  }
  .section-qa .innr-1000 {
    max-width: 100%;
  }
  .qa-title {
    align-items: center;
    height: 80px;
    padding: 17px 45px 17px 40px;
  }
  .qa-title-q {
    position: absolute;
    top: -11px;
    left: 15px;
    width: 54.53px;
  }
  .section-qa .accordion-list-ttl::before,
  .section-qa .accordion-list-ttl::after {
    right: 16px;
  }
  .qa-title-txt {
    z-index: 1;
  }
  .qa-txt {
    padding: 0 24px 0 16px;
    font-size: 16px;
  }
  .qa-txt.active {
    margin-top: 0;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .qa-txt-a {
    width: 23px;
    margin: 3px 10px 0 0;
  }
  .section-qa {
    margin: 10px 0 65px;
  }
  .section-qa .accordion-list .accordion-list-content {
    margin: 0;
  }
  .section-qa .accordion-list.active .accordion-list-content {
    margin: 24px 0;
  }
}
