@charset "UTF-8";
@import url("grid.css");
@media screen and (min-width: 769px) {
  /* min-width 769px */
}
@media screen and (max-width: 768px) {
  /* max-width 768px */
}
.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
  --base-color: #000;
  --link-color: #666;
  --linkhover-color: #999;
  --back-color: #f7f7f7;
  --border-color: #646464;
  --white-color: #fff;
}

img {
  max-width: 100%;
  height: auto; /*高さ自動*/
}

a {
  display: block;
  color: var(--white-color);
  text-decoration-line: none;
}

.headingTxt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 0;
  font-size: 2em;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .headingTxt {
    font-size: 24px;
    text-align: center;
    letter-spacing: 1px;
  }
}

.btn {
  padding: 2rem 6rem;
  background-image: linear-gradient(100deg, rgb(202, 33, 252), rgb(0, 168, 162));
  border-radius: 60px;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 1.5rem 1rem;
  }
}
.btn:hover {
  opacity: 0.8;
}

.inview {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}

.inview.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/*ヘッダー
-------------------------------------*/
header {
  position: fixed;
  width: 100%;
  padding: 2rem 4rem;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .container .logo {
  font-size: 19px;
}

/*　ハンバーガーメニューボタン　*/
/*　展開時背景固定　*/
html:has(.globalMenuSp.active) {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 20px;
    top: 14px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #BBBBBB;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  /* スマホメニューを開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
/* メニュー背景　*/
.globalMenuSp {
  /* クリックでjQueryで追加・削除 */
  /* SPメニュー展開時の背景制御 */
}
@media screen and (max-width: 768px) {
  .globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    color: #fff;
    padding: 8.5rem 0 0;
    width: calc(100% - 12.8rem);
    height: 100vh;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    background: #272727;
    text-align: left;
  }
}
.globalMenuSp .header__naviItmes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
  width: 100%;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .globalMenuSp .header__naviItmes {
    gap: 0;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .globalMenuSp .header__naviItmes li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
    border-top: solid 1px #525252;
  }
}
@media screen and (max-width: 768px) {
  .globalMenuSp .header__naviItmes li:last-child {
    padding: 0 24px;
  }
}
@media screen and (max-width: 768px) {
  .globalMenuSp .header__naviItmes li a {
    display: block;
    color: #fff;
    padding: 2rem 24px;
    text-decoration: none;
  }
}
.globalMenuSp .header__naviItmes li a:not(.btn) {
  position: relative;
  display: block;
  text-decoration-line: none;
}
@media screen and (max-width: 768px) {
  .globalMenuSp .header__naviItmes li a:not(.btn) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.globalMenuSp .header__naviItmes li a:not(.btn)::after {
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  content: "";
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .globalMenuSp .header__naviItmes li a:not(.btn)::after {
    background: url(../img/arrow_w.svg) no-repeat center/cover;
    visibility: visible;
    opacity: 1;
    width: 5px;
    height: 10px;
    position: relative;
    bottom: unset;
    left: unset;
  }
}
.globalMenuSp .header__naviItmes li a:not(.btn):hover::after {
  visibility: visible;
  opacity: 1;
}
.globalMenuSp .header__naviItmes li .nav__btn {
  padding: 1rem 4rem;
}
@media screen and (max-width: 768px) {
  .globalMenuSp .header__naviItmes li .nav__btn {
    margin-top: 2.4rem;
    padding: 1rem;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .globalMenuSp.active {
    opacity: 1;
    display: block;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.globalMenuSp + .hamburger__bg {
  display: block;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  content: "";
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  visibility: hidden;
}
.globalMenuSp.active + .hamburger__bg {
  opacity: 1;
  visibility: visible;
}

#navi {
  /* スマホ時はメニューを非表示 */
}
@media screen and (min-width: 769px) {
  #navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  #navi {
    display: none;
  }
}
#navi .header__naviItmes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
  width: 100%;
  font-size: 14px;
}
#navi .header__naviItmes a:not(.btn) {
  position: relative;
  display: block;
  text-decoration-line: none;
}
#navi .header__naviItmes a:not(.btn)::after {
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  content: "";
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#navi .header__naviItmes a:not(.btn):hover::after {
  visibility: visible;
  opacity: 1;
}
#navi .header__naviItmes .nav__btn {
  padding: 1rem 4rem;
}

#open,
#close {
  /* PC時はMENUボタンを非表示 */
  /* スマホ時はMENUボタンを表示 */
}
@media screen and (min-width: 769px) {
  #open,
  #close {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  #open,
  #close {
    position: absolute;
    top: 20px;
    right: 12px;
  }
}

@media screen and (max-width: 768px) {
  #open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
  }
}

@media screen and (max-width: 768px) {
  #close {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
  }
}

@media screen and (max-width: 768px) {
  nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*メイン画像
-------------------------------------*/
.mv {
  background: url(../img/img_mv.png) no-repeat center/cover;
}

.mv__cont {
  max-width: 1000px;
  margin-inline: auto;
  padding: 240px 32px;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", Yu Mincho, "Hiragino Mincho Pro", serif;
}
@media screen and (max-width: 768px) {
  .mv__cont {
    padding: 250px 24px 150px;
  }
}

.mv__head {
  font-size: 70px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .mv__head {
    font-size: 37px;
    line-height: 1.2;
  }
}

.mv__headSub {
  display: block;
  font-size: 22px;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .mv__headSub {
    padding: 0;
    font-size: 16px;
  }
}

.mv__leadHead {
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 31px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .mv__leadHead {
    padding-top: 24px;
    font-size: 20px;
  }
}
.mv__leadHead::after {
  display: block;
  position: relative;
  left: -3rem;
  bottom: 1rem;
  content: "";
  width: calc(100% + 6rem);
  height: 6px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(202, 33, 252, 0)), color-stop(25%, rgb(153, 54, 248)), color-stop(50%, rgb(77, 87, 243)), color-stop(75%, rgb(33, 168, 248)), to(rgba(0, 229, 255, 0)));
  background: linear-gradient(to right, rgba(202, 33, 252, 0), rgb(153, 54, 248) 25%, rgb(77, 87, 243) 50%, rgb(33, 168, 248) 75%, rgba(0, 229, 255, 0));
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  z-index: -1;
}

.mv__leadTxt {
  padding-top: 2rem;
  font-size: 18px;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Noto Sans JP", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
@media screen and (max-width: 768px) {
  .mv__leadTxt {
    font-size: 13px;
  }
}

/* メインコンテンツ
-------------------------------------*/
.sectionInner {
  margin-inline: auto;
  padding: 12rem 24px 0;
  max-width: 1048px;
}
@media screen and (max-width: 768px) {
  .sectionInner {
    margin: 0 auto;
    padding: 80px 24px;
  }
}

/* intro
-------------------------------------*/
.intro .sectionInner {
  padding-top: 0;
}

/* intro__lead
-------------------------------------*/
.intro__lead {
  background: url(../img/img_intro_bg.png) no-repeat center/cover;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.intro__lead .contentInner {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .intro__lead .contentInner {
    padding: 4rem 2.4rem 8rem;
  }
}
@media screen and (max-width: 768px) {
  .intro__lead .contentInner .headingTxt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.2rem;
    font-size: 20px;
  }
  .intro__lead .contentInner .headingTxt::before {
    display: block;
    background: url(../img/img_intro__lead.png) no-repeat center/cover;
    content: "";
    width: 6rem;
    height: 6rem;
  }
}
.intro__lead .intro__leadItemsWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1048px;
  margin: 3.2rem auto 0;
  padding: 4.8rem 24px;
  border-top: solid 1px var(--border-color);
  border-bottom: solid 1px var(--border-color);
}
@media screen and (max-width: 768px) {
  .intro__lead .intro__leadItemsWrap {
    padding: 4.8rem 0;
  }
}
.intro__lead .intro__leadItems li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4rem;
  font-size: 14px;
}
.intro__lead .intro__leadItems li:nth-of-type(n+2) {
  padding-top: 1.6rem;
}
.intro__lead .intro__leadItems li::before {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.9rem;
  height: 1.9rem;
  background-color: #888;
  border-radius: 50%;
  content: "";
}

/* risks
-------------------------------------*/
.risks {
  padding: 12rem 0;
}
@media screen and (max-width: 768px) {
  .risks {
    padding: 8rem 0;
  }
  .risks .headingTxt {
    font-size: 20px;
  }
}
.risks .risks__items {
  margin-top: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem 1rem;
  margin-top: 4rem;
}
.risks .risks__items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 240px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0 0 5px 5px;
}
@media screen and (max-width: 768px) {
  .risks .risks__items li {
    width: calc(50% - 1rem);
  }
}
.risks .risks__items li .risks__itemsTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1.4em;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .risks .risks__items li .risks__itemsTxt {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 1.6rem 1.2rem 4rem;
    font-size: 12px;
  }
}

/* aboutService
-------------------------------------*/
.aboutService {
  padding: 12rem 0;
  border-top: solid 1px var(--border-color);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .aboutService {
    pad: 8rem 0;
  }
}
.aboutService .aboutService__headingSub {
  display: block;
  position: relative;
  padding-top: 2.4rem;
  font-size: 27px;
  z-index: 1;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", Yu Mincho, "Hiragino Mincho Pro", serif;
  border-bottom: solid 4px;
  -o-border-image: linear-gradient(to right, rgba(202, 33, 252, 0), rgb(153, 54, 248) 25%, rgb(77, 87, 243) 50%, rgb(33, 168, 248) 75%, rgba(0, 229, 255, 0) 100%) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(rgba(202, 33, 252, 0)), color-stop(25%, rgb(153, 54, 248)), color-stop(50%, rgb(77, 87, 243)), color-stop(75%, rgb(33, 168, 248)), to(rgba(0, 229, 255, 0))) 1;
     border-image: linear-gradient(to right, rgba(202, 33, 252, 0), rgb(153, 54, 248) 25%, rgb(77, 87, 243) 50%, rgb(33, 168, 248) 75%, rgba(0, 229, 255, 0) 100%) 1;
}
@media screen and (max-width: 768px) {
  .aboutService .aboutService__headingSub {
    border: 0;
  }
  .aboutService .aboutService__headingSub .aboutService__headingSub__spline {
    display: inline;
    font-size: 21px;
    letter-spacing: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(202, 33, 252, 0)), color-stop(25%, rgb(153, 54, 248)), color-stop(50%, rgb(77, 87, 243)), color-stop(75%, rgb(33, 168, 248)), to(rgba(0, 229, 255, 0)));
    background: linear-gradient(to right, rgba(202, 33, 252, 0), rgb(153, 54, 248) 25%, rgb(77, 87, 243) 50%, rgb(33, 168, 248) 75%, rgba(0, 229, 255, 0));
    background-size: 100% 10%;
    background-position: bottom;
    background-repeat: no-repeat;
  }
}
.aboutService .aboutService__txt {
  font-size: 20px;
  padding-top: 32px;
}
@media screen and (max-width: 768px) {
  .aboutService .aboutService__txt {
    font-size: 12px;
  }
}

/* serviceInduction
-------------------------------------*/
.serviceInduction {
  background: url(../img/img_serviceInduction_bg.png) no-repeat center/cover;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.serviceInduction .contentInner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .serviceInduction .contentInner {
    padding: 8rem 0;
  }
}

.serviceInduction__btn {
  font-size: clamp(12px, 2.6vw, 20px);
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .serviceInduction__btn {
    margin-top: 24px;
  }
}

/* forte
-------------------------------------*/
.forte__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem 2.4rem;
  margin: 4.8rem auto 0;
}
@media screen and (max-width: 768px) {
  .forte__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2rem 0;
  }
}

.forte__itemWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 33.3333333333%;
  border-radius: 6px;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .forte__itemWrap {
    width: 100%;
  }
}
.forte__itemWrap dt {
  background-image: linear-gradient(100deg, rgb(202, 33, 252), rgb(0, 168, 162));
  font-size: 24px;
  text-align: center;
  padding: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 5em;
}
.forte__itemWrap dd {
  background: #fff;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 3rem 2rem 2.4rem;
  font-size: 13px;
}
.forte__itemWrap .example {
  margin-top: 1rem;
  padding: 1.8rem 0 0;
  border-top: 1px solid var(--border-color);
}
.forte__itemWrap .example__head {
  display: inline-block;
  padding: 10px 30px 0;
  color: #3d3d3d;
  border-radius: 5px;
  background: #ececec;
}
.forte__itemWrap .example__txt {
  background: #ececec;
  margin-top: -1.2em;
  padding: 20px 30px;
}
.forte__itemWrap .canpaign__txt {
  font-size: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2.4rem auto 0;
}

/* achievements
-------------------------------------*/
@media screen and (max-width: 768px) {
  .achievements .sectionInner {
    padding: 0 24px;
  }
}

.achievements__cont {
  padding: 12rem 0;
  border-top: solid 1px var(--border-color);
}
@media screen and (max-width: 768px) {
  .achievements__cont {
    padding: 8rem 0;
  }
}

.achievements__items {
  width: calc(100% - 4rem);
  margin: 4.8rem 2rem 0;
}
@media screen and (max-width: 768px) {
  .achievements__items {
    font-size: 16px;
  }
  .achievements__items .achievements__itemsHead {
    font-size: 12px;
  }
}
.achievements__items th,
.achievements__items td {
  padding: 1.4rem 0;
  text-align: center;
}
.achievements__items tr {
  border-bottom: solid 1px var(--border-color);
}
.achievements__items tr th:first-of-type {
  background-color: rgba(255, 255, 255, 0.1);
}
.achievements__items tr td {
  width: 33.3333333333%;
}
.achievements__items tr td:first-of-type {
  background-color: #3D3D3D;
}
.achievements__items tr td:nth-of-type(2) {
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(82, 59, 96)), to(rgb(56, 76, 84)));
  background-image: linear-gradient(90deg, rgb(82, 59, 96), rgb(56, 76, 84));
}
.achievements__items thead th:last-of-type {
  background-image: linear-gradient(100deg, rgb(202, 33, 252), rgb(0, 168, 162));
}

/* successCase
-------------------------------------*/
@media screen and (max-width: 768px) {
  .successCase .sectionInner {
    padding-bottom: 0;
  }
}

.successCase__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem 1.6rem;
  margin-top: 4.8rem;
}
@media screen and (max-width: 768px) {
  .successCase__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
  }
}

.successCase__itemsWrap {
  width: 250px;
  border-radius: 5px;
  position: relative;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 1.8rem 3rem;
}
@media screen and (max-width: 768px) {
  .successCase__itemsWrap {
    width: calc(50% - 0.5rem);
    padding: 1rem;
  }
}
.successCase__itemsWrap::after {
  display: block;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  position: absolute;
  left: -2px;
  top: -2px;
  background-image: linear-gradient(100deg, rgb(202, 33, 252), rgb(0, 168, 162));
  border-radius: 5px;
  z-index: -1;
  content: "";
}
.successCase__itemsWrap dt {
  font-size: 14px;
}
.successCase__itemsWrap dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 1.6rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 24px;
  letter-spacing: 1.5px;
  line-height: 1.2;
  border-top: solid 1px var(--border-color);
}
@media screen and (max-width: 768px) {
  .successCase__itemsWrap dd {
    font-size: 20px;
  }
}
.successCase__itemsWrap .catch {
  font-size: 1.75em;
}
@media screen and (max-width: 768px) {
  .successCase__itemsWrap .catch {
    font-size: 34px;
  }
}

.successCase__comments {
  margin-top: 4.8rem;
}
.successCase__comments li {
  padding: 2.8rem 24px;
  text-align: center;
  font-size: 20px;
  background-color: #23282b;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .successCase__comments li {
    padding: 4rem 1.8rem;
    font-size: 14px;
    text-align: left;
  }
}
.successCase__comments li:nth-of-type(n + 2) {
  margin-top: 2rem;
}
.successCase__comments li .speaker {
  display: block;
  font-size: 14px;
  padding-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .successCase__comments li .speaker {
    margin-inline: auto;
    padding-top: 1.6rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 12px;
  }
}

/* flow
-------------------------------------*/
@media screen and (max-width: 768px) {
  .flow .sectionInner {
    padding-bottom: 0;
  }
}

.flow__cont {
  padding-top: 12rem;
  border-top: solid 1px var(--border-color);
}
@media screen and (max-width: 768px) {
  .flow__cont {
    padding-top: 8rem;
  }
}

.flow__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6rem 3.6rem;
  margin-top: 5.2rem;
}
@media screen and (max-width: 768px) {
  .flow__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem 0;
  }
}
.flow__items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.6rem;
}
@media screen and (max-width: 768px) {
  .flow__items li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem 0;
  }
}
.flow__items li:nth-of-type(n + 2)::before {
  display: block;
  content: "";
  width: 30px;
  height: 60px;
  border-style: solid;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid #bbbbbb;
  border-right: 0;
}
@media screen and (max-width: 768px) {
  .flow__items li:nth-of-type(n + 2)::before {
    rotate: 90deg;
  }
}
.flow__items .flow__itemsInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 260px;
  height: 260px;
  color: #1c1c1c;
  text-align: center;
  background: #fff;
  border-radius: 50%;
}
.flow__items .flow__itemsInner::after {
  display: block;
  position: absolute;
  left: -4px;
  top: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  background-image: linear-gradient(100deg, rgb(202, 33, 252), rgb(0, 168, 162));
  border-radius: 50%;
  content: "";
  z-index: -1;
}
.flow__items .flow__itemsInner .num {
  color: #7f52da;
  font-size: 48px;
  line-height: 1;
}
.flow__items .flow__itemsInner .flow__itemsHeading {
  padding-top: 0.4rem;
  font-size: 20px;
}
.flow__items .flow__itemsInner .flow__itemsTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 13px;
  margin-top: 14px;
}
.flow__items .flow__itemsInner .flow__itemsTxt::before {
  display: block;
  width: 190px;
  height: 5px;
  margin-bottom: 14px;
  background-image: linear-gradient(100deg, rgb(202, 33, 252), rgb(0, 168, 162));
  border-radius: 9px;
  content: "";
}

/* campaign
-------------------------------------*/
.campaign {
  background-image: linear-gradient(100deg, rgb(202, 33, 252), rgb(0, 168, 162));
  margin: 12rem calc(50% - 50vw) 0;
  width: 100vw;
}
@media screen and (max-width: 768px) {
  .campaign {
    margin-top: 8rem;
  }
}
.campaign .contentInner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 4.8rem 24px;
}
@media screen and (max-width: 768px) {
  .campaign .contentInner {
    padding: 8rem 24px;
  }
}
.campaign .headingTxt {
  font-size: 22px;
}
.campaign .canpaign__items {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
}
@media screen and (max-width: 768px) {
  .campaign .canpaign__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem 0;
  }
}
.campaign .canpaign__items li {
  width: 240px;
  padding: 2.4rem;
  text-align: center;
  background: #1C1F3D;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .campaign .canpaign__items li {
    width: 100%;
  }
}
.campaign .canpaign__itemsHeading {
  font-size: 14px;
}
.campaign .canpaign__itemsTxt {
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 32px;
  line-height: 1.2;
  border-top: solid 1px var(--border-color);
}
.campaign .canpaign__itemsTxt .percent {
  font-size: 0.5em;
}
.campaign .canpaign__txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2.4rem auto 0;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .campaign .canpaign__txt {
    text-align: center;
  }
}

/* diagnostic
-------------------------------------*/
.diagnostic .sectionInner {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .diagnostic .sectionInner {
    padding: 0;
  }
}

.diagnostic__cont {
  position: relative;
  background: url(../img/img_diagnostic_bg.png) no-repeat center/cover;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  z-index: 0;
}
.diagnostic__cont .contentInner {
  max-width: 1048px;
  margin-inline: auto;
  padding: 12rem 24px;
}
@media screen and (max-width: 768px) {
  .diagnostic__cont .contentInner {
    padding: 8rem 24px;
  }
}

.diagnostic__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 4.8rem;
}
@media screen and (max-width: 768px) {
  .diagnostic__items {
    margin-top: 4rem;
  }
}
.diagnostic__items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 236px;
  position: relative;
  padding: 2.4rem 1.6rem;
  font-size: 14px;
  background: #000;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .diagnostic__items li {
    width: 100%;
    padding: 3.8rem 4rem;
  }
}
.diagnostic__items li::after {
  display: block;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  position: absolute;
  left: -2px;
  top: -2px;
  background-image: linear-gradient(100deg, rgb(202, 33, 252), rgb(0, 168, 162));
  border-radius: 5px;
  z-index: -1;
  content: "";
}

.diagnostic__btn {
  font-size: clamp(11px, 2.6vw, 20px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4.8rem auto 0;
}

/* フッター
-------------------------------------*/
footer {
  background-image: linear-gradient(100deg, rgb(202, 33, 252), rgb(0, 168, 162));
  padding: 8rem 0;
}

.footer__heading {
  font-size: 38px;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", Yu Mincho, "Hiragino Mincho Pro", serif;
  text-align: center;
}

.footer__headingSub {
  display: block;
  font-size: 18px;
}

.footer__cont {
  width: 1048px;
  margin-inline: auto;
  padding: 0 24px;
}
@media screen and (max-width: 768px) {
  .footer__cont {
    width: 100%;
  }
}

.footer__nav {
  margin-top: 4rem;
  padding-top: 2.4rem;
  border-top: solid 1px rgba(255, 255, 255, 0.5);
}

.footer__navItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer__navItems {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__navItems li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .footer__navItems li {
    gap: 1.2rem;
  }
}
.footer__navItems li:nth-of-type(n+2)::before {
  display: block;
  width: auto;
  height: auto;
  content: "/";
}
@media screen and (max-width: 768px) {
  .footer__navItems li:nth-of-type(n+2)::before {
    display: none;
  }
}
.footer__navItems li a {
  position: relative;
}
.footer__navItems li a::after {
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  content: "";
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.footer__navItems li a:hover::after {
  visibility: visible;
  opacity: 1;
}

/* コピーライト
-------------------------------------*/
.copyright {
  text-align: center;
  padding-top: 4rem;
}
@media screen and (max-width: 768px) {
  .copyright {
    padding-top: 4.8rem;
  }
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
}

#pagetop a {
  display: block;
  background-color: var(--base-color);
  color: var(--white-color);
  width: 50px;
  padding: 10px 5px;
  text-align: center;
}

#pagetop a:hover {
  background-color: var(--link-color);
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px) {
  /*ヘッダー
  -------------------------------------*/
  .header-box {
    display: none;
  }
  /*お問い合わせ
  -------------------------------------*/
  .table th {
    width: 100%;
    display: block;
  }
  .table td {
    display: block;
  }
}