@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@400;500;600;700;800&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@font-face {
  font-family: "CLB3";
  src: url("../font/Corporate-Logo-Bold-ver3-subset.woff2") format("woff2"), url("../font/Corporate-Logo-Bold-ver3-subset.woff") format("woff");
}
html {
  scroll-behavior: smooth;
  scroll-padding: 7.69vw;
}
@media (min-width: 769px) {
  html {
    scroll-padding: 90px;
  }
}

body {
  color: #1E293D;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 4.1vw;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media (min-width: 769px) {
  body {
    font-size: 16px;
    padding: 90px 0 0;
  }
}

button, input, select, textarea {
  border: none;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
}
button:focus, input:focus, select:focus, textarea:focus {
  outline: none;
}

button {
  cursor: pointer;
}

a {
  color: #1E293D;
  text-decoration: none;
  transition: 0.5s;
}
a:hover {
  color: #F08500;
}

img {
  height: auto;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.en {
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
}

.wrap {
  margin: 0 auto;
  padding: 0 7.69vw;
  width: 100%;
}
@media (min-width: 769px) {
  .wrap {
    max-width: calc(1200px + 60px);
    padding: 0 30px;
  }
}

.pc {
  display: none;
}
@media (min-width: 769px) {
  .pc {
    display: block;
  }
}

.pc2 {
  display: none;
}
@media (min-width: 1201px) {
  .pc2 {
    display: block;
  }
}

.sp {
  display: block;
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

.sptb {
  display: block;
}
@media (min-width: 769px) {
  .sptb {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1300px) {
  .sptb {
    display: block;
  }
}

.sptb2 {
  display: block;
}
@media (min-width: 769px) {
  .sptb2 {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .sptb2 {
    display: block;
  }
}

.tb {
  display: none;
}
@media (min-width: 769px) and (max-width: 1300px) {
  .tb {
    display: block;
  }
}

.tb2 {
  display: none;
}
@media (min-width: 769px) and (max-width: 1080px) {
  .tb2 {
    display: block;
  }
}
.tb2.sp {
  display: block;
}
@media (min-width: 769px) {
  .tb2.sp {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .tb2.sp {
    display: block;
  }
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.nav-common a {
  color: #fff;
  text-decoration: none;
}
.nav-common a:hover {
  color: #F08500;
  opacity: 1;
}
.nav-common .logo {
  left: 40px;
  position: absolute;
  top: 25px;
}
@media (min-width: 769px) {
  .nav-common .logo {
    left: 40px;
    width: 150px;
    top: 25px;
  }
}
.nav-common .btn-close {
  background-color: #fff;
  border-radius: 50%;
  bottom: 5.12vw;
  color: #1E293D;
  cursor: pointer;
  font-size: 2.3vw;
  height: 15.38vw;
  padding: 8.2vw 0 0;
  position: fixed;
  right: 5.12vw;
  text-align: center;
  width: 15.38vw;
}
@media (min-width: 769px) {
  .nav-common .btn-close {
    bottom: initial;
    height: 60px;
    font-size: 9px;
    padding: 32px 0 0;
    right: 40px;
    top: 15px;
    width: 60px;
  }
}
.nav-common .btn-close::before, .nav-common .btn-close::after {
  background-color: #1E293D;
  content: "";
  height: 0.25vw;
  left: 50%;
  position: absolute;
  top: 5.64vw;
  transform: translate(-50%, 0) rotate(30deg);
  width: 4.61vw;
}
@media (min-width: 769px) {
  .nav-common .btn-close::before, .nav-common .btn-close::after {
    height: 1px;
    top: 22px;
    width: 18px;
  }
}
.nav-common .btn-close::after {
  transform: translate(-50%, 0) rotate(-30deg);
}
.nav-common .whole {
  display: block;
  flex-direction: column;
  gap: 10.25vw;
}
@media (min-width: 769px) {
  .nav-common .whole {
    display: flex;
    gap: 40px;
    margin: 160px auto 0;
    max-width: 1200px;
  }
}
.nav-common .parent {
  font-size: 4.61vw;
}
@media (min-width: 769px) {
  .nav-common .parent {
    display: flex;
    font-size: 18px;
  }
}
.nav-common .head {
  display: block;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 768px) {
  .nav-common .head {
    cursor: pointer;
  }
}
@media (min-width: 769px) {
  .nav-common .head {
    width: 100px;
  }
}
.nav-common .head a,
.nav-common .head span {
  align-items: center;
  display: flex;
  flex-shrink: 0;
}
.nav-common .head a::before,
.nav-common .head span::before {
  background-color: #F08500;
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  display: block;
  height: 2.56vw;
  margin-right: 2.56vw;
  width: 2.05vw;
}
@media (min-width: 769px) {
  .nav-common .head a::before,
  .nav-common .head span::before {
    height: 10px;
    margin-right: 10px;
    width: 8px;
  }
}
.nav-common .head.active {
  color: #F08500;
}
@media (min-width: 769px) {
  .nav-common .service {
    gap: 95px 9.1%;
  }
}
@media (min-width: 769px) and (max-width: 1300px) {
  .nav-common .service {
    gap: 95px 3.7%;
  }
}
.nav-common .service .list {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  .nav-common .service .list {
    gap: 40px 5%;
    width: 100%;
  }
}
.nav-common .service .list dl {
  margin: 5.12vw 0 0;
  width: 100%;
}
@media (min-width: 769px) {
  .nav-common .service .list dl {
    margin: 0;
    max-width: 255px;
    padding: 0;
  }
}
.nav-common .service .list dl + dl {
  margin: 0;
}
.nav-common .service .list dt {
  align-items: center;
  border-bottom: 0.25vw solid rgba(255, 255, 255, 0.6);
  display: flex;
  font-size: 4.1vw;
  font-weight: 700;
  justify-content: space-between;
  padding: 3.58vw 0;
}
@media (min-width: 769px) {
  .nav-common .service .list dt {
    border-bottom: 1px solid #fff;
    font-size: 16px;
    padding: 0 0 10px;
  }
}
.nav-common .service .list dt .btn-link {
  color: #1E293D;
  font-size: 3.07vw;
  padding: 1.28vw 2.56vw;
  height: auto;
  min-width: auto;
}
@media (min-width: 769px) {
  .nav-common .service .list dt .btn-link {
    display: none;
  }
}
.nav-common .service .list dt .btn-link::after {
  height: 5.12vw;
  margin-left: 1.28vw;
  width: 5.12vw;
}
.nav-common .service .list dt .btn-link:hover {
  border: 0.25vw solid #fff;
  color: #fff;
}
.nav-common .service .list dd {
  font-size: 4.1vw;
  font-weight: 400;
  margin: 5.12vw 0;
}
@media (min-width: 769px) {
  .nav-common .service .list dd {
    font-size: 14px;
    margin: 15px 0 0;
  }
}
.nav-common .company {
  align-items: center;
}
@media (min-width: 769px) {
  .nav-common .company {
    gap: 95px 9.1%;
  }
}
@media (min-width: 769px) and (max-width: 1300px) {
  .nav-common .company {
    gap: 95px 3.7%;
  }
}
@media (min-width: 769px) {
  .nav-common .company .list {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .nav-common .company .list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 5px 0 0;
  }
}
.nav-common .company .list li {
  font-weight: 400;
  margin: 5.12vw 0;
}
@media (min-width: 769px) {
  .nav-common .company .list li {
    font-size: 14px;
    margin: 0;
  }
}
.nav-common .company .list .document,
.nav-common .company .list .contact {
  align-items: center;
  display: flex;
}
.nav-common .company .list .document svg,
.nav-common .company .list .contact svg {
  margin-right: 2.56vw;
  width: 5.12vw;
}
.nav-common .company .list .document svg path,
.nav-common .company .list .contact svg path {
  fill: #fff;
}
@media (max-width: 768px) {
  .nav-common .service .head::before, .nav-common .service .head::after,
  .nav-common .company .head::before,
  .nav-common .company .head::after {
    background-color: #fff;
    content: "";
    display: block;
    height: 0.25vw;
    position: absolute;
    right: 2.56vw;
    top: 50%;
    transform: translate(0, -50%);
    width: 2.82vw;
  }
}
.nav-common .service .head::after,
.nav-common .company .head::after {
  transform: translate(0, -50%) rotate(90deg);
}
.nav-common .service .head.active::after,
.nav-common .company .head.active::after {
  transform: translate(0, -50%) rotate(0);
}

.nav-global {
  background-color: #1E293D;
  color: #fff;
  font-weight: 700;
  height: 0;
  line-height: 1.4;
  left: 0;
  margin: 2.56vw;
  overflow-y: auto;
  padding: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 0;
  z-index: -1;
}
@media (min-width: 769px) {
  .nav-global {
    height: 100%;
    margin: 0;
    opacity: 0;
    padding: 25px 40px;
    transition: 0.2s;
    width: 100%;
  }
  .nav-global.active {
    opacity: 1;
    visibility: visible;
    z-index: 10000;
  }
}
@media (max-width: 768px) {
  .nav-global {
    border-radius: 1.28vw;
    bottom: 0;
    padding: 10.25vw 5.12vw;
    right: 0;
    transform: scale(0);
    transform-origin: 88% 95%;
    transition: 0.3s;
    height: calc(100% - 5.12vw);
    width: calc(100% - 5.12vw);
  }
  .nav-global.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    z-index: 10000;
  }
  .nav-global .parent {
    display: block;
  }
  .nav-global .parent:not(.service, .company) .head::after {
    background: url(../img/common/arrow-circle-small.svg) no-repeat 50% 50%/contain;
    content: "";
    display: block;
    height: 7.69vw;
    width: 7.69vw;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
  }
  .nav-global .head {
    border-bottom: 0.25vw solid #fff;
    padding: 5.12vw 0;
  }
  .nav-global .head a::before,
  .nav-global .head span::before {
    display: none;
  }
}

.nav-service,
.nav-blog {
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: 0.2s;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}
@media (min-width: 769px) {
  .nav-service,
  .nav-blog {
    padding: 60px 30px 0;
  }
}
.nav-service.active,
.nav-blog.active {
  display: block;
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
.nav-service .bg,
.nav-blog .bg {
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}
.nav-service .whole,
.nav-blog .whole {
  background-color: #1E293D;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 auto;
  position: relative;
  width: 100%;
  z-index: 999;
}
@media (min-width: 769px) {
  .nav-service .whole,
  .nav-blog .whole {
    border-radius: 20px;
    padding: 50px;
    max-width: 1300px;
    top: 60px;
  }
}
.nav-service .whole::before,
.nav-blog .whole::before {
  bottom: 100%;
  content: "";
  display: block;
  height: 50px;
  left: 0;
  position: absolute;
  width: 100%;
}
.nav-service .parent,
.nav-blog .parent {
  margin: 0 auto;
  gap: 0;
  justify-content: center;
  width: 100%;
}
.nav-service .head,
.nav-blog .head {
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .nav-service .head,
  .nav-blog .head {
    width: 155px;
  }
}
@media (min-width: 769px) {
  .nav-service .list,
  .nav-blog .list {
    border-left: 1px solid #fff;
    max-width: 920px;
    padding: 0 0 0 74px;
  }
}
.nav-service .list ul,
.nav-blog .list ul {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  .nav-service .list ul,
  .nav-blog .list ul {
    font-size: 16px;
    gap: 30px;
  }
}
@media (min-width: 769px) {
  .nav-service .list .nav-search,
  .nav-blog .list .nav-search {
    margin: 60px 0 0;
  }
}
.nav-service .list .nav-search .ttl,
.nav-blog .list .nav-search .ttl {
  align-items: center;
  display: flex;
}
@media (min-width: 769px) {
  .nav-service .list .nav-search .ttl,
  .nav-blog .list .nav-search .ttl {
    font-size: 20px;
  }
}
.nav-service .list .nav-search .ttl::before,
.nav-blog .list .nav-search .ttl::before {
  background: url(../img/common/ico-search-white.svg) no-repeat 50% 50%/contain;
  content: "";
  display: block;
}
@media (min-width: 769px) {
  .nav-service .list .nav-search .ttl::before,
  .nav-blog .list .nav-search .ttl::before {
    height: 20px;
    margin-right: 10px;
    width: 20px;
  }
}
.nav-service .list .nav-search .input,
.nav-blog .list .nav-search .input {
  font-weight: 500;
}
@media (min-width: 769px) {
  .nav-service .list .nav-search .input,
  .nav-blog .list .nav-search .input {
    margin: 20px 0 0;
  }
}
.nav-service .list .nav-search .input input,
.nav-blog .list .nav-search .input input {
  width: calc(100% - 120px);
}
@media (min-width: 769px) {
  .nav-service .list .nav-search .input input,
  .nav-blog .list .nav-search .input input {
    border-radius: 5px;
    height: 50px;
    margin-right: 10px;
    max-width: 450px;
    padding: 0 20px;
  }
}
.nav-service .list .nav-search .input input::placeholder,
.nav-blog .list .nav-search .input input::placeholder {
  color: #999;
  font-weight: 400;
}
@media (min-width: 769px) {
  .nav-service .list .nav-search .input input::placeholder,
  .nav-blog .list .nav-search .input input::placeholder {
    font-size: 16px;
  }
}
.nav-service .list .nav-search .input .btn-search,
.nav-blog .list .nav-search .input .btn-search {
  border: 1px solid #fff;
  background-color: #1E293D;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  transition: 0.5s;
  width: 100%;
}
@media (min-width: 769px) {
  .nav-service .list .nav-search .input .btn-search,
  .nav-blog .list .nav-search .input .btn-search {
    border-width: 1px;
    border-radius: 5px;
    font-size: 16px;
    height: 50px;
    max-width: 100px;
  }
}
.nav-service .list .nav-search .input .btn-search:hover,
.nav-blog .list .nav-search .input .btn-search:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header {
  box-shadow: 0 0 3.84vw rgba(0, 0, 0, 0.1);
  width: 100%;
  z-index: 1000;
}
@media (min-width: 769px) {
  .header {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    left: 0;
    position: fixed;
    top: 0;
  }
}
.header .wrap {
  align-items: center;
  background-color: #fff;
  display: flex;
  height: 17.94vw;
  justify-content: center;
}
@media (min-width: 769px) {
  .header .wrap {
    height: 90px;
    justify-content: space-between;
    max-width: none;
    padding: 0 40px;
  }
}
@media (min-width: 769px) and (max-width: 1300px) {
  .header .wrap {
    padding: 0 30px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .header .wrap {
    padding: 0 20px;
  }
}
.header a {
  color: #1E293D;
  text-decoration: none;
}
.header a:hover {
  color: #F08500;
}
.header .logo {
  transition: 0.5s;
  width: 30.76vw;
}
@media (min-width: 769px) {
  .header .logo {
    width: 160px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .header .logo {
    width: 120px;
  }
}
.header .logo:hover {
  opacity: 0.7;
}
.header .nav {
  display: none;
}
@media (min-width: 769px) {
  .header .nav {
    align-items: center;
    display: flex;
    font-weight: 700;
    margin-left: auto;
  }
}
.header .nav ul {
  list-style: none;
  padding: 0;
}
@media (min-width: 769px) {
  .header .nav ul {
    align-items: center;
    display: flex;
    gap: 0 40px;
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1300px) {
  .header .nav ul {
    gap: 0 30px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .header .nav ul {
    gap: 0 15px;
  }
}
.header .nav li {
  line-height: 1.3;
}
@media (min-width: 769px) and (max-width: 1080px) {
  .header .nav li {
    font-size: 14px;
  }
}
.header .nav li a {
  align-items: center;
  cursor: pointer;
  display: flex;
}
.header .nav li a:hover span::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.header .nav li a span {
  position: relative;
}
.header .nav li a span::after {
  background-color: #1E293D;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.2s;
  width: 100%;
}
.header .nav li [class*=btn-] {
  display: flex;
}
.header .nav li [class*=btn-].active i::after {
  display: none;
}
.header .nav li [class*=btn-] i {
  display: block;
  height: 10px;
  position: relative;
  width: 15px;
}
.header .nav li [class*=btn-] i::before, .header .nav li [class*=btn-] i::after {
  background-color: #1E293D;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 10px;
}
.header .nav li [class*=btn-] i::after {
  transform: translate(0, -50%) rotate(90deg);
}
@media (min-width: 769px) and (max-width: 1080px) {
  .header .nav li [class*=btn-] i {
    width: 12px;
  }
}
.header .nav li .document,
.header .nav li .contact {
  align-items: center;
  background-color: #1E293D;
  border: 0.25vw solid #1E293D;
  border-radius: 9999px;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  padding: 2.56vw 7.69vw;
  text-decoration: none;
  transition: 0.5s;
}
@media (min-width: 769px) {
  .header .nav li .document,
  .header .nav li .contact {
    border-width: 1px;
    padding: 10px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .header .nav li .document,
  .header .nav li .contact {
    height: 60px;
  }
}
.header .nav li .document:hover,
.header .nav li .contact:hover {
  background-color: #fff;
  color: #1E293D;
  opacity: 1;
}
.header .nav li .document:hover .ico-mail,
.header .nav li .contact:hover .ico-mail {
  fill: #1E293D;
}
.header .nav li .document::after,
.header .nav li .document span::after,
.header .nav li .contact::after,
.header .nav li .contact span::after {
  content: none;
}
.header .nav li .document #ico-download,
.header .nav li .document #ico-mail,
.header .nav li .contact #ico-download,
.header .nav li .contact #ico-mail {
  margin-right: 10px;
  width: 20px;
}
.header .nav li .document .ico-download,
.header .nav li .document .ico-mail,
.header .nav li .contact .ico-download,
.header .nav li .contact .ico-mail {
  fill: #fff;
  transition: 0.5s;
}
@media (min-width: 769px) and (max-width: 1080px) {
  .header .nav li .document .dot,
  .header .nav li .contact .dot {
    display: none;
  }
}
.header .nav li .document {
  background-color: #F08500;
  border-color: #F08500;
  color: #fff;
}
.header .nav li .document:hover {
  border-color: #1E293D;
}
.header .nav li .document:hover .ico-mail {
  fill: #fff;
}
.header .nav li .document:hover .ico-download {
  fill: #1E293D;
}
.float-nav {
  display: block;
  position: fixed;
  transition: 0.5s;
  z-index: 100000;
}
@media (max-width: 768px) {
  .float-nav {
    bottom: 5.12vw;
    right: 5.12vw;
  }
}
@media (min-width: 769px) {
  .float-nav {
    display: none;
    right: 40px;
    top: 15px;
  }
}
@media (max-width: 768px) {
  .float-nav.scrolldown {
    opacity: 0.3;
  }
}

.float-nav-contact {
  bottom: 5.12vw;
  display: none;
  left: 0;
  position: fixed;
  z-index: 9000;
}
@media (min-width: 769px) {
  .float-nav-contact {
    bottom: 63px;
    display: block;
  }
}
.float-nav-contact.hide {
  z-index: 1;
}
.float-nav-contact.hide a {
  transform: translateY(150%);
}

.footer .fnav {
  line-height: 1.4;
}
.footer .fnav a {
  color: #1E293D;
}
.footer .fnav a:hover {
  color: #F08500;
  opacity: 1;
}
@media (max-width: 768px) {
  .footer .fnav .head {
    margin: 10.25vw 0 0;
  }
}
.footer .fnav .head a,
.footer .fnav .head span {
  font-weight: 700;
}
@media (max-width: 768px) {
  .footer .fnav .service .list {
    margin-left: 5.12vw;
  }
}
@media (max-width: 768px) {
  .footer .fnav .service .list dl {
    margin: 2.56vw 0 0;
  }
}
@media (max-width: 768px) {
  .footer .fnav .service .list dl + dl {
    margin: 5.12vw 0 0;
  }
}
.footer .fnav .service .list dt {
  border-color: #1E293D;
}
@media (max-width: 768px) {
  .footer .fnav .service .list dt {
    cursor: pointer;
    font-size: 4.1vw;
    padding: 3.84vw 0;
    position: relative;
  }
}
@media (max-width: 768px) {
  .footer .fnav .service .list dt::before, .footer .fnav .service .list dt::after {
    background-color: #1E293D;
    content: "";
    display: block;
    height: 0.25vw;
    position: absolute;
    right: 2.56vw;
    top: 50%;
    transform: translate(0, -50%);
    width: 2.82vw;
  }
}
.footer .fnav .service .list dt::after {
  transform: translate(0, -50%) rotate(90deg);
}
.footer .fnav .service .list dt.active {
  color: #F08500;
}
.footer .fnav .service .list dt.active::after {
  transform: translate(0, -50%) rotate(0);
}
.footer .fnav .service .list dt .btn-link {
  display: none;
}
@media (max-width: 768px) {
  .footer .fnav .service .list dd {
    font-size: 4.1vw;
    margin: 3.84vw 0 0;
  }
}
@media (max-width: 768px) {
  .footer .fnav .company .list {
    font-size: 4.1vw;
    margin-left: 5.12vw;
  }
  .footer .fnav .company .list li {
    margin: 3.84vw 0 0;
  }
}
.footer .fnav.nav-common .company .list .document svg,
.footer .fnav.nav-common .company .list .contact svg {
  display: none;
}
.footer .finfo {
  box-shadow: 0 0 3.84vw rgba(0, 0, 0, 0.1);
  font-style: normal;
  line-height: 1.66;
  margin: 10.25vw 0 0;
  padding: 7.69vw 5.12vw;
}
@media (min-width: 769px) {
  .footer .finfo {
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    margin: 80px 0 0;
    padding: 30px;
  }
}
.footer .finfo .logo {
  flex-shrink: 0;
  margin: 0 auto;
  width: 35.89vw;
}
@media (min-width: 769px) {
  .footer .finfo .logo {
    width: 124px;
  }
}
@media (max-width: 768px) {
  .footer .finfo .address {
    font-size: 3.84vw;
    margin: 5.12vw 0 0;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .footer .finfo .address {
    margin: 0 0 0 40px;
  }
}
@media (max-width: 768px) {
  .footer .finfo .address span {
    display: block;
  }
}
@media (min-width: 769px) {
  .footer .finfo .address span {
    display: inline-block;
    margin-right: 1em;
  }
}
@media (max-width: 768px) {
  .footer .finfo .contact {
    margin: 5.12vw 0 0;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .footer .finfo .contact {
    flex-shrink: 0;
    margin-left: auto;
  }
}
.footer .finfo .contact .btn-link {
  padding: 2.56vw 2.56vw 2.56vw 7.69vw;
}
@media (min-width: 769px) {
  .footer .finfo .contact .btn-link {
    padding: 0 10px 0 30px;
  }
}
.footer .finfo .contact .btn-link::after {
  margin-left: 3.84vw;
}
@media (min-width: 769px) {
  .footer .finfo .contact .btn-link::after {
    background-size: 8px auto;
    height: 30px;
    margin-left: 15px;
    right: 10px;
    width: 30px;
  }
}
.footer .fnav2 {
  align-items: center;
  background-color: #F2F4F8;
  display: flex;
  font-size: 3.07vw;
  font-weight: 400;
  margin: 20.51vw 0 0;
  padding: 5.12vw 0 25.64vw;
  text-align: center;
}
@media (min-width: 769px) {
  .footer .fnav2 {
    font-size: 14px;
    margin: 90px 0 0;
    padding: 15px 0;
  }
}
.footer .fnav2 .wrap {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 769px) {
  .footer .fnav2 .wrap {
    align-items: center;
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .footer .fnav2 .copyright {
    order: 2;
  }
}
@media (min-width: 769px) {
  .footer .fnav2 .copyright {
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .footer .fnav2 .privacy {
    order: 1;
  }
}
.footer .fnav2 .privacy a {
  text-decoration: underline;
}
.footer .fnav2 .privacy a:hover {
  text-decoration: none;
}
.footer .fnav2 .pagetop .btn-link {
  border: none;
  font-weight: 500;
}
@media (max-width: 768px) {
  .footer .fnav2 .pagetop .btn-link {
    height: 10.25vw;
    padding: 0 3.84vw;
    position: absolute;
    right: 0;
    top: -15.39vw;
  }
}
@media (min-width: 769px) {
  .footer .fnav2 .pagetop .btn-link {
    font-size: 12px;
    height: 40px;
    margin-left: 25px;
    min-width: 0;
    padding: 0 15px;
  }
}
.footer .fnav2 .pagetop .btn-link:hover {
  background-color: transparent;
  color: #F08500;
}
.footer .fnav2 .pagetop .btn-link::after {
  transform: rotate(-90deg);
}
@media (max-width: 768px) {
  .footer .fnav2 .pagetop .btn-link::after {
    height: 5.12vw;
    margin-left: 1.28vw;
    width: 5.12vw;
  }
}
@media (min-width: 769px) {
  .footer .fnav2 .pagetop .btn-link::after {
    margin-left: 5px;
  }
}

.breadcrumbs {
  overflow-x: auto;
  padding: 2.56vw 0;
}
@media (min-width: 769px) {
  .breadcrumbs {
    padding: 10px 0;
  }
}
.breadcrumbs a {
  color: #1E293D;
  text-decoration: underline;
}
.breadcrumbs a:hover {
  text-decoration: none;
}
.breadcrumbs ul {
  display: flex;
  list-style: none;
}
.breadcrumbs li {
  flex-shrink: 0;
  font-size: 3.07vw;
  font-weight: 400;
}
@media (min-width: 769px) {
  .breadcrumbs li {
    font-size: 14px;
  }
}
.breadcrumbs li + li {
  align-items: center;
  display: flex;
}
.breadcrumbs li + li::before {
  background: url(../img/common/arrow-breadcrumbs.svg) no-repeat 50% 50%/contain;
  content: "";
  display: block;
  height: 2.05vw;
  margin: 0 2.56vw;
  width: 1.28vw;
}
@media (min-width: 769px) {
  .breadcrumbs li + li::before {
    height: 10px;
    margin: 0 10px;
    width: 10px;
  }
}
.breadcrumbs li:last-child {
  padding-right: 10.25vw;
}
@media (min-width: 769px) {
  .breadcrumbs li:last-child {
    padding-right: 40px;
  }
}

.ttl-sec {
  font-size: 6.66vw;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 10.25vw;
  text-align: center;
}
@media (min-width: 769px) {
  .ttl-sec {
    font-size: 32px;
    line-height: 1.45;
    margin: 0 0 40px;
  }
}
.ttl-sec .en {
  display: block;
  font-size: 4.1vw;
  margin: 0 0 1.28vw;
  text-align: center;
}
@media (min-width: 769px) {
  .ttl-sec .en {
    font-size: 20px;
    margin: 0 0 10px;
  }
}

.ttl-line {
  align-items: center;
  display: flex;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 3.58vw;
  font-weight: 700;
  letter-spacing: 0;
}
@media (min-width: 769px) {
  .ttl-line {
    font-size: 20px;
  }
}
.ttl-line::before {
  aspect-ratio: 0.8660254038;
  background: #F08500;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  height: 2.56vw;
  margin-right: 2.56vw;
}
@media (min-width: 769px) {
  .ttl-line::before {
    height: 10px;
    margin-right: 10px;
  }
}
.ttl-line::after {
  background-color: #1E293D;
  content: "";
  display: block;
  flex-grow: 1;
  height: 0.25vw;
  margin-left: 2.56vw;
  max-width: 25.64vw;
}
@media (min-width: 769px) {
  .ttl-line::after {
    height: 1px;
    margin-left: 10px;
    max-width: 200px;
  }
}
.ttl-line span {
  flex-shrink: 0;
}

.lead-sec {
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 769px) {
  .lead-sec {
    font-size: 20px;
  }
}

.btn-wrap {
  text-align: center;
}
@media (min-width: 769px) {
  .btn-wrap {
    margin: 30px 0 0;
  }
}

.btn-nav,
.btn-header-contact {
  background-color: #1E293D;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 2.3vw;
  height: 15.38vw;
  position: relative;
  text-align: center;
  padding: 7.17vw 0 0;
  width: 15.38vw;
}
@media (min-width: 769px) {
  .btn-nav,
  .btn-header-contact {
    font-size: 9px;
    height: 60px;
    margin-left: 50px;
    padding: 28px 0 0;
    width: 60px;
  }
}

.btn-nav::before, .btn-nav::after {
  background-color: #fff;
  content: "";
  height: 0.25vw;
  left: 50%;
  position: absolute;
  top: 4.87vw;
  transform: translate(-50%, 0);
  width: 4.61vw;
}
@media (min-width: 769px) {
  .btn-nav::before, .btn-nav::after {
    height: 1px;
    top: 19px;
    width: 18px;
  }
}
.btn-nav::after {
  top: 6.41vw;
}
@media (min-width: 769px) {
  .btn-nav::after {
    top: 25px;
  }
}
.btn-nav.active {
  background-color: #fff;
  color: #1E293D;
}
.btn-nav.active::before, .btn-nav.active::after {
  background-color: #1E293D;
  content: "";
  height: 0.25vw;
  left: 50%;
  position: absolute;
  top: 5.64vw;
  transform: translate(-50%, 0) rotate(30deg);
  width: 4.61vw;
}
@media (min-width: 769px) {
  .btn-nav.active::before, .btn-nav.active::after {
    height: 1px;
    top: 22px;
    width: 18px;
  }
}
.btn-nav.active::after {
  transform: translate(-50%, 0) rotate(-30deg);
}

.btn-header-contact {
  overflow: hidden;
  padding: 15px 0 0;
}
@media (max-width: 768px) {
  .btn-header-contact {
    display: none;
  }
}
.btn-header-contact:hover {
  background-color: #fff;
  border: 1px solid #1E293D;
}
.btn-header-contact:hover .ico-mail {
  fill: #1E293D;
}
.btn-header-contact:hover span {
  color: #1E293D;
}
.btn-header-contact #ico-mail {
  margin: 0 auto;
  width: 20px;
}
.btn-header-contact span {
  color: #fff;
}

.btn-nav-contact {
  overflow: hidden;
}
@media (min-width: 769px) {
  .btn-nav-contact {
    padding: 10px 20px;
  }
}
.btn-nav-contact a {
  background-color: #1E293D;
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.5;
  padding: 10px 20px 15px;
  position: relative;
  text-align: center;
  transition: 0.5s;
}
.btn-nav-contact a:hover {
  opacity: 0.7;
}
.btn-nav-contact a b {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.btn-nav-contact a span {
  border-bottom: 1px solid #fff;
  display: inline-flex;
}

.btn-link,
.btn-link-b,
.btn-link-down,
.btn-contact,
.btn-contact-lp {
  align-items: center;
  background-color: #fff;
  border: 0.25vw solid #1E293D;
  border-radius: 9999px;
  color: #1E293D;
  display: inline-flex;
  font-weight: 500;
  justify-content: center;
  padding: 2.56vw 7.69vw;
  text-decoration: none;
}
@media (min-width: 769px) {
  .btn-link,
  .btn-link-b,
  .btn-link-down,
  .btn-contact,
  .btn-contact-lp {
    border-width: 1px;
    height: 52px;
    min-width: 170px;
    padding: 15px 30px;
  }
}
.btn-link span,
.btn-link-b span,
.btn-link-down span,
.btn-contact span,
.btn-contact-lp span {
  line-height: 1.1;
}
@media (min-width: 769px) {
  .btn-link span,
  .btn-link-b span,
  .btn-link-down span,
  .btn-contact span,
  .btn-contact-lp span {
    margin: -2px 0 0;
  }
}
.btn-link:hover,
.btn-link-b:hover,
.btn-link-down:hover,
.btn-contact:hover,
.btn-contact-lp:hover {
  background-color: #1E293D;
  color: #fff;
  opacity: 1;
}
.btn-link::after,
.btn-link-b::after,
.btn-link-down::after,
.btn-contact::after,
.btn-contact-lp::after {
  background: #fff url(../img/common/arrow.svg) no-repeat 50% 50%/1.92vw auto;
  border: 1px solid #1E293D;
  border-radius: 50%;
  content: "";
  display: block;
  height: 7.69vw;
  margin-left: 2.56vw;
  width: 7.69vw;
}
@media (min-width: 769px) {
  .btn-link::after,
  .btn-link-b::after,
  .btn-link-down::after,
  .btn-contact::after,
  .btn-contact-lp::after {
    background-size: 6px auto;
    border-width: 1px;
    height: 16px;
    margin-left: 10px;
    width: 16px;
  }
}

.btn-link-down {
  position: relative;
}
@media (min-width: 769px) {
  .btn-link-down {
    padding: 15px 55px 15px 20px;
  }
}
.btn-link-down::after {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: rotate(90deg) translate(-50%, 0);
  transform-origin: center;
}
@media (min-width: 769px) {
  .btn-link-down::after {
    background-size: 8px auto;
    height: 30px;
    right: 10px;
    width: 30px;
  }
}
.btn-link-down:hover {
  background-color: #1E293D;
  color: #fff;
}

.btn-contact {
  font-weight: 700;
}
@media (min-width: 769px) {
  .btn-contact {
    border-radius: 35px;
    font-size: 20px;
    height: 70px;
    padding: 0 20px 0 40px;
  }
}
@media (min-width: 769px) {
  .btn-contact::after {
    background-size: 12px;
    height: 32px;
    margin-left: 20px;
    width: 32px;
  }
}

.btn-contact-lp {
  background-image: linear-gradient(to right, #FF6736, #F08500);
  border: none;
  color: #fff;
  font-size: 4.61vw;
  font-weight: 700;
  height: 24.1vw;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 769px) {
  .btn-contact-lp {
    font-size: 24px;
    height: 120px;
    max-width: 500px;
    padding: 0 20px;
  }
}
.btn-contact-lp span {
  position: relative;
  z-index: 2;
}
.btn-contact-lp::before {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: 0.5s;
  width: 100%;
  z-index: 1;
}
.btn-contact-lp::after {
  background-size: 3.07vw auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 769px) {
  .btn-contact-lp::after {
    background-size: 12px auto;
    height: 32px;
    margin-left: 20px;
    width: 32px;
  }
}
.btn-contact-lp:hover::before {
  background-color: #1E293D;
}

@media (min-width: 769px) {
  .btn-link-b::after {
    background-size: 7.5px auto;
    height: 30px;
    width: 30px;
  }
}

.txt-link {
  align-items: center;
  color: #1E293D;
  display: inline-flex;
  font-size: 3.07vw;
  justify-content: center;
  text-decoration: none;
}
@media (min-width: 769px) {
  .txt-link {
    font-size: 16px;
  }
}
.txt-link span {
  line-height: 1.1;
}
@media (min-width: 769px) {
  .txt-link span {
    margin: -2px 0 0;
  }
}
.txt-link:hover {
  color: #F08500;
  opacity: 1;
}
.txt-link::after {
  background: #fff url(../img/common/arrow.svg) no-repeat 50% 50%/1.53vw auto;
  border: 1px solid #1E293D;
  border-radius: 50%;
  content: "";
  display: block;
  height: 4.1vw;
  margin-left: 1.28vw;
  width: 4.1vw;
}
@media (min-width: 769px) {
  .txt-link::after {
    background-size: 6px auto;
    border-width: 1px;
    height: 16px;
    margin-left: 10px;
    width: 16px;
  }
}

.article-card {
  position: relative;
}
@media (min-width: 769px) {
  .article-card {
    max-width: 360px;
    padding-top: 5px;
  }
}
.article-card a {
  color: #1E293D;
  display: block;
}
.article-card a > * {
  transition: 0.5s;
}
.article-card a:hover .date,
.article-card a:hover .purpose,
.article-card a:hover .ttl,
.article-card a:hover .info,
.article-card a:hover .ttl2,
.article-card a:hover .summary {
  opacity: 0.7;
}
.article-card a:hover .thumb img {
  transform: scale(1.05);
}
.article-card .card {
  padding-bottom: 12.82vw;
}
@media (min-width: 769px) {
  .article-card .card {
    padding-bottom: 70px;
  }
}
.article-card .thumb {
  border: 1px solid #BEBEBE;
  overflow: hidden;
}
.article-card .thumb img {
  transition: 0.3s;
}
.article-card .date {
  color: #909090;
  font-size: 3.58vw;
  font-weight: 400;
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .article-card .date {
    font-size: 14px;
    margin: 20px 0 0;
  }
}
.article-card .purpose {
  font-size: 2.82vw;
  font-weight: 500;
  margin: 2.56vw 0 0;
}
@media (min-width: 769px) {
  .article-card .purpose {
    font-size: 12px;
    margin: 10px 0 0;
  }
}
.article-card .ttl {
  font-size: 4.61vw;
  font-weight: 700;
  line-height: 1.6;
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .article-card .ttl {
    font-size: 18px;
    margin: 20px 0 0;
  }
}
.article-card .ttl2 {
  font-size: 5.64vw;
  font-weight: 700;
  line-height: 1.6;
  margin: 1.28vw 0 0;
}
@media (min-width: 769px) {
  .article-card .ttl2 {
    font-size: 22px;
    margin: 5px 0 0;
  }
}
.article-card .summary {
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  margin: 3.84vw 0 0;
}
@media (min-width: 769px) {
  .article-card .summary {
    margin: 15px 0 0;
  }
}
.article-card .info {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.article-card .author {
  align-items: center;
  display: flex;
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .article-card .author {
    margin: 20px 0 0;
  }
}
.article-card .author .img {
  border-radius: 50%;
  height: 12.82vw;
  overflow: hidden;
  width: 12.82vw;
}
@media (min-width: 769px) {
  .article-card .author .img {
    height: 50px;
    width: 50px;
  }
}
.article-card .author .img img {
  width: 100%;
}
.article-card .author .name {
  font-size: wv(14);
  margin-left: 3.84vw;
}
@media (min-width: 769px) {
  .article-card .author .name {
    font-size: 14px;
    margin-left: 15px;
  }
}
.article-card .btn {
  align-items: center;
  border-radius: 3.58vw;
  bottom: 1.28vw;
  background-color: #F2F4F8;
  display: inline-flex;
  font-size: 3.07vw;
  height: 7.17vw;
  left: 0;
  padding: 0 3.84vw;
  position: absolute;
  width: auto;
  z-index: 2;
}
@media (min-width: 769px) {
  .article-card .btn {
    border-radius: 15px;
    bottom: 20px;
    font-size: 14px;
    height: 30px;
    padding: 0 15px;
  }
}
.article-card .btn:hover {
  background-color: #1E293D;
  color: #fff;
  opacity: 1;
}

.articles {
  margin: 15.38vw 0 0;
}
@media (min-width: 769px) {
  .articles {
    margin: 120px 0 0;
  }
}
.articles .list {
  display: flex;
  flex-wrap: wrap;
  gap: 10.25vw;
}
@media (min-width: 769px) {
  .articles .list {
    gap: 45px 5%;
  }
}
.articles .list .article-card {
  width: 100%;
}
@media (min-width: 769px) {
  .articles .list .article-card {
    max-width: 360px;
    width: 30%;
  }
}

.pager {
  display: flex;
  gap: 2.56vw;
  justify-content: center;
  margin: 10.25vw 0;
}
@media (min-width: 769px) {
  .pager {
    gap: 10px;
    margin: 120px 0;
  }
}
.pager a,
.pager span {
  align-items: center;
  border: 1px solid #1E293D;
  border-radius: 50%;
  color: #1E293D;
  display: flex;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 4.1vw;
  height: 10.25vw;
  justify-content: center;
  width: 10.25vw;
}
@media (min-width: 769px) {
  .pager a,
  .pager span {
    font-size: 14px;
    height: 50px;
    width: 50px;
  }
}
.pager a:hover,
.pager .current {
  background-color: #1E293D;
  color: #fff;
  opacity: 1;
}
.pager .arrow {
  font-size: 180%;
  font-weight: 400;
}
@media (min-width: 769px) {
  .pager .arrow {
    padding-bottom: 4px;
  }
}
.pager .arrow img {
  height: 2.05vw;
}
@media (min-width: 769px) {
  .pager .arrow img {
    height: 10px;
    margin-bottom: -4px;
  }
}
.pager .dots,
.pager .num {
  border: none;
}
.pager .num {
  margin: 0 auto;
  width: auto;
}
.pager .first,
.pager .last,
.pager .prev,
.pager .next {
  overflow: hidden;
  text-indent: -1000%;
}
.pager .first,
.pager .last {
  background: url(../img/common/arrow-pager-double.svg) no-repeat 50% 50%/3.07vw auto;
}
@media (min-width: 769px) {
  .pager .first,
  .pager .last {
    background-size: 12px auto;
  }
}
.pager .first:hover,
.pager .last:hover {
  background-image: url(../img/common/arrow-pager-double-white.svg);
}
.pager .prev,
.pager .next {
  background: url(../img/common/arrow-pager.svg) no-repeat 50% 50%/1.79vw auto;
}
@media (min-width: 769px) {
  .pager .prev,
  .pager .next {
    background-size: 8px auto;
  }
}
.pager .prev:hover,
.pager .next:hover {
  background-image: url(../img/common/arrow-pager-white.svg);
}
.pager .last,
.pager .next {
  transform: rotate(180deg);
}

.common-kv {
  background: url(../img/case/kv-bg-sp.jpg) no-repeat 50% 50%/cover;
}
@media (min-width: 769px) {
  .common-kv {
    background-image: url(../img/case/kv-bg.jpg);
  }
}
@media (max-width: 768px) {
  .common-kv .wrap {
    padding: 11.53vw 7.69vw 10.25vw;
  }
}
@media (min-width: 769px) {
  .common-kv .wrap {
    align-items: center;
    display: flex;
    height: 400px;
  }
}
.common-kv .line {
  align-items: center;
  display: flex;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 3.58vw;
  font-weight: 700;
}
@media (min-width: 769px) {
  .common-kv .line {
    font-size: 18px;
  }
}
.common-kv .line::before {
  aspect-ratio: 0.8660254038;
  background: #1E293D;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  height: 2.56vw;
  margin-right: 2.56vw;
  width: 2.56vw;
}
@media (min-width: 769px) {
  .common-kv .line::before {
    height: 10px;
    margin-right: 10px;
    width: 10px;
  }
}
.common-kv .line::after {
  background-color: #1E293D;
  content: "";
  display: block;
  height: 1px;
  margin-left: 2.56vw;
  max-width: 25.64vw;
  width: 100%;
}
@media (min-width: 769px) {
  .common-kv .line::after {
    margin-left: 10px;
    max-width: 150px;
  }
}
.common-kv .ttl {
  font-size: 9.23vw;
  line-height: 1;
}
@media (min-width: 769px) {
  .common-kv .ttl {
    font-size: 42px;
  }
}
.common-kv .ttl span {
  display: block;
  font-size: 4.61vw;
  margin: 5.12vw 0 2.56vw;
}
@media (min-width: 769px) {
  .common-kv .ttl span {
    font-size: 20px;
    margin: 25px 0 20px;
  }
}
.common-kv .img {
  margin: 7.69vw auto 0;
  width: 64.1vw;
}
@media (min-width: 769px) {
  .common-kv .img {
    margin: 0 0 0 auto;
    width: 448px;
  }
}
.common-kv p {
  font-size: 3.58vw;
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .common-kv p {
    font-size: 16px;
    margin: 30px 0 0;
  }
}

.common-articles {
  padding: 0 0 17.94vw;
}
@media (min-width: 769px) {
  .common-articles {
    padding: 0 0 80px;
  }
}
@media (max-width: 768px) {
  .common-articles .common-slider {
    margin-left: -7.7vw;
  }
}
@media (max-width: 768px) {
  .common-articles .article-card {
    margin: 0 3.84vw;
    max-width: 73.07vw;
  }
}
@media (min-width: 769px) {
  .common-articles .article-card {
    margin: 0 22px;
  }
}
.common-articles .slider-arrow {
  align-items: center;
  background-color: #1E293D;
  border-radius: 50%;
  bottom: -15.39vw;
  cursor: pointer;
  display: flex;
  height: 10.25vw;
  justify-content: center;
  position: absolute;
  right: 38.46vw;
  transition: 0.5s;
  width: 10.25vw;
  z-index: 10;
}
@media (min-width: 769px) {
  .common-articles .slider-arrow {
    bottom: -60px;
    height: 40px;
    right: 140px;
    width: 40px;
  }
}
.common-articles .slider-arrow:hover {
  background-color: #fff;
  border: 0.25vw solid #1E293D;
}
@media (min-width: 769px) {
  .common-articles .slider-arrow:hover {
    border-width: 1px;
  }
}
.common-articles .slider-arrow:hover::after {
  background-image: url(../img/common/arrow.svg);
}
.common-articles .slider-arrow::after {
  background: url(../img/common/arrow-white.svg) no-repeat 50% 50%/contain;
  content: "";
  display: block;
  height: 2.56vw;
  width: 2.56vw;
}
@media (min-width: 769px) {
  .common-articles .slider-arrow::after {
    height: 10px;
    width: 10px;
  }
}
.common-articles .slider-arrow.prev {
  right: 51.28vw;
  transform: rotate(180deg);
}
@media (min-width: 769px) {
  .common-articles .slider-arrow.prev {
    right: 190px;
  }
}
.common-articles .slick-prev {
  border: 1px solid #000;
  bottom: 0;
  left: initial;
  right: 50px;
}
.common-articles .slick-next {
  border: 1px solid #000;
  bottom: 0;
  right: 0px;
}
@media (max-width: 768px) {
  .common-articles.case .article-card .card {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .common-articles.case .article-card .purpose {
    font-size: 2.56vw;
  }
}
@media (max-width: 768px) {
  .common-articles.case .article-card .ttl2 {
    font-size: 4.61vw;
  }
}
@media (max-width: 768px) {
  .common-articles.case .article-card .summary {
    font-size: 3.58vw;
  }
}

.common-contact {
  background: url(../img/common/bg-common-contact.jpg) no-repeat 50% 50%/cover;
  padding: 10.25vw 0;
  overflow: hidden;
}
@media (min-width: 769px) {
  .common-contact {
    padding: 80px 0;
  }
}
.common-contact .lead {
  color: #fff;
  font-size: 4.61vw;
  font-weight: 700;
  margin: 0 0 5.12vw;
  text-align: center;
}
@media (min-width: 769px) {
  .common-contact .lead {
    font-size: 18px;
    margin: 0 0 40px;
  }
}
@media (min-width: 769px) {
  .common-contact .wrap {
    max-width: 1340px;
  }
}
.common-contact .common-form {
  width: 100%;
  /*
  .progress {
  	display: flex;
  	gap: vw(10);//vw(5)
  	justify-content: center;
  	margin: 15px 0 0;
  	@include pc {
  		flex-direction: column;
  		gap: 10px;//5px
  		margin: 0 0 0 10px;
  		width: 10px;//6px
  	}
  	.dot {
  		background-color: #fff;
  		border-radius: 9999px;
  		display: block;
  		height: vw(10);//vw(6)
  		transition: .5s;
  		width: vw(10);//vw(6)
  		@include pc {
  			height: 10px;//6px
  			width: 10px;//6px
  		}
  		&.current {
  			background-color: $c-base;
  			width: vw(40);
  			@include pc {
  				height: 40px;
  				width: auto;
  			}
  		}
  	}
  }
  */
}
@media (min-width: 769px) {
  .common-contact .common-form {
    display: flex;
    min-height: 160px;
  }
}
.common-contact .common-form p {
  text-align: left;
}
.common-contact .common-form .head {
  background-color: #1E293D;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  color: #fff;
  flex-shrink: 0;
  padding: 5.12vw 7.69vw 7.69vw;
  position: relative;
  z-index: 4;
}
@media (min-width: 769px) {
  .common-contact .common-form .head {
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 50%, calc(100% - 40px) 100%, 0 100%);
    margin-right: -40px;
    max-width: 320px;
    padding: 30px 40px 30px 40px;
    width: 25.5%;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .common-contact .common-form .head {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    margin: 0 -20px 0 0;
    padding: 20px 20px;
    width: 22.2%;
  }
}
.common-contact .common-form .head .ttl {
  align-items: center;
  display: flex;
  font-size: 5.12vw;
  font-weight: 600;
  line-height: 1;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .common-contact .common-form .head .ttl {
    font-size: 18px;
    max-width: none;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .common-contact .common-form .head .ttl {
    font-size: 16px;
  }
}
.common-contact .common-form .head .ttl::after {
  background-color: #fff;
  content: "";
  flex-grow: 1;
  height: 0.25vw;
  margin-left: 3.84vw;
}
@media (min-width: 769px) {
  .common-contact .common-form .head .ttl::after {
    height: 1px;
    margin-left: 15px;
  }
}
.common-contact .common-form .head p {
  font-size: 3.58vw;
  font-weight: 400;
  line-height: 1.5;
  margin: 2.56vw 0 0;
  text-align: center;
}
@media (min-width: 769px) {
  .common-contact .common-form .head p {
    font-size: 14px;
    margin: 15px 0 0;
    text-align: left;
  }
}
.common-contact .common-form .step {
  background-color: rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.1));
  margin: -7.7vw 0 0;
  padding: 12.82vw 6.41vw 6.41vw;
  position: relative;
  z-index: 3;
}
@media (min-width: 769px) {
  .common-contact .common-form .step {
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 50%, calc(100% - 40px) 100%, 0 100%);
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.1));
    flex-grow: 1;
    margin: 0 -40px 0 0;
    padding: 20px 60px;
    width: 61.9%;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .common-contact .common-form .step {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    margin: 0 -20px 0 0;
    padding: 20px 30px;
  }
}
.common-contact .common-form .step .ttl {
  align-items: baseline;
  color: #F08500;
  display: flex;
  line-height: 1.3;
  position: relative;
}
.common-contact .common-form .step .ttl .en {
  align-items: baseline;
  display: flex;
}
.common-contact .common-form .step .ttl .en span {
  align-items: center;
  display: flex;
  font-size: 3.58vw;
}
@media (min-width: 769px) {
  .common-contact .common-form .step .ttl .en span {
    font-size: 16px;
    margin-right: 2px;
  }
}
.common-contact .common-form .step .ttl .en span::before {
  background-color: #F08500;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  height: 2.56vw;
  margin-right: 1.02vw;
  width: 2.56vw;
}
@media (min-width: 769px) {
  .common-contact .common-form .step .ttl .en span::before {
    height: 10px;
    margin-right: 7px;
    width: 10px;
  }
}
.common-contact .common-form .step .ttl .en b {
  font-size: 6.15vw;
  font-weight: 500;
  margin-left: 0.76vw;
}
@media (min-width: 769px) {
  .common-contact .common-form .step .ttl .en b {
    font-size: 26px;
    margin: 0;
  }
}
.common-contact .common-form .step .ttl .jp {
  font-size: 4.1vw;
  font-weight: 700;
  margin: 0 0 0.76vw 2.56vw;
}
@media (min-width: 769px) {
  .common-contact .common-form .step .ttl .jp {
    font-size: 18px;
    margin: 0 0 0 7px;
  }
}
@media (max-width: 768px) {
  .common-contact .common-form .step .ttl .jp .s {
    margin-left: 40%;
  }
}
.common-contact .common-form .step .ttl .notice {
  color: #1E293D;
  font-size: 2.82vw;
  font-weight: 400;
}
@media (max-width: 768px) {
  .common-contact .common-form .step .ttl .notice {
    bottom: 1.28vw;
    left: 0;
    position: absolute;
  }
}
@media (min-width: 769px) {
  .common-contact .common-form .step .ttl .notice {
    font-size: 12px;
    margin-left: 6px;
  }
}
.common-contact .common-form .step .item {
  display: none;
}
.common-contact .common-form .step .item.current {
  display: block;
}
.common-contact .common-form .step .item .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.28vw;
  margin: 3.84vw 0 0;
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item .list {
    gap: 10px;
    margin: 15px 0 0;
  }
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item .list.input {
    font-size: 14px;
    gap: 10px 3%;
    line-height: 1.2;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .common-contact .common-form .step .item .list.input {
    font-size: 12px;
  }
}
.common-contact .common-form .step .item .list.input dl {
  display: block;
  width: 100%;
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item .list.input dl {
    align-items: center;
    display: flex;
    width: auto;
  }
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item .list.input dl.name, .common-contact .common-form .step .item .list.input dl.corp {
    width: 40%;
  }
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item .list.input dl.email, .common-contact .common-form .step .item .list.input dl.tel {
    width: 55%;
  }
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item .list.input dl.email dt, .common-contact .common-form .step .item .list.input dl.tel dt {
    width: 110px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .common-contact .common-form .step .item .list.input dl.email dt, .common-contact .common-form .step .item .list.input dl.tel dt {
    width: 100px;
  }
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item .list.input dl.name {
    order: 1;
  }
}
@media (max-width: 768px) {
  .common-contact .common-form .step .item .list.input dl.name dt {
    display: flex;
  }
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item .list.input dl.name dd {
    width: calc((98% - 50px) / 2);
  }
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item .list.input dl.name dd:last-child {
    display: block;
    margin-left: auto;
  }
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item .list.input dl.corp {
    order: 3;
  }
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item .list.input dl.email {
    order: 2;
  }
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item .list.input dl.tel {
    order: 4;
  }
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item .list.input dl.type {
    order: 5;
  }
}
.common-contact .common-form .step .item .list.input dl.type dd {
  display: flex;
  gap: 1.28vw;
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item .list.input dl.type dd {
    gap: 5px;
  }
}
.common-contact .common-form .step .item .list.input dt {
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item .list.input dt {
    min-width: 50px;
    padding: 0 5px 0 0;
  }
}
.common-contact .common-form .step .item .list.input dd {
  width: 100%;
}
.common-contact .common-form .step .item .list.input dd input {
  height: 10.25vw;
  padding: 0 2.56vw;
  width: 100%;
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item .list.input dd input {
    height: 32px;
    padding: 0 10px;
  }
}
.common-contact .common-form .step .item .list.input dd input::placeholder {
  color: #ccc;
}
.common-contact .common-form .step .item [type=checkbox],
.common-contact .common-form .step .item [type=radio] {
  display: none;
}
.common-contact .common-form .step .item [type=checkbox]:checked + label,
.common-contact .common-form .step .item [type=radio]:checked + label {
  background-color: #1E293D;
  color: #fff;
}
.common-contact .common-form .step .item label {
  align-items: center;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 1.28vw;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  height: 10.25vw;
  justify-content: center;
  transition: 0.5s;
  width: 100%;
}
@media (min-width: 769px) {
  .common-contact .common-form .step .item label {
    border-width: 1px;
    border-radius: 3px;
    display: inline-flex;
    font-size: 15px;
    height: 32px;
    padding: 0 10px;
    width: auto;
  }
}
.common-contact .common-form .step .item label:hover {
  border-color: #1E293D;
}
@media (max-width: 768px) {
  .common-contact .common-form .step [data-step="1"] .ttl {
    padding: 0 0 1em;
  }
}
.common-contact .common-form .btn {
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .common-contact .common-form .btn {
    display: flex;
  }
}
@media (min-width: 769px) {
  .common-contact .common-form .btn {
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
    max-width: 200px;
    width: 15.9%;
  }
}
.common-contact .common-form .btn button {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 15.38vw;
  justify-content: center;
  line-height: 1.2;
  width: 50%;
}
@media (min-width: 769px) {
  .common-contact .common-form .btn button {
    font-size: 18px;
    height: 50%;
    width: 100%;
  }
}
.common-contact .common-form .btn button:disabled {
  cursor: auto;
  opacity: 0.5;
}
.common-contact .common-form .btn .prev {
  background-color: #fff;
  color: #1E293D;
}
.common-contact .common-form .btn .prev::before {
  background: url(../img/common/arrow-circle.svg) no-repeat 50% 50%/contain;
  content: "";
  display: block;
  height: 4.1vw;
  margin-right: 1.28vw;
  transform: scale(-1);
  width: 4.1vw;
}
@media (min-width: 769px) {
  .common-contact .common-form .btn .prev::before {
    height: 16px;
    margin: 3px 5px 0 0;
    width: 16px;
  }
}
.common-contact .common-form .btn .next {
  background: #1E293D;
  color: #fff;
}
.common-contact .common-form .btn .next::after {
  background: url(../img/common/arrow-circle.svg) no-repeat 50% 50%/contain;
  content: "";
  display: block;
  height: 4.1vw;
  margin-left: 1.28vw;
  width: 4.1vw;
}
@media (min-width: 769px) {
  .common-contact .common-form .btn .next::after {
    height: 16px;
    margin: 3px 0 0 5px;
    width: 16px;
  }
}
.common-contact .common-form .btn .send {
  background: #1E293D;
  color: #fff;
  display: none;
}
.common-contact .common-form .progress {
  display: flex;
  gap: 2.56vw;
  justify-content: center;
  line-height: 1;
  margin: 15px 0 0;
}
@media (min-width: 769px) {
  .common-contact .common-form .progress {
    flex-direction: column;
    gap: 10px;
    margin: 0 0 0 10px;
  }
}
.common-contact .common-form .progress .dot {
  align-items: center;
  background-color: #fff;
  border-radius: 9999px;
  display: flex;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 3.58vw;
  height: 7.69vw;
  justify-content: center;
  transition: 0.5s;
  width: 7.69vw;
}
@media (min-width: 769px) {
  .common-contact .common-form .progress .dot {
    height: 30px;
    font-size: 14px;
    width: 30px;
  }
}
.common-contact .common-form .progress .dot.current {
  background-color: #1E293D;
  color: #fff;
  width: 15.38vw;
}
@media (min-width: 769px) {
  .common-contact .common-form .progress .dot.current {
    height: 60px;
    width: auto;
  }
}

.kv-contact {
  margin: 7.69vw 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 769px) {
  .kv-contact {
    margin: 40px 0 50px;
  }
}
.kv-contact .common-contact {
  background: none;
  padding: 0;
}
.kv-contact .common-contact .lead {
  display: none;
}
@media (min-width: 769px) {
  .kv-contact .common-contact .wrap {
    max-width: 1340px;
  }
}

.contact-thanks {
  text-align: center;
}
@media (min-width: 769px) {
  .contact-thanks .ttl {
    font-size: 40px;
    margin: 100px 0 80px;
  }
}
.contact-thanks p {
  font-size: 3.58vw;
  margin: 2em 0 0;
}
@media (min-width: 769px) {
  .contact-thanks p {
    font-size: 16px;
  }
}
.contact-thanks p.b {
  font-size: 6.66vw;
  font-weight: 700;
}
@media (min-width: 769px) {
  .contact-thanks p.b {
    font-size: 30px;
  }
}
.contact-thanks .btn {
  margin: 4em 0 0;
}

.common-case {
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .common-case {
    padding: 120px 0;
  }
}
.common-case .head {
  display: flex;
  flex-direction: column;
}
.common-case .head .head-lead {
  order: 1;
}
@media (min-width: 769px) {
  .common-case .head .head-lead {
    display: flex;
    justify-content: space-between;
    order: 2;
  }
}
.common-case .head .ttl-line {
  margin: 7.69vw 0 5.12vw;
  order: 2;
}
@media (min-width: 769px) {
  .common-case .head .ttl-line {
    order: 1;
    margin: 0;
  }
}
@media (min-width: 769px) {
  .common-case .head .ttl-sec {
    margin-top: 5px;
    text-align: left;
  }
}
@media (min-width: 769px) {
  .common-case .head .lead-sec {
    font-size: 16px;
    line-height: 2.25;
    text-align: left;
  }
}
.common-case .btn-wrap {
  margin-top: 2.56vw;
}
@media (min-width: 769px) {
  .common-case .btn-wrap {
    margin-top: -65px;
  }
}
@media (max-width: 768px) {
  .common-case .btn-link {
    border-radius: 7.69vw;
    font-size: 4.61vw;
    height: 15.38vw;
    width: 61.53vw;
  }
}
@media (max-width: 768px) {
  .common-case .btn-link::after {
    margin-left: 1.28vw;
  }
}

.p404 .kv {
  align-items: center;
  background: url(../img/common/404-kv-bg.jpg) no-repeat 50% 50%/cover;
  display: flex;
  padding: 12.82vw 0;
}
@media (min-width: 769px) {
  .p404 .kv {
    height: 250px;
    padding: 50px 0;
  }
}
.p404 .kv .ttl-line::before {
  background-color: #1E293D;
}
.p404 .kv .ttl {
  font-size: 8.2vw;
  line-height: 1.4;
}
@media (min-width: 769px) {
  .p404 .kv .ttl {
    font-size: 32px;
  }
}
.p404 .content {
  background-color: #F2F4F8;
  font-size: 4.61vw;
  overflow: hidden;
  padding: 15.38vw 0 23.07vw;
  position: relative;
  text-align: center;
}
@media (min-width: 769px) {
  .p404 .content {
    font-size: 18px;
    padding: 120px 0 190px;
  }
}
.p404 .content::after {
  bottom: -2.57vw;
  color: rgba(30, 41, 61, 0.2);
  content: "404 Not Found";
  display: block;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 12.82vw;
  line-height: 1;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  white-space: nowrap;
}
@media (min-width: 769px) {
  .p404 .content::after {
    bottom: -25px;
    font-size: 160px;
  }
}
.p404 .content .btn {
  margin: 10.25vw auto 0;
}
@media (min-width: 769px) {
  .p404 .content .btn {
    margin: 40px auto 0;
  }
}

@media (min-width: 769px) {
  .home {
    padding: 0;
  }
}
@media (min-width: 769px) {
  .home .header.headerTop {
    box-shadow: none;
    left: 50%;
    padding: 0 30px;
    position: absolute;
    top: 30px;
    transform: translate(-50%, 0);
    width: 100%;
    z-index: 1000;
  }
}
@media (min-width: 769px) {
  .home .header.headerTop .wrap {
    border-radius: 45px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    max-width: none;
    padding: 0 30px 0 50px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home .header.headerTop .wrap {
    padding: 0 20px 0 20px;
  }
}
@media (min-width: 769px) and (max-width: 1300px) {
  .home .header.headerTop .nav ul {
    gap: 0 20px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home .header.headerTop .nav ul {
    gap: 0 10px;
  }
}
@media (min-width: 769px) and (max-width: 820px) {
  .home .header.headerTop .nav li {
    font-size: 12px;
  }
}
@media (min-width: 769px) {
  .home .header.headerTop ~ .nav-service .whole,
  .home .header.headerTop ~ .nav-blog .whole {
    top: 90px;
  }
}
@media (min-width: 769px) {
  .home .float-nav.headerTop {
    position: absolute;
    right: 50px;
    top: 45px;
  }
}

.home-kv {
  background-color: #E39E50;
  position: relative;
  overflow: hidden;
}
@media (min-width: 769px) {
  .home-kv {
    height: auto;
    min-height: 760px;
  }
}
.home-kv::after {
  background: url(../img/home/kv-bg-sp.jpg) no-repeat 50% 0/cover;
  content: "";
  display: block;
  height: 110%;
  position: absolute;
  top: -5%;
  transition: 1.5s;
  width: 100%;
  z-index: 1;
}
@media (min-width: 769px) {
  .home-kv::after {
    background-image: url(../img/home/kv-bg.jpg);
    background-position: 50% 50%;
    background-size: cover;
    bottom: -5%;
    height: 105%;
    top: initial;
    width: 105%;
  }
}
.home-kv.active::after {
  top: -10%;
}
@media (min-width: 769px) {
  .home-kv.active::after {
    bottom: 0;
    top: initial;
  }
}
.home-kv .lead {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  font-size: 15.38vw;
  font-weight: 800;
  left: 0;
  letter-spacing: 0.04em;
  line-height: 1;
  position: absolute;
  top: 5.12vw;
  white-space: nowrap;
  width: 100%;
  z-index: 2;
}
@media (min-width: 769px) {
  .home-kv .lead {
    font-size: 100px;
    top: 140px;
  }
}
.home-kv .lead .en {
  padding: 0 0.5em;
}
.home-kv .txt {
  padding: 25.64vw 0 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 769px) {
  .home-kv .txt {
    padding: 285px 0 0;
  }
}
@media (min-width: 769px) {
  .home-kv .txt .wrap {
    max-width: 1340px;
  }
}
.home-kv .txt .ttl {
  font-size: 5.64vw;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 769px) {
  .home-kv .txt .ttl {
    font-size: 36px;
  }
}
.home-kv .txt .ttl span {
  background-color: #1E293D;
  color: #fff;
  display: inline-flex;
  margin: 0 1.28vw;
  padding: 0.51vw 1.28vw 1.02vw;
}
@media (min-width: 769px) {
  .home-kv .txt .ttl span {
    margin: 0 10px;
    padding: 4px 10px 8px;
  }
}
.home-kv .txt .ttl span:first-child {
  margin-left: 0;
}
.home-kv .txt .ttl b {
  display: block;
  font-size: 8.2vw;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 3.84vw 0 0;
}
@media (min-width: 769px) {
  .home-kv .txt .ttl b {
    font-size: 50px;
    margin: 20px 0 0;
  }
}
.home-kv .txt p {
  font-size: 3.58vw;
  line-height: 1.71;
  margin: 3.84vw 0 0;
}
@media (min-width: 769px) {
  .home-kv .txt p {
    font-size: 18px;
    line-height: 1.88;
    margin: 25px 0 0;
  }
}

.home-lead {
  font-size: 5.12vw;
  font-weight: 700;
  line-height: 1.5;
  padding: 15.38vw 0;
  text-align: center;
}
@media (min-width: 769px) {
  .home-lead {
    font-size: 24px;
    line-height: 2.3;
    padding: 60px 0 50px;
  }
}
.home-lead b {
  background-color: #1E293D;
  color: #fff;
  display: inline-flex;
  margin: 1.28vw;
  padding: 0 2.56vw;
}
@media (min-width: 769px) {
  .home-lead b {
    margin: 0 5px;
    padding: 0 15px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home-lead b {
    margin-top: 5px;
  }
}
.home-lead b + b {
  margin-left: 0;
}
@media (min-width: 769px) {
  .home-lead span {
    display: block;
    margin: 10px 0 0;
  }
}

.home-support {
  background-color: #F2F4F8;
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .home-support {
    padding: 60px 0;
  }
}
@media (min-width: 769px) {
  .home-support .ttl-line {
    margin: 30px 0;
  }
}
@media (min-width: 769px) {
  .home-support .list {
    display: flex;
  }
}
.home-support .box {
  background-color: #fff;
  height: 100%;
  flex-shrink: 0;
  padding: 6.41vw 5.12vw 3.84vw;
  position: relative;
  width: 100%;
}
@media (min-width: 769px) {
  .home-support .box {
    min-height: 450px;
    padding: 40px 10px 30px 50px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home-support .box {
    padding-left: 30px;
  }
}
.home-support .box::after {
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  display: block;
  height: 7.17vw;
  left: 0;
  position: absolute;
  top: calc(100% - 0.25vw);
  width: 100%;
}
@media (min-width: 769px) {
  .home-support .box::after {
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    height: 100%;
    left: calc(100% - 1px);
    top: 0;
    width: 40px;
    z-index: -1;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home-support .box::after {
    width: 20px;
  }
}
.home-support .item {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.15));
}
@media (max-width: 768px) {
  .home-support .item {
    margin: 5.12vw 0 0;
  }
}
@media (min-width: 769px) {
  .home-support .item {
    width: 32.2%;
  }
}
@media (max-width: 768px) {
  .home-support .item + .item {
    margin: 7.17vw 0 0;
  }
}
.home-support .item .ttl {
  align-items: center;
  display: flex;
  line-height: 1;
}
.home-support .item .num {
  background: linear-gradient(90deg, #FF6736 0%, #F58528 100%);
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 9.74vw;
  font-weight: 500;
  background-clip: text;
  margin-right: 3.07vw;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 769px) {
  .home-support .item .num {
    font-size: 50px;
    margin-right: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home-support .item .num {
    font-size: 35px;
    margin-left: -10px;
    margin-right: 10px;
  }
}
.home-support .item .txt {
  font-size: 3.58vw;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 769px) {
  .home-support .item .txt {
    font-size: 16px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home-support .item .txt {
    font-size: 12px;
  }
}
.home-support .item .txt b {
  display: block;
  font-size: 5.12vw;
  font-weight: 700;
  margin: 1.28vw 0 0;
}
@media (min-width: 769px) {
  .home-support .item .txt b {
    font-size: 28px;
    margin: 10px 0 0;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home-support .item .txt b {
    font-size: 24px;
  }
}
@media (min-width: 769px) {
  .home-support .item dd {
    padding-left: 15px;
    max-width: 300px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home-support .item dd {
    padding-left: 10px;
  }
}
.home-support .item .ttl2 {
  position: relative;
}
.home-support .item .ttl2::after {
  background: url(../img/home/support01.png) no-repeat 0 0/contain;
  content: "";
  bottom: -4.36vw;
  display: block;
  height: 22.05vw;
  position: absolute;
  right: 0;
  width: 26.92vw;
}
@media (min-width: 769px) {
  .home-support .item .ttl2::after {
    bottom: -20px;
    height: 116px;
    right: -20px;
    width: 143px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home-support .item .ttl2::after {
    display: none;
  }
}
.home-support .item .ttl2 .bg {
  align-items: center;
  background: linear-gradient(90deg, #FF6736 0%, #F58528 100%);
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  color: #fff;
  display: flex;
  font-size: 4.61vw;
  font-weight: 700;
  height: 12.82vw;
  line-height: 1.1;
  margin: 5.64vw 0 4.35vw -7.7vw;
  padding: 0 0 0 8.71vw;
}
@media (min-width: 769px) {
  .home-support .item .ttl2 .bg {
    font-size: 21px;
    height: 68px;
    margin: 30px 0 30px -50px;
    max-width: 335px;
    padding: 0 15px 0 50px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home-support .item .ttl2 .bg {
    font-size: 16px;
  }
}
.home-support .item .ttl2 .bg::before {
  background: url(../img/common/ico-check.svg) no-repeat 0 0/cover;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 4.61vw;
  margin-right: 1.02vw;
  width: 4.61vw;
}
@media (min-width: 769px) {
  .home-support .item .ttl2 .bg::before {
    height: 20px;
    margin-right: 5px;
    width: 20px;
  }
}
.home-support .item .ttl2 span {
  font-size: 3.58vw;
}
@media (min-width: 769px) {
  .home-support .item .ttl2 span {
    font-size: 76%;
  }
}
.home-support .item .border {
  align-items: center;
  display: flex;
  font-size: 3.07vw;
  font-weight: 700;
}
@media (min-width: 769px) {
  .home-support .item .border {
    font-size: 16px;
  }
}
.home-support .item .border span {
  flex-shrink: 0;
}
.home-support .item .border::after {
  background-color: #1E293D;
  content: "";
  display: block;
  flex-grow: 1;
  height: 0.25vw;
  margin-left: 2.56vw;
}
@media (min-width: 769px) {
  .home-support .item .border::after {
    height: 1px;
    margin-left: 5px;
  }
}
.home-support .item .list {
  font-size: 3.07vw;
  font-weight: 500;
}
@media (min-width: 769px) {
  .home-support .item .list {
    font-size: 15px;
    margin: 5px 0 0;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home-support .item .list {
    font-size: 12px;
  }
}
.home-support .item .list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.05vw;
  margin: 0;
  padding: 0;
}
@media (min-width: 769px) {
  .home-support .item .list ul {
    gap: 0 10px;
  }
}
.home-support .item .list li {
  display: inline-block;
}
.home-support .item .list li::before {
  content: "・";
  display: inline;
}
.home-support .item .list li:last-child::before {
  content: none;
}
.home-support .item01 {
  position: relative;
}
@media (min-width: 769px) {
  .home-support .item01 {
    z-index: 3;
  }
}
@media (min-width: 769px) {
  .home-support .item01 .box {
    padding-left: 30px;
    padding-right: 25px;
  }
}
@media (min-width: 769px) {
  .home-support .item01 dd {
    padding-left: 0;
  }
}
@media (min-width: 769px) {
  .home-support .item01 .ttl2 .bg {
    margin-left: -30px;
    padding: 0 0 0 30px;
  }
}
.home-support .item02 {
  position: relative;
}
@media (min-width: 769px) {
  .home-support .item02 {
    z-index: 2;
  }
}
.home-support .item02 .ttl2::after {
  background-image: url(../img/home/support02.png);
  bottom: -6.42vw;
  height: 22.82vw;
  right: 3.58vw;
  width: 16.66vw;
}
@media (min-width: 769px) {
  .home-support .item02 .ttl2::after {
    bottom: -15px;
    height: 104px;
    right: -35px;
    width: 76px;
  }
}
.home-support .item03 {
  position: relative;
}
@media (min-width: 769px) {
  .home-support .item03 {
    z-index: 1;
  }
}
.home-support .item03 .ttl2::after {
  background-image: url(../img/home/support03.png);
  bottom: -5.13vw;
  height: 22.05vw;
  right: 0;
  width: 20.51vw;
}
@media (min-width: 769px) {
  .home-support .item03 .ttl2::after {
    bottom: -20px;
    height: 101px;
    right: -35px;
    width: 94px;
  }
}
.home-support p {
  font-size: 6.15vw;
  font-weight: 700;
  line-height: 1.54;
  margin: 15.38vw 0 0;
  text-align: center;
}
@media (min-width: 769px) {
  .home-support p {
    font-size: 28px;
    line-height: 1.78;
    margin: 40px 0 0;
  }
}
.home-support p b {
  color: #F08500;
}

.home-case {
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .home-case {
    padding: 120px 0;
  }
}
.home-case .head {
  display: flex;
  flex-direction: column;
}
.home-case .head .head-lead {
  order: 1;
}
@media (min-width: 769px) {
  .home-case .head .head-lead {
    display: flex;
    justify-content: space-between;
    order: 2;
  }
}
.home-case .head .ttl-line {
  margin: 7.69vw 0 5.12vw;
  order: 2;
}
@media (min-width: 769px) {
  .home-case .head .ttl-line {
    order: 1;
    margin: 0;
  }
}
@media (min-width: 769px) {
  .home-case .head .ttl-sec {
    margin-top: 5px;
    text-align: left;
  }
}
@media (min-width: 769px) {
  .home-case .head .lead-sec {
    font-size: 16px;
    line-height: 2.25;
    text-align: left;
  }
}
.home-case .btn-wrap {
  margin-top: 2.56vw;
}
@media (min-width: 769px) {
  .home-case .btn-wrap {
    margin-top: -65px;
  }
}
@media (max-width: 768px) {
  .home-case .btn-link {
    font-size: 4.61vw;
    height: 15.38vw;
    width: 61.53vw;
  }
}
@media (max-width: 768px) {
  .home-case .btn-link::after {
    margin-left: 1.28vw;
  }
}

.home-service {
  background-color: #FFF7F2;
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .home-service {
    padding: 120px 0;
  }
}
@media (max-width: 768px) {
  .home-service .lead-sec {
    margin: -5.13vw 0 0;
  }
}
.home-service .nav ul {
  margin: 5.12vw 0 17.94vw;
}
@media (min-width: 769px) {
  .home-service .nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 50px 0 90px;
  }
}
@media (max-width: 768px) {
  .home-service .nav .btn-link-down {
    justify-content: flex-start;
    margin: 2.56vw 0 0;
    padding: 3.84vw 5.12vw;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .home-service .nav .btn-link-down::after {
    right: 5.12vw;
  }
}
@media (min-width: 769px) {
  .home-service .item {
    display: flex;
    justify-content: space-between;
  }
}
.home-service .item + .item {
  margin: 15.38vw 0 0;
}
@media (min-width: 769px) {
  .home-service .item + .item {
    border-top: 1px solid #1E293D;
    margin: 80px 0 0;
    padding: 80px 0 0;
  }
}
@media (min-width: 769px) {
  .home-service .item .txt {
    max-width: 500px;
    width: 41.7%;
  }
}
.home-service .item .ttl {
  font-size: 6.15vw;
  font-weight: 700;
  margin: 0 0 2.56vw;
}
@media (min-width: 769px) {
  .home-service .item .ttl {
    font-size: 30px;
    margin: 5px 0 20px;
  }
}
.home-service .item .ico {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 5.12vw;
  margin: 5.12vw 9.74vw 0;
}
@media (max-width: 768px) {
  .home-service .item .ico {
    justify-content: center;
  }
}
@media (min-width: 769px) {
  .home-service .item .ico {
    gap: 20px;
    margin: 30px 0 0;
  }
}
.home-service .item .ico.ico2 {
  gap: 1.28vw 3.2%;
  justify-content: flex-start;
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .home-service .item .ico.ico2 {
    gap: 10px;
    margin: 30px 0 0;
  }
}
.home-service .item .ico .box {
  align-items: center;
  background-color: #fff;
  display: flex;
  font-size: 3.07vw;
  line-height: 1.1;
  min-height: 12.82vw;
  width: 48.4%;
}
@media (min-width: 769px) {
  .home-service .item .ico .box {
    border-radius: 3px;
    font-size: 14px;
    min-height: 50px;
    max-width: 200px;
    padding: 10px 0 10px 10px;
    width: 47.7%;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home-service .item .ico .box {
    font-size: 12px;
  }
}
.home-service .item .ico .box span {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  width: 11.53vw;
}
@media (min-width: 769px) {
  .home-service .item .ico .box span {
    width: 55px;
  }
}
.home-service .item .ico img {
  height: 9.23vw;
}
@media (min-width: 769px) {
  .home-service .item .ico img {
    height: 36px;
  }
}
@media (max-width: 768px) {
  .home-service .item .ico img[src*=gg] {
    height: 8.2vw;
  }
}
.home-service .item .ico img[src*=yh] {
  height: 7.69vw;
}
@media (min-width: 769px) {
  .home-service .item .ico img[src*=yh] {
    height: 30px;
  }
}
@media (max-width: 768px) {
  .home-service .item .ico img[src*=x] {
    height: 7.69vw;
  }
}
.home-service .item .ico img[src*=ad] {
  height: 8.2vw;
}
@media (min-width: 769px) {
  .home-service .item .ico img[src*=ad] {
    height: 32px;
  }
}
.home-service .item .ico img[src*=ga] {
  height: 8.46vw;
}
@media (min-width: 769px) {
  .home-service .item .ico img[src*=ga] {
    height: 27px;
  }
}
.home-service .item .ico img[src*=gtm] {
  height: 9.48vw;
}
@media (min-width: 769px) {
  .home-service .item .ico img[src*=gtm] {
    height: 31px;
  }
}
.home-service .item .ico img[src*=web] {
  height: 6.15vw;
}
@media (min-width: 769px) {
  .home-service .item .ico img[src*=web] {
    height: 24px;
  }
}
.home-service .item .ico img[src*=web01] {
  height: 6.41vw;
}
@media (min-width: 769px) {
  .home-service .item .ico img[src*=web01] {
    height: 25px;
  }
}
.home-service .item .ico img[src*=web04] {
  height: 7.17vw;
}
@media (min-width: 769px) {
  .home-service .item .ico img[src*=web04] {
    height: 28px;
  }
}
.home-service .item .list {
  flex-shrink: 0;
  margin: 7.69vw 0 0;
  width: 100%;
}
@media (min-width: 769px) {
  .home-service .item .list {
    margin: 0;
    max-width: 650px;
    width: 54.2%;
  }
}
.home-service .item .list li {
  margin: 0.76vw 0 0;
}
@media (min-width: 769px) {
  .home-service .item .list li {
    margin: 5px 0 0;
  }
}
.home-service .item .list li > a,
.home-service .item .list li > span {
  align-items: center;
  background-color: #eee;
  border-radius: 1.28vw;
  color: #1E293D;
  display: flex;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-weight: 700;
  height: 20.51vw;
  line-height: 1.5;
  padding: 0 15.38vw 0 5.12vw;
  position: relative;
  width: 100%;
  z-index: 0;
}
@media (min-width: 769px) {
  .home-service .item .list li > a,
  .home-service .item .list li > span {
    border-radius: 5px;
    font-size: 18px;
    height: 100px;
    max-width: 650px;
    padding: 0 80px 0 40px;
  }
}
.home-service .item .list li > a {
  background-color: #fff;
}
.home-service .item .list li > a::before {
  background: linear-gradient(90deg, #FF6736 0%, #F58528 100%);
  border-radius: 5px;
  content: "";
  display: block;
  inset: 0;
  position: absolute;
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
}
.home-service .item .list li > a::after {
  background: #fff url(../img/common/arrow.svg) no-repeat 50% 50%/1.92vw auto;
  border: 0.25vw solid #1E293D;
  border-radius: 50%;
  content: "";
  display: block;
  height: 7.69vw;
  position: absolute;
  right: 5.12vw;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.5s;
  width: 7.69vw;
}
@media (min-width: 769px) {
  .home-service .item .list li > a::after {
    background-size: 10px auto;
    border-width: 1px;
    height: 40px;
    right: 20px;
    width: 40px;
  }
}
.home-service .item .list li > a:hover {
  color: #fff;
  opacity: 1;
}
.home-service .item .list li > a:hover::before {
  opacity: 1;
  transform: scale(1.02);
}
.home-service .item .list li > a:hover::after {
  background-image: url(../img/common/arrow-orange.svg);
  border: none;
  opacity: 1;
}
.home-service .item .list li > a span {
  display: inline-block;
  font-weight: 500;
}
@media (max-width: 768px) {
  .home-service .item .list li > a span {
    font-size: 3.58vw;
  }
}

.home-slide {
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .home-slide {
    padding: 120px 0;
  }
}
.home-slide img {
  margin: 0 3.84vw;
  width: 69.23vw;
}
@media (min-width: 769px) {
  .home-slide img {
    margin: 0 20px;
    width: 390px;
  }
}

.home-scrollimg {
  display: flex;
  margin: 15.38vw 0;
  overflow: hidden;
}
@media (min-width: 769px) {
  .home-scrollimg {
    margin: 120px 0;
  }
}
.home-scrollimg .imgs {
  animation: scrolling 45s linear infinite;
  display: flex;
  flex-shrink: 0;
  gap: 0 3.84vw;
  padding-right: 3.84vw;
}
@media (min-width: 769px) {
  .home-scrollimg .imgs {
    gap: 0 40px;
    padding-right: 40px;
  }
}
.home-scrollimg .imgs img {
  object-fit: cover;
  object-position: 50% 0;
  width: 69.23vw;
}
@media (min-width: 769px) {
  .home-scrollimg .imgs img {
    width: 390px;
  }
}

.home-reason {
  background: linear-gradient(90deg, #FF6736 0%, #F58528 100%);
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .home-reason {
    margin: 0 25px;
    padding: 80px 0 100px;
  }
}
.home-reason .ttl-sec {
  color: #fff;
}
@media (min-width: 769px) {
  .home-reason .list {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home-reason .list {
    display: block;
  }
}
.home-reason .list dl {
  background-color: #fff;
  box-shadow: 0 0 3.84vw 0 rgba(0, 0, 0, 0.15);
  margin: 7.69vw 0 0;
  padding: 7.69vw 5.12vw;
}
@media (min-width: 769px) {
  .home-reason .list dl {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
    margin: 0;
    padding: 30px 30px 50px;
    max-width: 380px;
    width: 31.7%;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home-reason .list dl {
    margin: 30px 0 0;
    max-width: none;
    width: 100%;
  }
}
.home-reason .list dl img {
  height: 41.02vw;
  margin: 5.12vw auto;
  width: auto;
}
@media (min-width: 769px) {
  .home-reason .list dl img {
    height: 160px;
    margin: 30px auto;
  }
}
.home-reason .list dl .ttl {
  font-size: 6.15vw;
  font-weight: 700;
  line-height: 1.58;
  margin: 2.56vw 0;
  text-align: center;
}
@media (min-width: 769px) {
  .home-reason .list dl .ttl {
    font-size: 24px;
    margin: 20px 0;
  }
}
.home-reason .list dl .ttl b {
  color: #F08500;
}

.home-blog {
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .home-blog {
    padding: 120px 0;
  }
}
.home-blog .head {
  display: flex;
  flex-direction: column;
}
.home-blog .head .head-lead {
  order: 1;
}
@media (min-width: 769px) {
  .home-blog .head .head-lead {
    display: flex;
    justify-content: space-between;
    order: 2;
  }
}
.home-blog .head .ttl-line {
  margin: 7.69vw 0 5.12vw;
  order: 2;
}
@media (min-width: 769px) {
  .home-blog .head .ttl-line {
    order: 1;
    margin: 0;
  }
}
@media (min-width: 769px) {
  .home-blog .head .ttl-sec {
    margin-top: 5px;
    text-align: left;
  }
}
.home-blog .head .lead-sec {
  margin-top: -5.13vw;
}
@media (min-width: 769px) {
  .home-blog .head .lead-sec {
    font-size: 16px;
    line-height: 2.25;
    margin-top: -1em;
    text-align: left;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home-blog .head .lead-sec {
    margin-top: -2em;
  }
}
@media (max-width: 768px) {
  .home-blog .common-articles {
    margin: 0 0 2.56vw;
  }
}
@media (max-width: 768px) {
  .home-blog .btn-link {
    font-size: 4.61vw;
    height: 15.38vw;
    width: 61.53vw;
  }
}
@media (max-width: 768px) {
  .home-blog .btn-link::after {
    margin-left: 1.28vw;
  }
}

.home-contact {
  position: relative;
}
@media (max-width: 768px) {
  .home-contact {
    padding: 20.51vw 0;
  }
}
.home-contact .ttl-line-contact {
  align-items: center;
  color: #fff;
  display: flex;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 3.58vw;
  font-weight: 700;
  left: 7.69vw;
  letter-spacing: 0;
  position: absolute;
  top: 20.51vw;
  transform: rotate(90deg);
  transform-origin: left top;
  width: 100%;
}
@media (min-width: 769px) {
  .home-contact .ttl-line-contact {
    font-size: 20px;
    left: 80px;
    top: 80px;
  }
}
.home-contact .ttl-line-contact::before {
  aspect-ratio: 0.8660254038;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  height: 2.56vw;
  margin-right: 2.56vw;
}
@media (min-width: 769px) {
  .home-contact .ttl-line-contact::before {
    height: 10px;
    margin-right: 10px;
  }
}
.home-contact .ttl-line-contact::after {
  background-color: #fff;
  content: "";
  display: block;
  flex-grow: 1;
  height: 0.25vw;
  margin-left: 2.56vw;
  max-width: 25.64vw;
}
@media (min-width: 769px) {
  .home-contact .ttl-line-contact::after {
    height: 1px;
    margin-left: 10px;
    max-width: 200px;
  }
}
.home-contact .ttl-line-contact span {
  flex-shrink: 0;
}
.home-contact .ttl {
  color: #fff;
  font-size: 6.66vw;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 7.69vw;
  text-align: center;
}
@media (min-width: 769px) {
  .home-contact .ttl {
    font-size: 40px;
    margin: 15px 0 35px;
  }
}
@media (max-width: 768px) {
  .home-contact .lead {
    font-size: 4.1vw;
  }
}
.home-contact .btn {
  margin: 7.69vw 0 0;
  text-align: center;
}
@media (min-width: 769px) {
  .home-contact .btn {
    margin: 45px 0 15px;
  }
}
@media (max-width: 768px) {
  .home-contact .btn-contact {
    border-radius: 12.05vw;
    font-size: 4.61vw;
    height: 24.1vw;
    line-height: 1.4;
    width: 84.61vw;
  }
}
@media (max-width: 768px) {
  .home-contact .btn-contact::after {
    background-size: 2.88vw auto;
    margin-left: 5.12vw;
  }
}

@media (min-width: 769px) {
  .case-search {
    margin: 100px 0;
  }
}
.case-search .tab-list {
  display: flex;
  font-size: 4.1vw;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .case-search .tab-list {
    font-size: 18px;
    justify-content: flex-start;
    gap: 20px;
  }
}
.case-search .tab-list a {
  align-items: center;
  border: 0.25vw solid #1E293D;
  border-bottom: none;
  border-top-left-radius: 1.28vw;
  border-top-right-radius: 1.28vw;
  color: #1E293D;
  display: flex;
  height: 15.38vw;
  justify-content: center;
  line-height: 1.25;
  opacity: 1;
  width: 41.02vw;
}
@media (min-width: 769px) {
  .case-search .tab-list a {
    border-width: 1px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    height: 60px;
    padding: 0 20px;
    width: auto;
  }
}
.case-search .tab-list a::before {
  background: url(../img/common/ico-search.svg) no-repeat 50% 50%/contain;
  content: "";
  display: block;
  height: 4.1vw;
  margin-right: 2.56vw;
  width: 4.1vw;
}
@media (min-width: 769px) {
  .case-search .tab-list a::before {
    height: 20px;
    margin-right: 10px;
    width: 20px;
  }
}
.case-search .tab-list a:hover, .case-search .tab-list a.active {
  background-color: #1E293D;
  color: #fff;
}
.case-search .tab-list a:hover::before, .case-search .tab-list a.active::before {
  background-image: url(../img/common/ico-search-white.svg);
}
.case-search .tab-cont {
  background-color: #F2F4F8;
  border: 0.25vw solid #1E293D;
  border-radius: 0 0 2.56vw 2.56vw;
  display: none;
  padding: 7.69vw 5.12vw;
}
@media (min-width: 769px) {
  .case-search .tab-cont {
    border-width: 1px;
    border-radius: 0 10px 10px 10px;
    padding: 50px 40px;
  }
}
.case-search .tab-cont.active {
  display: flex;
}
.case-search .tab-cont ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3.84vw;
}
@media (min-width: 769px) {
  .case-search .tab-cont ul {
    gap: 15px;
  }
}
.case-search .tab-cont a {
  align-items: center;
  background-color: #fff;
  border: 0.25vw solid #1E293D;
  border-radius: 1.28vw;
  color: #1E293D;
  display: flex;
  height: 10.25vw;
  justify-content: center;
  opacity: 1;
  padding: 0 3.84vw;
}
@media (min-width: 769px) {
  .case-search .tab-cont a {
    border-radius: 5px;
    border-width: 1px;
    height: 40px;
    padding: 0 15px;
  }
}
.case-search .tab-cont a:hover, .case-search .tab-cont a.active {
  background-color: #1E293D;
  color: #fff;
}
.case-search .tab-cont a:hover::before, .case-search .tab-cont a.active::before {
  background-image: url(../img/common/ico-search-white.svg);
}

@media (min-width: 769px) {
  .case-detail .wrap {
    max-width: 920px;
  }
}
.case-detail .case-head {
  background-color: #F2F4F8;
  padding: 7.69vw 0 10.25vw;
}
@media (min-width: 769px) {
  .case-detail .case-head {
    padding: 30px 0 40px;
  }
}
.case-detail .case-head .cat ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.28vw;
}
@media (min-width: 769px) {
  .case-detail .case-head .cat ul {
    gap: 10px;
  }
}
.case-detail .case-head .cat a {
  align-items: center;
  background-color: #fff;
  border-radius: 2.56vw;
  color: #1E293D;
  display: flex;
  font-size: 2.56vw;
  height: 5.12vw;
  justify-content: center;
  padding: 0 2.56vw;
}
@media (min-width: 769px) {
  .case-detail .case-head .cat a {
    border-radius: 12px;
    font-size: 12px;
    height: 24px;
    padding: 0 12px;
  }
}
.case-detail .case-head .cat a:hover {
  background-color: #1E293D;
  color: #fff;
  opacity: 1;
}
.case-detail .case-head .name {
  margin: 3.84vw 0 0;
}
@media (min-width: 769px) {
  .case-detail .case-head .name {
    margin: 15px 0 0;
  }
}
.case-detail .case-head .ttl {
  font-size: 6.15vw;
  font-weight: 700;
  line-height: 1.4;
  margin: 2.56vw 0 0;
}
@media (min-width: 769px) {
  .case-detail .case-head .ttl {
    font-size: 28px;
    margin: 10px 0 0;
  }
}
.case-detail .case-summary {
  margin: 15.38vw 0;
}
@media (min-width: 769px) {
  .case-detail .case-summary {
    margin: 60px 0;
  }
}
@media (min-width: 769px) {
  .case-detail .case-summary .wrap {
    align-items: center;
    display: flex;
  }
}
@media (min-width: 769px) {
  .case-detail .case-summary .img {
    max-width: 330px;
    width: 38.4%;
  }
}
.case-detail .case-summary .txt {
  margin: 7.69vw 0 0;
}
@media (min-width: 769px) {
  .case-detail .case-summary .txt {
    margin: 0 0 0 9.3%;
    max-width: 450px;
    width: 52.3%;
  }
}
.case-detail .issue dl {
  background-color: #F2F4F8;
  border-radius: 2.56vw;
  margin: 10.25vw 0 23.07vw;
  padding: 7.69vw 5.12vw;
  position: relative;
}
@media (min-width: 769px) {
  .case-detail .issue dl {
    border-radius: 10px;
    margin: 60px 0 90px;
    padding: 40px 50px;
  }
}
.case-detail .issue dl::after {
  background-color: #F2F4F8;
  bottom: -6.42vw;
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  height: 6.41vw;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: 30.76vw;
}
@media (min-width: 769px) {
  .case-detail .issue dl::after {
    bottom: -30px;
    height: 30px;
    width: 150px;
  }
}
.case-detail .issue dt {
  align-items: center;
  display: flex;
  font-size: 5.12vw;
  font-weight: 700;
}
@media (min-width: 769px) {
  .case-detail .issue dt {
    font-size: 20px;
  }
}
.case-detail .issue dt::before {
  background-color: #F08500;
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  display: block;
  height: 2.56vw;
  margin-right: 2.56vw;
  width: 2.05vw;
}
@media (min-width: 769px) {
  .case-detail .issue dt::before {
    height: 10px;
    margin-right: 10px;
    width: 8px;
  }
}
.case-detail .issue dd {
  font-size: 4.61vw;
  margin: 2.56vw 0 0;
}
@media (min-width: 769px) {
  .case-detail .issue dd {
    font-size: 18px;
    margin: 10px 0 0;
  }
}
.case-detail .issue ul {
  list-style: disc;
  margin: 0 0 0 20px;
}
.case-detail .issue ol {
  list-style: decimal;
  margin: 0 0 0 20px;
}
.case-detail .issue li {
  line-height: 1.5;
  margin: 5px 0 0;
}
.case-detail .solution {
  background-color: #FFF7F2;
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .case-detail .solution {
    padding: 120px 0;
  }
}
.case-detail .solution .point,
.case-detail .solution .result {
  counter-reset: number 0;
}
.case-detail .solution .block {
  background-color: #fff;
  border-radius: 2.56vw;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
  margin: 10.25vw 0 0;
  padding: 12.82vw 5.12vw;
}
@media (min-width: 769px) {
  .case-detail .solution .block {
    border-radius: 10px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
    margin: 40px 0 0;
    padding: 50px;
  }
}
@media (min-width: 769px) {
  .case-detail .solution .head {
    display: flex;
  }
}
.case-detail .solution .head .circle {
  align-items: center;
  background-image: linear-gradient(to right, #FF6736, #F58528);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 3.07vw;
  font-weight: 700;
  height: 20.51vw;
  justify-content: center;
  line-height: 1;
  margin: 0 auto;
  padding: 2.56vw 0 0;
  width: 20.51vw;
}
@media (min-width: 769px) {
  .case-detail .solution .head .circle {
    font-size: 14px;
    height: 116px;
    margin: 0;
    padding: 5px 0 0;
    width: 116px;
  }
}
.case-detail .solution .head .circle::after {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) "";
  display: block;
  font-size: 7.69vw;
  margin: 0.51vw 0 0;
}
@media (min-width: 769px) {
  .case-detail .solution .head .circle::after {
    font-size: 28px;
    margin: 10px 0 0;
  }
}
.case-detail .solution .head .ttl {
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .case-detail .solution .head .ttl {
    align-items: center;
    display: flex;
    font-size: 24px;
    line-height: 1.33;
  }
}
.case-detail .solution .head .ttl b,
.case-detail .solution .head .ttl strong {
  color: #F08500;
}
.case-detail .solution .head .ttl::before {
  background-color: #F08500;
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 50%);
  display: block;
  height: 4.61vw;
  margin: 2.56vw auto;
  width: 3.07vw;
}
@media (min-width: 769px) {
  .case-detail .solution .head .ttl::before {
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    height: 14px;
    margin: 0 15px;
    width: 11px;
  }
}
.case-detail .solution .body {
  margin: 7.69vw 0 0;
}
@media (min-width: 769px) {
  .case-detail .solution .body {
    margin: 40px 0 0;
  }
}
.case-detail .solution .body div,
.case-detail .solution .body p {
  margin: 7.69vw 0 0;
}
@media (min-width: 769px) {
  .case-detail .solution .body div,
  .case-detail .solution .body p {
    margin: 40px 0 0;
  }
}
.case-detail .solution .result-summary {
  font-size: 6.15vw;
  font-weight: 700;
  line-height: 1.4;
  margin: 15.38vw auto;
  text-align: center;
}
@media (min-width: 769px) {
  .case-detail .solution .result-summary {
    font-size: 28px;
    margin: 60px auto 40px;
  }
}
.case-detail .solution .result-summary::before {
  background-color: #ED5053;
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  height: 6.41vw;
  margin: 0 auto 3.84vw;
  width: 30.76vw;
}
@media (min-width: 769px) {
  .case-detail .solution .result-summary::before {
    height: 30px;
    margin: 0 auto 40px;
    width: 150px;
  }
}
.case-detail .solution .result-summary b,
.case-detail .solution .result-summary strong {
  color: #ED5053;
}
@media (min-width: 769px) {
  .case-detail .solution .result-summary b,
  .case-detail .solution .result-summary strong {
    font-size: 32px;
  }
}
.case-detail .solution .result-summary b *,
.case-detail .solution .result-summary strong * {
  font-style: normal;
  font-size: 133%;
}
@media (min-width: 769px) {
  .case-detail .solution .result-summary b *,
  .case-detail .solution .result-summary strong * {
    font-size: 125%;
  }
}
.case-detail .service-list {
  font-weight: 700;
  margin: 15.38vw auto;
}
@media (min-width: 769px) {
  .case-detail .service-list {
    margin: 100px auto 60px;
  }
}
.case-detail .service-list .box {
  background-color: #F2F4F8;
  border-radius: 2.56vw;
  padding: 12.82vw 5.12vw;
}
@media (min-width: 769px) {
  .case-detail .service-list .box {
    border-radius: 10px;
    padding: 50px 40px;
  }
}
.case-detail .service-list .ttl {
  font-size: 5.12vw;
  text-align: center;
}
@media (min-width: 769px) {
  .case-detail .service-list .ttl {
    font-size: 24px;
  }
}
.case-detail .service-list ul {
  margin: 7.69vw 0 0;
}
@media (min-width: 769px) {
  .case-detail .service-list ul {
    margin: 30px 0 0;
  }
}
.case-detail .service-list li {
  margin: 1.28vw 0 0;
}
@media (min-width: 769px) {
  .case-detail .service-list li {
    margin: 5px 0 0;
  }
}
.case-detail .service-list li a {
  align-items: center;
  background-color: #fff;
  border-radius: 1.28vw;
  color: #1E293D;
  display: flex;
  font-size: 3.58vw;
  gap: 3.84vw;
  line-height: 1.4;
  padding: 3.84vw 12.82vw 3.84vw 3.84vw;
  position: relative;
}
@media (min-width: 769px) {
  .case-detail .service-list li a {
    border-radius: 5px;
    font-size: 18px;
    gap: 15px;
    min-height: 100px;
    padding: 30px 40px;
  }
}
.case-detail .service-list li a::before {
  background: linear-gradient(90deg, #FF6736 0%, #F58528 100%);
  border-radius: 5px;
  content: "";
  display: block;
  inset: 0;
  position: absolute;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}
.case-detail .service-list li a::after {
  background: #fff url(../img/common/arrow.svg) no-repeat 50% 50%/2.05vw auto;
  border: 0.25vw solid #1E293D;
  border-radius: 50%;
  content: "";
  display: block;
  height: 6.41vw;
  position: absolute;
  right: 3.84vw;
  transition: 0.5s;
  z-index: 2;
  width: 6.41vw;
}
@media (min-width: 769px) {
  .case-detail .service-list li a::after {
    background-size: 10px auto;
    border-width: 1px;
    height: 40px;
    right: 40px;
    top: 50%;
    transform: translate(0, -50%);
    width: 40px;
  }
}
.case-detail .service-list li a:hover {
  color: #fff;
  opacity: 1;
}
.case-detail .service-list li a:hover::before {
  opacity: 1;
  transform: scale(1.02);
}
.case-detail .service-list li a:hover::after {
  background-image: url(../img/common/arrow-orange.svg);
  border: none;
  opacity: 1;
}
.case-detail .service-list li a b {
  position: relative;
  z-index: 2;
}
.case-detail .service-list li a span {
  display: inline-block;
  font-weight: 500;
}
.case-detail .service-list li > span {
  align-items: center;
  background-color: #fff;
  border-radius: 1.28vw;
  color: #1E293D;
  display: flex;
  font-size: 3.58vw;
  gap: 3.84vw;
  line-height: 1.4;
  padding: 3.84vw 12.82vw 3.84vw 3.84vw;
  position: relative;
}
@media (min-width: 769px) {
  .case-detail .service-list li > span {
    border-radius: 5px;
    font-size: 18px;
    gap: 15px;
    min-height: 100px;
    padding: 30px 40px;
  }
}
.case-detail .btn-area {
  margin: 15.38vw auto;
}
@media (min-width: 769px) {
  .case-detail .btn-area {
    margin: 60px auto;
  }
}
.case-detail .btn-area .btn {
  align-items: center;
  background-color: #fff;
  border: 0.25vw solid #BEBEBE;
  border-radius: 1.28vw;
  color: #1E293D;
  display: flex;
  font-size: 3.84vw;
  font-weight: 700;
  height: 17.94vw;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 769px) {
  .case-detail .btn-area .btn {
    border: 1px solid #BEBEBE;
    border-radius: 5px;
    height: 70px;
    font-size: 15px;
    max-width: 320px;
  }
}
.case-detail .btn-area .btn:hover {
  background-color: #1E293D;
  color: #fff;
  opacity: 1;
}

.download-form .articles {
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .download-form .articles {
    margin: 20px 0 0;
  }
}
.download-form .nav ul {
  margin: 5.12vw 0;
}
@media (min-width: 769px) {
  .download-form .nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
  }
}
@media (max-width: 768px) {
  .download-form .nav .btn-link-down {
    justify-content: flex-start;
    margin: 2.56vw 0 0;
    padding: 3.84vw 14.1vw 3.84vw 5.12vw;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .download-form .nav .btn-link-down::after {
    right: 5.12vw;
  }
}
.download-form .variation {
  background-color: #FFF7F2;
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .download-form .variation {
    padding: 70px 0;
  }
}
.download-form .item {
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .download-form .item {
    padding: 30px 0;
  }
}
.download-form .item .ttl {
  font-size: 6.66vw;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 7.69vw;
}
@media (min-width: 769px) {
  .download-form .item .ttl {
    font-size: 34px;
    margin: 0 0 60px;
  }
}
.download-form .company .list {
  justify-content: center;
}
.download-form .set {
  margin: 0 0 10.25vw;
}
@media (min-width: 769px) {
  .download-form .set {
    margin: 0;
  }
}
.download-form .set .article-card {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .download-form .article-card .card {
    padding-bottom: 0;
  }
}
.download-form .article-card .card .thumb {
  position: relative;
}
.download-form .article-card .card .thumb::after {
  background: url(../img/common/ico-download.svg) no-repeat 0 0/contain;
  bottom: 3.84vw;
  content: "";
  display: block;
  height: 7.69vw;
  position: absolute;
  right: 3.84vw;
  width: 7.69vw;
}
@media (min-width: 769px) {
  .download-form .article-card .card .thumb::after {
    bottom: 15px;
    height: 30px;
    right: 15px;
    width: 30px;
  }
}

.ttl-service {
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}
.ttl-service + p {
  margin: 6.41vw 0 0;
}
@media (min-width: 769px) {
  .ttl-service + p {
    margin: 30px 0 0;
  }
}
.ttl-service .txt {
  color: rgba(30, 41, 61, 0.7);
  font-size: 5.12vw;
}
@media (min-width: 769px) {
  .ttl-service .txt {
    font-size: 32px;
  }
}
.ttl-service .txt2 {
  display: block;
  font-size: 7.17vw;
  font-weight: 900;
  margin: 2.56vw 0 0;
}
@media (min-width: 769px) {
  .ttl-service .txt2 {
    font-size: 40px;
    margin: 10px 0 0;
  }
}
.ttl-service .txt2 b {
  color: #F08500;
  font-weight: 900;
}
.ttl-service .txt3 {
  font-size: 4.1vw;
  font-weight: 500;
}
@media (min-width: 769px) {
  .ttl-service .txt3 {
    font-size: 20px;
  }
}

.service-kv {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
@media (min-width: 769px) {
  .service-kv {
    min-height: 660px;
  }
}
.service-kv::after {
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -5%;
  content: "";
  display: block;
  height: 105%;
  position: absolute;
  transition: 1.5s;
  width: 100%;
  z-index: 1;
}
@media (min-width: 769px) {
  .service-kv::after {
    height: 120%;
  }
}
.service-kv.active::after {
  bottom: 0;
}
.service-kv [class*=box] {
  align-items: center;
  display: flex;
  flex-grow: 1;
  font-size: 4.61vw;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  z-index: 3;
}
@media (min-width: 769px) {
  .service-kv [class*=box] {
    font-size: 24px;
  }
}
.service-kv [class*=box] .wrap {
  padding: 0;
  position: relative;
}
@media (min-width: 769px) {
  .service-kv [class*=box] .wrap {
    padding: 0 30px;
    max-width: 1300px;
  }
}
.service-kv [class*=box] .txt {
  position: relative;
  z-index: 10;
}
.service-kv [class*=box] span {
  display: block;
  position: relative;
  z-index: 2;
}
.service-kv [class*=box] .txt2 {
  font-size: 6.15vw;
  margin: 2.56vw 0 1.28vw;
}
@media (min-width: 769px) {
  .service-kv [class*=box] .txt2 {
    font-size: 36px;
    margin: 20px 0 10px;
  }
}
.service-kv [class*=box] .txt3 {
  font-size: 4.1vw;
  font-weight: 500;
}
@media (min-width: 769px) {
  .service-kv [class*=box] .txt3 {
    font-size: 20px;
  }
}
.service-kv [class*=box] .ttl {
  font-family: "CLB3", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 12.82vw;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .service-kv [class*=box] .ttl {
    font-size: 85px;
  }
}
.service-kv [class*=box] .ttl u {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.service-kv [class*=box] .ttl u::after {
  background-color: #FFD63E;
  bottom: 5.12vw;
  content: "";
  display: block;
  height: 1.53vw;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: 100%;
  z-index: 1;
}
@media (min-width: 769px) {
  .service-kv [class*=box] .ttl u::after {
    bottom: 20px;
    height: 10px;
  }
}
.service-kv [class*=box] .ttl u.under {
  margin-bottom: 0.5em;
}
.service-kv [class*=box] .ttl u.under::after {
  bottom: -2.57vw;
  height: 1.53vw;
}
@media (min-width: 769px) {
  .service-kv [class*=box] .ttl u.under::after {
    bottom: -10px;
    height: 10px;
  }
}
.service-kv [class*=box] .ttl b {
  color: #FFD63E;
}
.service-kv [class*=box] .ttl .ttl-main {
  margin-bottom: 0.2em;
}
@media (min-width: 769px) {
  .service-kv [class*=box] .ttl .ttl-main {
    margin-bottom: 0.6em;
  }
}
.service-kv [class*=box] .ttl .ttl-main b {
  color: #FFD63E;
}
.service-kv [class*=box] .ttl .ttl-main span {
  display: inline;
}
.service-kv [class*=box] .ttl .ttl-main .ttl-sub {
  bottom: -1em;
  display: block;
  font-size: 4.61vw;
  font-weight: 900;
  left: 50%;
  letter-spacing: -0.05em;
  position: absolute;
  transform: translate(-50%, 0);
  width: 100vw;
}
@media (min-width: 769px) {
  .service-kv [class*=box] .ttl .ttl-main .ttl-sub {
    font-size: 30px;
  }
}
.service-kv [class*=box] .ico span {
  align-items: center;
  background-image: linear-gradient(to right, #E79D5A, #F2D05F);
  border: 0.25vw solid #1E293D;
  border-radius: 9999px;
  color: #1E293D;
  display: inline-flex;
  font-size: 3.58vw;
  font-weight: 700;
  justify-content: center;
  margin: 0 0.51vw;
  padding: 0.76vw 1.53vw;
}
@media (min-width: 769px) {
  .service-kv [class*=box] .ico span {
    border: none;
    font-size: 24px;
    margin: 0 5px;
    padding: 5px 30px;
  }
}
.service-kv [class*=box] [class*=img] {
  position: absolute;
  z-index: 2;
}
.service-kv [class*=box] .pc {
  display: none;
}
@media (min-width: 769px) {
  .service-kv [class*=box] .pc {
    display: block;
  }
}
.service-kv [class*=box] .sp {
  display: none;
}
@media (max-width: 768px) {
  .service-kv [class*=box] .sp {
    display: block;
  }
}
@media (min-width: 769px) {
  .service-kv .kv-contact {
    margin: 0 0 35px;
  }
}

.service-head {
  padding: 10.25vw 0 0;
}
@media (min-width: 769px) {
  .service-head {
    padding: 85px 0 115px;
  }
}
.service-head .wrap {
  max-width: 1160px;
}
.service-head .for {
  font-weight: 900;
  margin: 6.41vw 0 0;
}
@media (min-width: 769px) {
  .service-head .for {
    margin: 60px 0 0;
  }
}
@media (min-width: 769px) {
  .service-head .for .wrap {
    display: flex;
    justify-content: space-between;
  }
}
.service-head .for .ttl {
  align-items: center;
  background-color: #F08500;
  border-radius: 5.12vw;
  color: #fff;
  display: flex;
  font-size: 4.61vw;
  height: 10.25vw;
  justify-content: center;
  margin: 6.41vw 0 0;
}
@media (min-width: 769px) {
  .service-head .for .ttl {
    border-radius: 30px;
    font-size: 20px;
    height: 60px;
    margin: 0;
  }
}
.service-head .for .list {
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .service-head .for .list {
    font-size: 20px;
    margin: 20px 0 0;
  }
}
.service-head .for .list li {
  background: url(../img/common/service-lead-arrow.svg) no-repeat 0 50%/3.84vw auto;
  margin: 2.56vw 0 0;
  line-height: 1.4;
  padding: 0 0 0 6.41vw;
}
@media (min-width: 769px) {
  .service-head .for .list li {
    background-size: 18px auto;
    margin: 10px 0 0;
    padding: 0 0 0 25px;
  }
}
.service-head .for .list li b {
  color: #F08500;
}
.service-head .for .img {
  margin: 6.41vw auto;
  width: 35.89vw;
}
@media (min-width: 769px) {
  .service-head .for .img {
    margin: 0;
    max-width: 250px;
    order: 2;
    width: 22.7%;
  }
}
@media (min-width: 769px) {
  .service-head .for [class*=item] {
    max-width: 400px;
    width: 36.3%;
  }
}
@media (min-width: 769px) {
  .service-head .for .item01 {
    order: 1;
  }
}
@media (min-width: 769px) {
  .service-head .for .item02 {
    order: 3;
  }
}
.service-head .for2 {
  font-weight: 900;
  margin: 6.41vw 0 0;
}
@media (min-width: 769px) {
  .service-head .for2 {
    margin: 30px 0 0;
  }
}
@media (min-width: 769px) {
  .service-head .for2 .wrap {
    align-items: center;
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
  }
}
.service-head .for2 .ttl {
  align-items: center;
  background-color: #F08500;
  border-radius: 5.12vw;
  color: #fff;
  display: flex;
  font-size: 4.61vw;
  height: 10.25vw;
  justify-content: center;
  margin: 6.41vw 0 0;
}
@media (min-width: 769px) {
  .service-head .for2 .ttl {
    border-radius: 30px;
    font-size: 20px;
    height: 60px;
    margin: 0;
  }
}
.service-head .for2 .list {
  font-size: 3.58vw;
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .service-head .for2 .list {
    font-size: 20px;
    margin: 20px 0 0;
  }
}
.service-head .for2 .list li {
  background: url(../img/common/service-check.svg) no-repeat 5.12vw 50%/3.58vw auto;
  border-radius: 9999px;
  margin: 0;
  line-height: 1.4;
  padding: 3.84vw 3.84vw 3.84vw 11.53vw;
}
@media (min-width: 769px) {
  .service-head .for2 .list li {
    background-size: 18px auto;
    background-position: 20px 50%;
    padding: 15px 15px 15px 50px;
  }
}
.service-head .for2 .list li:nth-child(2n+1) {
  background-color: #F2F4F8;
}
.service-head .for2 .list li b {
  color: #F08500;
}
.service-head .for2 .img {
  margin: 6.41vw auto;
  width: 35.89vw;
}
@media (min-width: 769px) {
  .service-head .for2 .img {
    margin: 0;
    max-width: 250px;
    width: 24%;
  }
}
@media (min-width: 769px) {
  .service-head .for2 [class*=item] {
    max-width: 770px;
    width: 74%;
  }
}

.service-lead {
  background-color: #FFF7F2;
  padding: 15.38vw 0;
  position: relative;
}
@media (min-width: 769px) {
  .service-lead {
    padding: 120px 0;
  }
}
.service-lead::after {
  background-color: #FFF7F2;
  bottom: -5.65vw;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  display: block;
  height: 5.64vw;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: 26.15vw;
  z-index: 2;
}
@media (min-width: 769px) {
  .service-lead::after {
    bottom: -32px;
    height: 32px;
    width: 146px;
  }
}
@media (max-width: 768px) {
  .service-lead .wrap {
    padding: 0;
  }
}
@media (min-width: 769px) {
  .service-lead .head {
    align-items: center;
    display: flex;
    justify-content: space-around;
    max-width: 1100px;
  }
}
.service-lead .head .txt {
  font-weight: 900;
  text-align: center;
}
@media (min-width: 769px) {
  .service-lead .head .txt {
    flex-grow: 1;
  }
}
.service-lead .head .txt .ttl {
  font-weight: 900;
}
@media (min-width: 769px) {
  .service-lead .head .txt .ttl {
    font-size: 36px;
  }
}
.service-lead .head .txt .ttl .logo {
  display: block;
  margin: 0 auto 1.28vw;
  width: 64.1vw;
}
@media (min-width: 769px) {
  .service-lead .head .txt .ttl .logo {
    margin: 0 auto;
    width: auto;
  }
}
.service-lead .head .txt .ttl .logo img {
  margin: 0 auto;
}
.service-lead .head .txt p {
  font-size: 4.61vw;
  line-height: 1.8;
  margin: 2.56vw 0 0;
}
@media (min-width: 769px) {
  .service-lead .head .txt p {
    font-size: 28px;
    margin: 20px 0 0;
  }
}
.service-lead .head .txt p b {
  color: #F08500;
  font-weight: 900;
}
@media (min-width: 769px) {
  .service-lead .head .txt p b span {
    font-size: 34px;
  }
}
.service-lead .head .img {
  margin: 7.69vw auto;
  width: 61.53vw;
}
@media (min-width: 769px) {
  .service-lead .head .img {
    margin: 0 auto;
    max-width: 386px;
    width: 37.2%;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .service-lead .head .img {
    width: 29%;
  }
}

.service-improvement {
  padding: 10.25vw 0;
}
@media (min-width: 769px) {
  .service-improvement {
    padding: 80px 0 120px;
  }
}
.service-improvement .summary {
  font-size: 5.12vw;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .service-improvement .summary {
    font-size: 28px;
  }
}
.service-improvement .summary b {
  color: #F08500;
}
.service-improvement .img {
  margin: 3.84vw 0;
}
@media (min-width: 769px) {
  .service-improvement .img {
    margin: 40px 0 0;
  }
}
.service-improvement .summary2 {
  color: #ED5053;
  font-size: 4.61vw;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 769px) {
  .service-improvement .summary2 {
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 24px;
    gap: 10px;
    margin: 10px 0 0;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .service-improvement .summary2 .equal {
    margin: 1.28vw 0;
    transform: rotate(90deg);
  }
}

.service-example {
  padding: 15.38vw 0 0;
}
@media (min-width: 769px) {
  .service-example {
    padding: 120px 0 0;
  }
}
@media (min-width: 769px) {
  .service-example .ttl-sec {
    font-size: 40px;
  }
}
.service-example .item {
  margin: 12.82vw 0 0;
}
@media (min-width: 769px) {
  .service-example .item {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 50px 0 0;
  }
}
@media (min-width: 769px) {
  .service-example .item:first-child {
    margin-top: 80px;
  }
}
@media (min-width: 769px) {
  .service-example .item .img {
    max-width: 300px;
    width: 25%;
  }
}
@media (min-width: 769px) {
  .service-example .item .txt {
    max-width: 840px;
    width: 70%;
  }
}
.service-example .item .txt .ttl {
  font-size: 6.66vw;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .service-example .item .txt .ttl {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .service-example .item .txt dt {
    margin: 5.12vw 0 0;
  }
}
.service-example .item .txt dd {
  line-height: 1.8;
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .service-example .item .txt dd {
    font-size: 18px;
    margin: 10px 0 0;
  }
}

.service-performance02 {
  background-color: #FFF7F2;
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .service-performance02 {
    padding: 120px 0;
  }
}
@media (min-width: 769px) {
  .service-performance02 .head {
    align-items: center;
    display: flex;
    justify-content: space-around;
    max-width: 1100px;
  }
}
.service-performance02 .head .txt {
  font-weight: 900;
  text-align: center;
}
@media (min-width: 769px) {
  .service-performance02 .head .txt {
    flex-grow: 1;
  }
}
.service-performance02 .head .txt .ttl {
  font-weight: 900;
}
@media (min-width: 769px) {
  .service-performance02 .head .txt .ttl {
    font-size: 36px;
  }
}
.service-performance02 .head .txt .ttl .logo {
  display: block;
  margin: 0 auto 1.28vw;
  width: 64.1vw;
}
@media (min-width: 769px) {
  .service-performance02 .head .txt .ttl .logo {
    margin: 0 auto;
    width: auto;
  }
}
.service-performance02 .head .txt .ttl .logo img {
  margin: 0 auto;
}
.service-performance02 .head .txt p {
  font-size: 4.61vw;
  line-height: 1.8;
  margin: 2.56vw 0 0;
}
@media (min-width: 769px) {
  .service-performance02 .head .txt p {
    font-size: 28px;
    margin: 20px 0 0;
  }
}
.service-performance02 .head .txt p b {
  color: #F08500;
}
@media (min-width: 769px) {
  .service-performance02 .head .txt p b span {
    font-size: 34px;
  }
}
.service-performance02 .head .img {
  margin: 7.69vw auto;
  width: 61.53vw;
}
@media (min-width: 769px) {
  .service-performance02 .head .img {
    margin: 0 auto;
    max-width: 386px;
    width: 37.2%;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .service-performance02 .head .img {
    width: 29%;
  }
}
.service-performance02 .box {
  background-color: #fff;
  border-radius: 2.56vw;
  padding: 7.69vw 5.12vw;
  position: relative;
  text-align: center;
}
@media (min-width: 769px) {
  .service-performance02 .box {
    border-radius: 40px;
    margin: 60px 0 0;
    padding: 80px 6.25% 40px;
  }
}
.service-performance02 .box::after {
  background-color: #fff;
  bottom: -5.13vw;
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  height: 5.12vw;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: 22.56vw;
}
@media (min-width: 769px) {
  .service-performance02 .box::after {
    bottom: -32px;
    height: 32px;
    width: 140px;
  }
}
@media (min-width: 769px) {
  .service-performance02 .box .ttl-sec {
    font-size: 40px;
    line-height: 1.5;
  }
}
.service-performance02 .box .ttl-sec span {
  color: rgba(30, 41, 61, 0.7);
  font-size: 5.12vw;
  font-weight: 900;
}
@media (min-width: 769px) {
  .service-performance02 .box .ttl-sec span {
    font-size: 32px;
  }
}
.service-performance02 .box .ttl-sec b {
  font-weight: 900;
}
.service-performance02 .box .item {
  margin: 7.69vw 0 0;
}
@media (min-width: 769px) {
  .service-performance02 .box .item {
    margin: 60px 0 0;
    max-width: 1050px;
  }
}
.service-performance02 .box .item .ttl {
  align-items: center;
  background-color: #fff;
  border-radius: 1.28vw;
  color: rgba(30, 41, 61, 0.6);
  display: inline-flex;
  font-size: 4.1vw;
  justify-content: center;
  line-height: 1.2;
  min-width: 29.74vw;
  margin: 0 0 2.56vw;
  padding: 0 6.41vw;
}
@media (min-width: 769px) {
  .service-performance02 .box .item .ttl {
    border-radius: 5px;
    font-size: 18px;
    min-width: 152px;
    margin: 0 0 24px;
    padding: 3px 30px;
  }
}
.service-performance02 .box .item dl {
  display: flex;
  font-weight: 700;
  gap: 2.56vw;
  line-height: 1.4;
  margin: 2.56vw 2.56vw 0 10.25vw;
  min-height: 8.97vw;
}
@media (min-width: 769px) {
  .service-performance02 .box .item dl {
    gap: 20px;
    margin: 10px 0 0;
    min-height: 40px;
  }
}
.service-performance02 .box .item dt {
  align-items: center;
  background-color: rgba(30, 41, 61, 0.7);
  border-radius: 1.02vw;
  color: #fff;
  display: flex;
  font-size: 3.58vw;
  justify-content: center;
  width: 24.61vw;
}
@media (min-width: 769px) {
  .service-performance02 .box .item dt {
    border-radius: 5px;
    font-size: 16px;
    width: 110px;
  }
}
.service-performance02 .box .item dd {
  align-items: center;
  color: rgba(30, 41, 61, 0.7);
  display: flex;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 5.12vw;
}
@media (min-width: 769px) {
  .service-performance02 .box .item dd {
    font-size: 22px;
  }
}
.service-performance02 .box .item dd b {
  font-size: 6.66vw;
}
@media (min-width: 769px) {
  .service-performance02 .box .item dd b {
    font-size: 32px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .service-performance02 .box .item dd b {
    font-size: 26px;
  }
}
@media (min-width: 769px) and (max-width: 1300px) {
  .service-performance02 .box .item dd b.s {
    font-size: 21px;
  }
}
.service-performance02 .box .item dd span {
  font-size: 4.1vw;
  font-weight: 700;
  margin-left: 1.28vw;
}
@media (min-width: 769px) {
  .service-performance02 .box .item dd span {
    font-size: 20px;
    margin-left: 5px;
  }
}
@media (min-width: 769px) {
  .service-performance02 .box .item .box2 {
    display: flex;
    margin: 10px 0 0;
  }
}
.service-performance02 .box .item .before,
.service-performance02 .box .item .after {
  padding: 5.12vw 0 8.97vw 0;
  position: relative;
}
@media (min-width: 769px) {
  .service-performance02 .box .item .before,
  .service-performance02 .box .item .after {
    padding: 20px 9% 28px;
  }
}
.service-performance02 .box .item .before::before,
.service-performance02 .box .item .after::before {
  color: rgba(30, 41, 61, 0.6);
  content: "BEFORE";
  display: block;
  font-size: 4.61vw;
  font-weight: 900;
  left: 9.74vw;
  position: absolute;
  top: 65%;
  transform: translate(0, -50%) rotate(-90deg);
  transform-origin: 0 100%;
}
@media (min-width: 769px) {
  .service-performance02 .box .item .before::before,
  .service-performance02 .box .item .after::before {
    font-size: 22px;
    left: 50px;
    top: 60%;
  }
}
.service-performance02 .box .item .before {
  background-color: #F2F4F8;
  border-radius: 2.56vw 2.56vw 0 0;
}
@media (min-width: 769px) {
  .service-performance02 .box .item .before {
    border-radius: 10px 0 0 10px;
    width: 51.4%;
  }
}
.service-performance02 .box .item .after {
  background-color: #FFF9E5;
  border-radius: 0 0 2.56vw 2.56vw;
  color: #ED5053;
  padding: 8.97vw 0 5.12vw 0;
}
@media (min-width: 769px) {
  .service-performance02 .box .item .after {
    border-radius: 0 10px 10px 0;
    padding: 20px 7.1% 28px;
    width: 48.6%;
  }
}
.service-performance02 .box .item .after::before {
  color: #ED5053;
  content: "AFTER";
  top: 55%;
}
@media (min-width: 769px) {
  .service-performance02 .box .item .after::before {
    left: initial;
    right: -25px;
    transform: translate(0, -50%) rotate(90deg);
    top: 30%;
  }
}
.service-performance02 .box .item .after::after {
  background: url(../img/common/service-performance-arrow.svg) no-repeat 50% 50%/contain;
  content: "";
  height: 5.64vw;
  left: 50%;
  position: absolute;
  top: -2.57vw;
  transform: translate(-50%, 0) rotate(90deg);
  width: 7.94vw;
}
@media (min-width: 769px) {
  .service-performance02 .box .item .after::after {
    height: 39px;
    left: -30px;
    top: 50%;
    transform: translate(0, -50%);
    width: 58px;
  }
}
.service-performance02 .box .item .after dt {
  background-color: #ED5053;
}
.service-performance02 .box .item .after .ttl,
.service-performance02 .box .item .after dd {
  color: #ED5053;
}
.service-performance02 .box .item .after .result {
  align-items: center;
  background-color: #ED5053;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 3.58vw;
  font-weight: 700;
  height: 20.51vw;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -1.8vw;
  top: -4.11vw;
  width: 20.51vw;
}
@media (min-width: 769px) {
  .service-performance02 .box .item .after .result {
    font-size: 14px;
    height: 80px;
    right: 66px;
    top: -27px;
    width: 80px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .service-performance02 .box .item .after .result {
    right: -10px;
  }
}
.service-performance02 .box .item .after .result span {
  align-items: baseline;
  display: flex;
}
.service-performance02 .box .item .after .result span b {
  font-size: 7.69vw;
  font-style: italic;
  letter-spacing: -0.04em;
  margin-right: 1.02vw;
}
@media (min-width: 769px) {
  .service-performance02 .box .item .after .result span b {
    font-size: 30px;
    margin-right: 4px;
  }
}
.service-performance02 .box .item .after .result span b em {
  font-size: 6.15vw;
}
@media (min-width: 769px) {
  .service-performance02 .box .item .after .result span b em {
    font-size: 24px;
  }
}
.service-performance02 .box .summary {
  margin: 7.69vw 0 0;
}
@media (min-width: 769px) {
  .service-performance02 .box .summary {
    align-items: center;
    display: flex;
    margin: 40px 0 0;
  }
}
@media (min-width: 769px) {
  .service-performance02 .box .summary .txt {
    flex-grow: 1;
  }
}
.service-performance02 .box .summary .txt p {
  font-size: 5.12vw;
  font-weight: 700;
}
@media (min-width: 769px) {
  .service-performance02 .box .summary .txt p {
    font-size: 32px;
    line-height: 1.7;
    text-align: left;
  }
}
.service-performance02 .box .summary .txt p b {
  color: #F08500;
}
.service-performance02 .box .summary .txt p b span {
  font-size: 8.71vw;
  font-weight: 900;
  line-height: 1;
}
@media (min-width: 769px) {
  .service-performance02 .box .summary .txt p b span {
    font-size: 50px;
  }
}
.service-performance02 .box .summary .img {
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .service-performance02 .box .summary .img {
    margin: 0;
    max-width: 350px;
    width: 33.3%;
  }
}
.service-performance02 .performance {
  margin: 15.38vw 0 0;
}
@media (min-width: 769px) {
  .service-performance02 .performance {
    margin: 80px 0 0;
  }
}
.service-performance02 .performance .ttl {
  font-size: 5.12vw;
}
@media (min-width: 769px) {
  .service-performance02 .performance .ttl {
    font-size: 28px;
    text-align: center;
  }
}
.service-performance02 .performance .list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2.05vw;
  justify-content: center;
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .service-performance02 .performance .list ul {
    gap: 15px;
    margin: 40px 0 0;
  }
}
.service-performance02 .performance .list li {
  align-items: center;
  background-color: rgba(30, 41, 61, 0.7);
  border-radius: 1.28vw;
  color: #fff;
  display: inline-flex;
  font-size: 3.07vw;
  height: 7.17vw;
  justify-content: center;
  padding: 0 2.56vw;
}
@media (min-width: 769px) {
  .service-performance02 .performance .list li {
    border-radius: 5px;
    font-size: 16px;
    height: 38px;
    padding: 0 15px;
  }
}

.service-plan {
  background-color: #FFF7F2;
  padding: 20.51vw 0;
}
@media (min-width: 769px) {
  .service-plan {
    padding: 120px 0;
  }
}
@media (max-width: 768px) {
  .service-plan .ttl-sec {
    margin: 0 -7.7vw 7.69vw;
  }
}
.service-plan .list {
  text-align: center;
}
@media (min-width: 769px) {
  .service-plan .list {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .service-plan .list .more {
    overflow: hidden;
    position: relative;
    transition: 2s;
  }
}
.service-plan .list .more.open::after {
  content: none;
}
.service-plan .list .more.open .btn-more {
  display: none;
}
@media (max-width: 768px) {
  .service-plan .list .more::after {
    background: linear-gradient(to bottom, transparent 0%, #fff 100%);
    bottom: 0;
    content: "";
    display: block;
    height: 50%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
  }
}
.service-plan .list .more .btn-more {
  bottom: 7.69vw;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: 100%;
  z-index: 2;
}
@media (min-width: 769px) {
  .service-plan .list .more .btn-more {
    display: none;
  }
}
.service-plan .list dl {
  background-color: #fff;
  border: 0.25vw solid #898989;
  margin: 2.56vw 0;
  padding: 5.12vw;
}
@media (min-width: 769px) {
  .service-plan .list dl {
    border: 1px solid #898989;
    border-left-width: 0;
    margin: 60px 0 0;
    padding: 40px 30px;
    width: 33.3333333333%;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .service-plan .list dl {
    width: 50%;
  }
}
@media (min-width: 769px) {
  .service-plan .list dl:nth-child(3n+1) {
    border-left-width: 1px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .service-plan .list dl:nth-child(3n+1) {
    border-left-width: 0;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .service-plan .list dl:nth-child(2n+1) {
    border-left-width: 1px;
  }
}
.service-plan .list dt {
  align-items: center;
  background-image: linear-gradient(to right, #FF6736, #F08500);
  border-radius: 9999px;
  color: #fff;
  display: inline-flex;
  font-size: 5.12vw;
  font-weight: 700;
  line-height: 1;
  padding: 2.56vw 7.69vw;
}
@media (min-width: 769px) {
  .service-plan .list dt {
    font-size: 20px;
    gap: 10px;
    padding: 10px 30px;
  }
}
.service-plan .list dt b {
  font-size: 7.17vw;
  margin-left: 2.56vw;
}
@media (min-width: 769px) {
  .service-plan .list dt b {
    font-size: 28px;
    margin-left: 10px;
  }
}
.service-plan .list .price {
  align-items: baseline;
  display: flex;
  font-size: 9.23vw;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin: 2.56vw 0 0;
}
@media (min-width: 769px) {
  .service-plan .list .price {
    font-size: 36px;
    margin: 10px 0 0;
  }
}
.service-plan .list .price b {
  color: #F08500;
  font-size: 15.38vw;
  margin: 0 1.79vw;
}
@media (min-width: 769px) {
  .service-plan .list .price b {
    font-size: 60px;
    margin: 0 7px;
  }
}
.service-plan .list .summary {
  background-color: #FFF7F2;
  font-weight: 700;
  line-height: 1.5;
  margin: 5.12vw 0 0;
  padding: 3.84vw 0;
}
@media (min-width: 769px) {
  .service-plan .list .summary {
    margin: 20px 0 0;
    padding: 15px 0;
  }
}
.service-plan .list .summary .equivalent {
  color: rgba(30, 41, 61, 0.7);
}
.service-plan .list .summary .equivalent b {
  color: #F08500;
  font-size: 4.61vw;
}
@media (min-width: 769px) {
  .service-plan .list .summary .equivalent b {
    font-size: 18px;
  }
}
.service-plan .list .summary .profit {
  color: #ED5053;
  font-size: 4.61vw;
}
@media (min-width: 769px) {
  .service-plan .list .summary .profit {
    font-size: 18px;
  }
}
.service-plan .list .summary .profit::before {
  background-color: #ED5053;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  display: block;
  height: 2.56vw;
  margin: 2.56vw auto 1.28vw;
  width: 3.07vw;
}
@media (min-width: 769px) {
  .service-plan .list .summary .profit::before {
    height: 10px;
    margin: 10px auto 5px;
    width: 12px;
  }
}
.service-plan .list .summary .profit b {
  font-size: 6.15vw;
}
@media (min-width: 769px) {
  .service-plan .list .summary .profit b {
    font-size: 24px;
  }
}
.service-plan .list .example {
  background-color: #F2F4F8;
  margin: 5.12vw 0 0;
  padding: 5.12vw 5.12vw 6.41vw;
}
@media (min-width: 769px) {
  .service-plan .list .example {
    margin: 20px 0 0;
    padding: 20px;
  }
}
.service-plan .list .example .ttl {
  background-color: #1E293D;
  border-radius: 9999px;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  line-height: 1;
  padding: 2.56vw 7.69vw;
}
@media (min-width: 769px) {
  .service-plan .list .example .ttl {
    padding: 10px 30px;
  }
}
.service-plan .list .example ul {
  margin: 5.12vw 0 0 1em;
}
@media (min-width: 769px) {
  .service-plan .list .example ul {
    margin: 20px 0 0 1em;
  }
}
.service-plan .list .example li {
  font-size: 3.58vw;
  line-height: 1.3;
  list-style: "・";
  margin: 2.56vw 0 0;
  text-align: left;
}
@media (min-width: 769px) {
  .service-plan .list .example li {
    font-size: 14px;
    margin: 10px 0 0;
  }
}

.service-price {
  background-color: #FFF7F2;
  padding: 20.51vw 0 15.38vw;
}
@media (min-width: 769px) {
  .service-price {
    padding: 120px 0;
  }
}
.service-price .wrap {
  max-width: 960px;
}
.service-price dl {
  border-radius: 1.28vw;
  box-shadow: 0 0 2.05vw rgba(0, 0, 0, 0.1);
  margin: 10.25vw 0 0;
  overflow: hidden;
}
@media (min-width: 769px) {
  .service-price dl {
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    margin: 60px 0 0;
  }
}
.service-price dl + dl {
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .service-price dl + dl {
    margin: 20px 0 0;
  }
}
.service-price .btn-area + dl {
  margin: 15.38vw auto 0;
}
@media (min-width: 769px) {
  .service-price .btn-area + dl {
    margin: 60px auto 0;
  }
}
.service-price dt {
  align-items: center;
  background-image: linear-gradient(to bottom, #FF6736, #F08500);
  color: #fff;
  display: flex;
  font-size: 4.61vw;
  font-weight: 700;
  justify-content: center;
  line-height: 1.6;
  min-height: 10.25vw;
  padding: 2.56vw 0;
  text-align: center;
}
@media (min-width: 769px) {
  .service-price dt {
    font-size: 20px;
    min-height: 60px;
    padding: 10px 0;
  }
}
.service-price dd {
  background-color: #fff;
  padding: 5.12vw;
}
@media (min-width: 769px) {
  .service-price dd {
    padding: 40px 60px 30px;
  }
}
@media (min-width: 769px) {
  .service-price dd ul {
    column-count: 2;
  }
}
.service-price dd li {
  align-items: center;
  display: flex;
  font-size: 3.84vw;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 2.56vw;
}
@media (min-width: 769px) {
  .service-price dd li {
    font-size: 18px;
    margin: 0 0 15px;
  }
}
.service-price dd li .ico {
  align-items: center;
  background-color: #FFF7F2;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  height: 15.38vw;
  justify-content: center;
  margin-right: 5.12vw;
  width: 15.38vw;
}
@media (min-width: 769px) {
  .service-price dd li .ico {
    height: 80px;
    margin-right: 20px;
    width: 80px;
  }
}
@media (max-width: 768px) {
  .service-price dd li .ico img {
    width: 8.71vw;
  }
}
@media (max-width: 768px) {
  .service-price dd li .ico [src*=price02] {
    width: 6.15vw;
  }
}
@media (max-width: 768px) {
  .service-price dd li .ico [src*=price03] {
    width: 5.38vw;
  }
}
@media (max-width: 768px) {
  .service-price dd li .ico [src*=price04] {
    width: 6.66vw;
  }
}
@media (max-width: 768px) {
  .service-price dd li .ico [src*=price06] {
    width: 7.17vw;
  }
}
.service-price dd li sup {
  vertical-align: text-top;
}
.service-price dd .notice {
  font-size: 3.58vw;
  font-weight: 400;
  text-align: right;
}
@media (min-width: 769px) {
  .service-price dd .notice {
    font-size: 14px;
  }
}
.service-price dd.fee {
  color: #ED5053;
  font-size: 3.07vw;
  line-height: 1;
  padding: 5.12vw 0;
  text-align: center;
}
@media (min-width: 769px) {
  .service-price dd.fee {
    font-size: 18px;
    padding: 30px 0;
  }
}
.service-price dd.fee .price {
  align-items: baseline;
  display: flex;
  font-weight: 700;
  justify-content: center;
}
.service-price dd.fee .price b {
  align-items: center;
  display: flex;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 10.25vw;
}
@media (min-width: 769px) {
  .service-price dd.fee .price b {
    font-size: 64px;
  }
}
.service-price dd.fee .price b span {
  font-size: 4.61vw;
}
@media (min-width: 769px) {
  .service-price dd.fee .price b span {
    font-size: 28px;
  }
}
.service-price dd.fee .price b .yen {
  font-size: 10.25vw;
  margin-right: 1.28vw;
}
@media (min-width: 769px) {
  .service-price dd.fee .price b .yen {
    font-size: 64px;
    margin-right: 5px;
  }
}
.service-price dd.fee .detail {
  margin: 5.12vw 2.56vw 0;
}
@media (min-width: 769px) {
  .service-price dd.fee .detail {
    margin: 30px 50px 20px;
  }
}
.service-price dd.fee .detail dl {
  background: #FFF7F2;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 5.12vw 2.56vw;
  width: 100%;
}
@media (min-width: 769px) {
  .service-price dd.fee .detail dl {
    padding: 30px 40px;
  }
}
.service-price dd.fee .detail dl dt {
  background: #F08500;
  border-radius: 9999px;
  font-size: 4.1vw;
  height: 7.69vw;
  margin: 0 2.56vw;
  min-height: auto;
}
@media (min-width: 769px) {
  .service-price dd.fee .detail dl dt {
    font-size: 18px;
    height: 36px;
    margin: 0 10px;
  }
}
.service-price dd.fee .detail dl dd {
  background-color: transparent;
  color: #1E293D;
  padding: 0;
  text-align: left;
}
.service-price dd.fee .detail dl dd ul {
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .service-price dd.fee .detail dl dd ul {
    margin: 20px 0 0;
  }
}
.service-price dd.fee .detail dl dd li .ico {
  background-color: #fff;
}
@media (min-width: 769px) {
  .service-price dd.fee .detail .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0 0;
  }
}
.service-price dd.fee .detail .box {
  background-color: #fff;
}
@media (min-width: 769px) {
  .service-price dd.fee .detail .box {
    width: calc(50% - 10px);
  }
}
.service-price dd.fee .detail .box.full {
  width: 100%;
}
.service-price dd.fee .detail .box.full dd ul {
  display: block;
}
@media (min-width: 769px) {
  .service-price dd.fee .detail .box.full dd ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
    margin-top: 10px;
  }
}
.service-price dd.fee .detail .box dl {
  background-color: initial;
  text-align: center;
}
@media (min-width: 769px) {
  .service-price dd.fee .detail .box dl {
    padding: 20px 15px;
  }
}
.service-price dd.fee .detail .box dt {
  background-color: #1E293D;
  display: inline-flex;
  padding: 0 3.84vw;
}
@media (min-width: 769px) {
  .service-price dd.fee .detail .box dt {
    font-size: 16px;
    padding: 0 30px;
  }
}
.service-price dd.fee .detail .box dd ul {
  column-count: unset;
}
@media (min-width: 769px) {
  .service-price dd.fee .detail .box dd ul {
    margin: 20px 0 0;
  }
}
.service-price dd.fee .detail .box dd li {
  display: block;
  font-weight: 500;
  margin: 0.5em 0 0 1em;
  text-indent: -1em;
}
@media (min-width: 769px) {
  .service-price dd.fee .detail .box dd li {
    font-size: 14px;
  }
}
.service-price dd.fee .detail .box dd li::before {
  content: "・";
}

.service-price02 {
  background-color: #FFF7F2;
  padding: 20.51vw 0 15.38vw;
}
@media (min-width: 769px) {
  .service-price02 {
    padding: 120px 0;
  }
}
.service-price02 .fee {
  background-color: #fff;
  border: 1.05vw solid #F08500;
  border-radius: 2.56vw;
  padding: 7.69vw 5.12vw;
}
@media (min-width: 769px) {
  .service-price02 .fee {
    border-width: 4px;
    border-radius: 10px;
    margin: 0 auto;
    padding: 40px 60px;
    max-width: 1000px;
  }
}
.service-price02 .fee.consulting {
  border-color: #ED5053;
}
.service-price02 .fee dl {
  line-height: 1.4;
  margin: 0 0 5.12vw;
  text-align: center;
}
@media (min-width: 769px) {
  .service-price02 .fee dl {
    margin: 0 0 30px;
  }
}
.service-price02 .fee dt {
  font-size: 4.61vw;
  font-weight: 700;
}
@media (min-width: 769px) {
  .service-price02 .fee dt {
    font-size: 24px;
  }
}
.service-price02 .fee dd {
  color: #F08500;
  font-size: 6.15vw;
  font-weight: 900;
}
@media (min-width: 769px) {
  .service-price02 .fee dd {
    font-size: 30px;
  }
}
.service-price02 .fee dd b {
  font-size: 8.71vw;
}
@media (min-width: 769px) {
  .service-price02 .fee dd b {
    font-size: 40px;
  }
}
.service-price02 .fee p {
  font-size: 3.58vw;
  font-weight: 400;
  line-height: 1.8;
  margin: 2.56vw -1.29vw 0 0;
}
@media (min-width: 769px) {
  .service-price02 .fee p {
    font-size: 14px;
    margin: 5px 0 0;
    text-align: center;
  }
}
.service-price02 .fee p b {
  font-size: 4.1vw;
  font-weight: 500;
}
@media (min-width: 769px) {
  .service-price02 .fee p b {
    font-size: 16px;
  }
}
.service-price02 .fee .notice {
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .service-price02 .fee .notice {
    margin: 20px 0 0;
  }
}
.service-price02 .fee .notice p {
  text-align: left;
}
.service-price02 .fee .price-box .price {
  color: #ED5053;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
.service-price02 .fee .price-box .price b {
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 9.23vw;
}
@media (min-width: 769px) {
  .service-price02 .fee .price-box .price b {
    font-size: 64px;
  }
}
.service-price02 .fee .price-box .price span {
  font-size: 4.61vw;
}
@media (min-width: 769px) {
  .service-price02 .fee .price-box .price span {
    font-size: 32px;
  }
}
.service-price02 .fee .price-box p {
  text-align: center;
}
.service-price02 .fee .price-box p b {
  color: #ED5053;
  font-size: 4.1vw;
  font-weight: 700;
}
@media (min-width: 769px) {
  .service-price02 .fee .price-box p b {
    font-size: 24px;
  }
}
.service-price02 .setting {
  margin: 10.25vw 0 0;
}
@media (min-width: 769px) {
  .service-price02 .setting {
    margin: 60px 0 0;
  }
}
.service-price02 .setting + .fee {
  margin: 15.38vw auto 0;
}
@media (min-width: 769px) {
  .service-price02 .setting + .fee {
    margin: 100px auto 0;
  }
}
.service-price02 .setting .ttl {
  font-size: 5.12vw;
  line-height: 1.4;
  margin: 7.69vw 0;
  text-align: center;
}
@media (min-width: 769px) {
  .service-price02 .setting .ttl {
    font-size: 24px;
    margin: 60px 0 0;
  }
}
.service-price02 .setting dl {
  border: 0.25vw solid #1E293D;
  border-radius: 2.56vw;
  margin: 5.12vw 0 0;
  overflow: hidden;
}
@media (min-width: 769px) {
  .service-price02 .setting dl {
    border-width: 1px;
    border-radius: 10px;
    display: flex;
    margin: 40px 0 0;
  }
}
.service-price02 .setting dt {
  align-items: center;
  background-color: #F2F4F8;
  display: flex;
  font-size: 4.61vw;
  font-weight: 700;
  gap: 3.84vw;
  line-height: 1.66;
  padding: 3.84vw 5.12vw;
}
@media (min-width: 769px) {
  .service-price02 .setting dt {
    flex-shrink: 0;
    font-size: 18px;
    gap: 15px;
    min-width: 320px;
    padding: 10px 10px 10px 30px;
    width: 26.6%;
  }
}
@media (min-width: 769px) {
  .service-price02 .setting dt img {
    width: 50px;
  }
}
.service-price02 .setting dd {
  background-color: #fff;
  padding: 5.12vw 5.12vw 7.69vw;
}
@media (min-width: 769px) {
  .service-price02 .setting dd {
    align-items: center;
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    gap: 0 30px;
    padding: 40px;
  }
}
.service-price02 .setting dd ul {
  list-style-type: "・";
  width: 100%;
}
@media (min-width: 769px) {
  .service-price02 .setting dd ul {
    column-count: 3;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .service-price02 .setting dd ul {
    column-count: 2;
  }
}
.service-price02 .setting dd li {
  line-height: 1.66;
  margin: 2.05vw 0 0 1em;
}
@media (min-width: 769px) {
  .service-price02 .setting dd li {
    margin: 0 0 0 1em;
  }
}

.service-about {
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .service-about {
    padding: 120px 0;
  }
}
.service-about .summary {
  text-align: center;
}
@media (min-width: 769px) {
  .service-about .summary {
    font-size: 20px;
  }
}
.service-about [class*=item] {
  margin: 10.25vw 0 0;
}
@media (min-width: 769px) {
  .service-about [class*=item] {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 100px 0 0;
  }
}
@media (min-width: 769px) {
  .service-about [class*=item]:nth-child(2n+1) .img {
    order: 2;
  }
}
@media (min-width: 769px) {
  .service-about [class*=item]:nth-child(2n+1) .txt {
    order: 1;
  }
}
@media (min-width: 769px) {
  .service-about [class*=item] .img {
    width: 28.3%;
  }
}
@media (max-width: 768px) {
  .service-about [class*=item] .img img {
    margin: 0 auto;
    width: 71.79vw;
  }
}
.service-about [class*=item] .txt {
  margin: 8.97vw 0 0;
}
@media (min-width: 769px) {
  .service-about [class*=item] .txt {
    margin: 0;
    width: 62.5%;
  }
}
.service-about [class*=item] .txt b {
  color: #F08500;
}
.service-about [class*=item] .txt .ttl {
  font-size: 6.66vw;
  line-height: 1.6;
  margin: 1.28vw 0 0;
}
@media (min-width: 769px) {
  .service-about [class*=item] .txt .ttl {
    font-size: 34px;
    line-height: 1.4;
    margin: 5px 0 0;
  }
}
.service-about [class*=item] .txt p {
  font-weight: 400;
  margin: 3.84vw 0 0;
}
@media (min-width: 769px) {
  .service-about [class*=item] .txt p {
    margin: 30px 0 0;
  }
}
@media (min-width: 769px) {
  .service-about .item03 .img {
    max-width: 300px;
  }
}
@media (min-width: 769px) {
  .service-about .item04 .img {
    max-width: 407px;
    width: 34%;
  }
}

.service-about-member {
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .service-about-member {
    padding: 120px 0;
  }
}
.service-about-member .item {
  margin: 10.25vw 0 0;
}
@media (min-width: 769px) {
  .service-about-member .item {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 100px 0 0;
  }
}
@media (min-width: 769px) {
  .service-about-member .item:nth-child(2n+1) .img {
    order: 2;
  }
}
@media (min-width: 769px) {
  .service-about-member .item:nth-child(2n+1) .txt {
    order: 1;
  }
}
@media (min-width: 769px) {
  .service-about-member .item .img {
    width: 33.3%;
  }
}
.service-about-member .item .txt {
  margin: 8.97vw 0 0;
}
@media (min-width: 769px) {
  .service-about-member .item .txt {
    margin: 0;
    width: 58.3%;
  }
}
.service-about-member .item .txt b {
  color: #F08500;
}
.service-about-member .item .txt .ttl {
  font-size: 6.66vw;
  line-height: 1.6;
  margin: 1.28vw 0 0;
}
@media (min-width: 769px) {
  .service-about-member .item .txt .ttl {
    font-size: 34px;
    line-height: 1.4;
    margin: 5px 0 0;
  }
}
.service-about-member .item .txt p {
  font-weight: 400;
  margin: 3.84vw 0 0;
}
@media (min-width: 769px) {
  .service-about-member .item .txt p {
    margin: 30px 0 0;
  }
}

.service-flow {
  background-color: #FFF7F2;
  counter-reset: flownum 0;
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .service-flow {
    padding: 120px 0;
  }
}
@media (max-width: 768px) {
  .service-flow .ttl-sec {
    font-size: 8.2vw;
  }
}
@media (max-width: 768px) {
  .service-flow .ttl-sec .en {
    font-size: 5.12vw;
  }
}
@media (min-width: 769px) {
  .service-flow .list {
    margin: 60px 0 0;
  }
}
.service-flow .list ol {
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 769px) {
  .service-flow .list ol {
    padding: 0;
  }
}
.service-flow .list ol > li {
  border-bottom: 0.25vw solid #BEBEBE;
  counter-increment: flownum 1;
  padding: 12.82vw 0 7.69vw;
  position: relative;
}
@media (min-width: 769px) {
  .service-flow .list ol > li {
    border-width: 1px;
    padding: 70px 0 50px;
  }
}
.service-flow .list ol > li::before {
  background-color: rgba(30, 41, 61, 0.5);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  display: block;
  height: 3.58vw;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  top: 1.28vw;
  width: 7.17vw;
}
@media (min-width: 769px) {
  .service-flow .list ol > li::before {
    height: 14px;
    top: 5px;
    width: 28px;
  }
}
.service-flow .list ol > li:first-child::before {
  content: none;
}
.service-flow .list dl {
  width: 100%;
}
@media (min-width: 769px) {
  .service-flow .list dl {
    display: flex;
    gap: 0 6%;
  }
}
.service-flow .list .ttl {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  font-size: 4.61vw;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 769px) {
  .service-flow .list .ttl {
    font-size: 24px;
    width: 25%;
    width: 300px;
  }
}
.service-flow .list .ttl .step {
  align-items: center;
  background-image: linear-gradient(to right, #FF6736, #F08500);
  border-radius: 50%;
  color: #fff;
  content: counter(flownum);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 2.3vw;
  font-weight: 700;
  height: 15.38vw;
  justify-content: center;
  line-height: 1.1;
  margin: 0 2.56vw 0 0;
  padding: 1.28vw 0 0;
  width: 15.38vw;
}
@media (min-width: 769px) {
  .service-flow .list .ttl .step {
    font-size: 12px;
    height: 80px;
    margin: 0 20px 0 0;
    padding: 5px 0 0;
    width: 80px;
  }
}
.service-flow .list .ttl .step .num::before {
  content: counter(flownum, decimal-leading-zero);
  display: block;
  font-size: 5.12vw;
}
@media (min-width: 769px) {
  .service-flow .list .ttl .step .num::before {
    font-size: 26px;
  }
}
.service-flow .list dd {
  display: flex;
  flex-direction: column;
  font-size: 3.58vw;
  justify-content: center;
  line-height: 1.8;
  margin: 2.56vw 0 0;
}
@media (min-width: 769px) {
  .service-flow .list dd {
    font-size: 18px;
    margin: 0;
    width: 100%;
  }
}
.service-flow .list dd dl {
  background-color: #fff;
  border-radius: 2.56vw;
  display: block;
  margin: 2.56vw 0 0;
  padding: 5.12vw;
}
@media (min-width: 769px) {
  .service-flow .list dd dl {
    border-radius: 10px;
    margin: 10px 0 0;
    padding: 30px;
  }
}
.service-flow .list dd dt {
  align-items: center;
  background-color: #F08500;
  border-radius: 9999px;
  color: #fff;
  display: inline-flex;
  font-size: 4.1vw;
  font-weight: 700;
  line-height: 1.4;
  padding: 2.05vw 5.12vw;
}
@media (min-width: 769px) {
  .service-flow .list dd dt {
    font-size: 18px;
    padding: 8px 30px;
  }
}
.service-flow .list dd dd {
  font-size: 3.58vw;
  margin: 2.56vw 0 0;
  width: 100%;
}
@media (min-width: 769px) {
  .service-flow .list dd dd {
    font-size: 16px;
    margin: 10px 0 0;
  }
}
.service-flow .list dd dd li {
  display: inline;
}
.service-flow .list dd dd li + li::before {
  content: "/";
  margin-left: -0.2em;
  padding: 0 1em;
}
.service-flow .list .btn-link {
  font-size: 4.61vw;
  font-weight: 700;
  height: 24.1vw;
  margin: 5.12vw 0 0;
  padding: 0 20.51vw 0 7.69vw;
  position: relative;
  text-align: center;
  width: 100%;
}
@media (min-width: 769px) {
  .service-flow .list .btn-link {
    font-size: 20px;
    height: 70px;
    margin: 20px 0 0;
    padding: 0 70px 0 40px;
    text-align: left;
    width: auto;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .service-flow .list .btn-link {
    padding: 0 60px 0 30px;
  }
}
.service-flow .list .btn-link::after {
  background-size: 3.07vw auto;
  height: 7.69vw;
  position: absolute;
  right: 11.28vw;
  top: 50%;
  transform: translate(0, -50%);
  width: 7.69vw;
}
@media (min-width: 769px) {
  .service-flow .list .btn-link::after {
    background-size: 12px auto;
    height: 32px;
    right: 20px;
    width: 32px;
  }
}
.service-flow .list .btn-link span {
  line-height: 1.5;
}
.service-flow .list .box {
  background-color: #fff;
  border-radius: 1.28vw;
  flex-grow: 1;
  margin: 5.12vw 0 0;
  padding: 5.12vw;
}
@media (min-width: 769px) {
  .service-flow .list .box {
    border-radius: 10px;
    margin: 20px 0 0;
    padding: 30px;
  }
}
.service-flow .list .box li {
  font-size: 3.58vw;
  font-weight: 400;
  margin-left: 1em;
  text-indent: -1em;
}
@media (min-width: 769px) {
  .service-flow .list .box li {
    font-size: 16px;
  }
}
.service-flow .list .box li::before {
  content: "-";
  margin: 0 1.28vw 0 0;
}
@media (min-width: 769px) {
  .service-flow .list .box li::before {
    margin: 0 5px 0 0;
  }
}

.service-support {
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .service-support {
    padding: 120px 0;
  }
}
.service-support p {
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 769px) {
  .service-support p {
    font-size: 18px;
  }
}
.service-support .box {
  background-color: #F2F4F8;
  border-radius: 2.56vw;
  margin: 10.25vw 0 0;
}
@media (min-width: 769px) {
  .service-support .box {
    border-radius: 10px;
    margin: 60px auto 0;
    max-width: 960px;
    width: 100%;
  }
}
.service-support .box .img {
  margin: 0 auto;
  width: 74.35vw;
}
@media (min-width: 769px) {
  .service-support .box .img {
    max-width: 739px;
    padding: 0 30px;
    width: 100%;
  }
}

.service-faq {
  background-color: #FFF7F2;
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .service-faq {
    padding: 120px 0;
  }
}
@media (min-width: 769px) {
  .service-faq .wrap {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 769px) {
  .service-faq .ttl-sec {
    flex-shrink: 0;
    margin-right: 30px;
  }
}
@media (min-width: 769px) {
  .service-faq .faq-list {
    width: 71.6%;
  }
}
.service-faq .faq-list dt {
  align-items: center;
  border-bottom: 0.25vw solid #BEBEBE;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  line-height: 1.6;
  padding: 5.12vw 0;
}
@media (min-width: 769px) {
  .service-faq .faq-list dt {
    border-width: 1px;
    font-size: 18px;
    padding: 20px 0;
  }
}
.service-faq .faq-list dt::before {
  align-items: center;
  color: #F08500;
  content: "Q";
  display: flex;
  flex-shrink: 0;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 7.17vw;
  width: 10.25vw;
}
@media (min-width: 769px) {
  .service-faq .faq-list dt::before {
    font-size: 28px;
    width: 40px;
  }
}
.service-faq .faq-list dt.open i::after {
  display: none;
}
.service-faq .faq-list dt span {
  flex-grow: 1;
}
.service-faq .faq-list dt i {
  align-items: center;
  flex-shrink: 0;
  height: 3.84vw;
  justify-content: flex-end;
  margin-left: 2.56vw;
  position: relative;
  width: 3.84vw;
}
@media (min-width: 769px) {
  .service-faq .faq-list dt i {
    height: 15px;
    margin-left: 0;
    width: 15px;
  }
}
.service-faq .faq-list dt i::before, .service-faq .faq-list dt i::after {
  background-color: #F08500;
  content: "";
  display: block;
  height: 0.51vw;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  width: 3.84vw;
}
@media (min-width: 769px) {
  .service-faq .faq-list dt i::before, .service-faq .faq-list dt i::after {
    height: 2px;
    width: 15px;
  }
}
.service-faq .faq-list dt i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: 50% 50%;
}
.service-faq .faq-list dd {
  display: flex;
  padding: 5.12vw 0;
}
@media (min-width: 769px) {
  .service-faq .faq-list dd {
    padding: 20px 0;
  }
}
.service-faq .faq-list dd::before {
  color: rgba(30, 41, 61, 0.7);
  content: "A";
  display: flex;
  flex-shrink: 0;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 7.17vw;
  font-weight: 700;
  line-height: 1.2;
  width: 10.25vw;
}
@media (min-width: 769px) {
  .service-faq .faq-list dd::before {
    font-size: 28px;
    width: 40px;
  }
}

.service-what {
  background-color: #F2F4F8;
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .service-what {
    padding: 120px 0;
  }
}
.service-what p {
  font-size: 3.58vw;
  margin: 1em 0 0;
}
@media (min-width: 769px) {
  .service-what p {
    font-size: 16px;
  }
}
.service-what .box {
  background-color: #fff;
  border-radius: 2.56vw;
  box-shadow: 0 0 2.05vw 0 rgba(0, 0, 0, 0.1);
  margin: 10.25vw 0 0;
  padding: 10.25vw 5.12vw;
}
@media (min-width: 769px) {
  .service-what .box {
    border-radius: 20px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
    margin: 60px 0 0;
    padding: 80px 100px;
  }
}
.service-what .box + .ttl-sec {
  margin: 15.38vw auto;
}
@media (min-width: 769px) {
  .service-what .box + .ttl-sec {
    margin: 60px auto;
  }
}
.service-what .head {
  text-align: center;
}
.service-what .head [class*=adv] {
  align-items: center;
  background-image: linear-gradient(to right, #FF6736, #F08500);
  border-radius: 9999px;
  color: #fff;
  display: inline-flex;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 3.58vw;
  font-weight: 700;
  justify-content: center;
  padding: 2.05vw 7.69vw;
}
@media (min-width: 769px) {
  .service-what .head [class*=adv] {
    font-size: 14px;
    padding: 8px 30px;
  }
}
.service-what .head .disadv {
  background-image: linear-gradient(to right, #4862AC, #2A3C64);
}
.service-what .head .ttl {
  font-size: 5.12vw;
  font-weight: 700;
  line-height: 1.6;
  margin: 2.56vw 0 0;
}
@media (min-width: 769px) {
  .service-what .head .ttl {
    font-size: 28px;
    margin: 10px 0 0;
  }
}
.service-what .item {
  margin: 10.25vw 0 0;
}
@media (min-width: 769px) {
  .service-what .item {
    align-items: center;
    display: flex;
    margin: 60px 0 0;
  }
}
@media (min-width: 769px) {
  .service-what .item .img {
    flex-shrink: 0;
    margin-right: 30px;
    width: 14.1%;
  }
}
.service-what .item .img img {
  margin: 0 auto;
  width: 22.56vw;
}
@media (min-width: 769px) {
  .service-what .item .img img {
    width: 88px;
  }
}
.service-what .item .img [src*=what02] {
  width: 31.28vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what02] {
    width: 122px;
  }
}
.service-what .item .img [src*=what03] {
  width: 28.97vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what03] {
    width: 113px;
  }
}
.service-what .item .img [src*=what04] {
  width: 26.15vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what04] {
    width: 102px;
  }
}
.service-what .item .img [src*=what05],
.service-what .item .img [src*=what08],
.service-what .item .img [src*=what09] {
  width: 31.79vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what05],
  .service-what .item .img [src*=what08],
  .service-what .item .img [src*=what09] {
    width: 124px;
  }
}
.service-what .item .img [src*=what06] {
  width: 23.84vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what06] {
    width: 93px;
  }
}
.service-what .item .img [src*=what07] {
  width: 25.38vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what07] {
    width: 99px;
  }
}
.service-what .item .img [src*=what10] {
  width: 33.33vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what10] {
    width: 130px;
  }
}
.service-what .item .img [src*=what11] {
  width: 24.87vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what11] {
    width: 97px;
  }
}
.service-what .item .img [src*=what12] {
  width: 21.02vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what12] {
    width: 82px;
  }
}
.service-what .item .img [src*=what13] {
  width: 31.28vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what13] {
    width: 122px;
  }
}
.service-what .item .img [src*=what14] {
  width: 28.2vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what14] {
    width: 110px;
  }
}
.service-what .item .img [src*=what15] {
  width: 25.38vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what15] {
    width: 99px;
  }
}
.service-what .item .img [src*=what16] {
  width: 34.35vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what16] {
    width: 134px;
  }
}
.service-what .item .img [src*=what17] {
  width: 27.69vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what17] {
    width: 108px;
  }
}
.service-what .item .img [src*=what18] {
  width: 28.97vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what18] {
    width: 113px;
  }
}
.service-what .item .img [src*=what19] {
  width: 33.33vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what19] {
    width: 130px;
  }
}
.service-what .item .img [src*=what20] {
  width: 34.61vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what20] {
    width: 135px;
  }
}
.service-what .item .img [src*=what21] {
  width: 30.76vw;
}
@media (min-width: 769px) {
  .service-what .item .img [src*=what21] {
    width: 120px;
  }
}
.service-what .item .txt {
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .service-what .item .txt {
    margin: 15px 0 0;
  }
}
.service-what .item .ttl {
  align-items: center;
  display: flex;
  font-size: 4.61vw;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .service-what .item .ttl {
    font-size: 18px;
  }
}
.service-what .item .ttl::before {
  background-color: #1E293D;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  height: 1.92vw;
  margin-right: 2.56vw;
  width: 2.22vw;
}
@media (min-width: 769px) {
  .service-what .item .ttl::before {
    height: 8px;
    margin-right: 10px;
    width: 8px;
  }
}
.service-what .item p, .service-what .item ul {
  font-size: 3.58vw;
  font-weight: 400;
  margin: 3.84vw 0 0;
}
@media (min-width: 769px) {
  .service-what .item p, .service-what .item ul {
    font-size: 14px;
    margin: 15px 0 0;
  }
}
.service-what .item li {
  list-style: "・";
  margin: 0 0 0 1em;
}

.cat-ads {
  /*
  	.service-case {
  		padding: vw(60) 0;
  		@include pc {
  			padding: 120px 0;
  		}
  		.head {
  			display: flex;
  			flex-direction: column;
  			.head-lead {
  				order: 1;
  				@include pc {
  					display: flex;
  					justify-content: space-between;
  					order: 2;
  				}
  			}
  			.ttl-line {
  				margin: vw(30) 0 vw(20);
  				order: 2;
  				@include pc {
  					order: 1;
  					margin: 0;
  				}
  			}
  			.ttl-sec {
  				@include pc {
  					margin-top: 5px;
  					text-align: left;
  				}
  			}
  			.lead-sec {
  				margin-top: vw(-20);
  				@include pc {
  					font-size: 16px;
  					line-height: 2.25;
  					margin-top: 0;
  					text-align: left;
  				}
  				@include tb2 {
  					margin-top: -2em;
  				}
  			}
  		}
  		//.bar {
  		//	display: flex;
  		//	justify-content: space-between;
  		//	margin: vw(30) 0 vw(20);
  		//	@include pc {
  		//		margin: 75px 0 50px;
  		//	}
  		//	.ttl-line {
  		//		flex-grow: 1;
  		//	}
  		//}
  		.btn-wrap {
  			margin-top: vw(10);
  			@include pc {
  				margin-top: -65px;
  			}
  		}
  		.link {
  		}
  	}
  */
  /*
  	.what {
  		background-color: $c-bg-blue;
  		padding: vw(60) 0;
  		@include pc {
  			padding: 120px 0;
  		}
  		p {
  			font-size: vw(14);
  			margin: 1em 0 0;
  			@include pc {
  				font-size: 16px;
  			}
  		}
  		.box {
  			background-color: #fff;
  			border-radius: vw(10);
  			box-shadow: 0 0 vw(8) 0 rgba(#000,.1);
  			margin: vw(40) 0 0;
  			padding: vw(40) vw(20);
  			@include pc {
  				border-radius: 20px;
  				box-shadow: 0 0 8px 0 rgba(#000,.1);
  				margin: 60px 0 0;
  				padding: 80px 100px;
  			}
  		}
  		.head {
  			text-align: center;
  			[class*="adv"] {
  				align-items: center;
  				background-image: linear-gradient(to right, $c-orange-d,$c-orange);
  				border-radius: 9999px;
  				color: #fff;
  				display: inline-flex;
  				font-family: $f-en;
  				font-size: vw(14);
  				font-weight: 700;
  				justify-content: center;
  				padding: vw(8) vw(30);
  				@include pc {
  					font-size: 14px;
  					//height: 42px;
  					padding: 8px 30px;
  				}
  			}
  			.disadv {
  				background-image: linear-gradient(to right, #4862AC, #2A3C64);
  			}
  			.ttl {
  				font-size: vw(20);
  				font-weight: 700;
  				line-height: 1.6;
  				margin: vw(10) 0 0;
  				@include pc {
  					font-size: 28px;
  					margin: 10px 0 0;
  				}
  			}
  		}
  		.item {
  			margin: vw(40) 0;
  			@include pc {
  				align-items: center;
  				display: flex;
  				margin: 60px 0;
  			}
  			.img {
  				@include pc {
  					flex-shrink: 0;
  					margin-right: 30px;
  					width: 14.1%;
  				}
  				img {
  					margin: 0 auto;
  					width: vw(88);
  					@include pc {
  						width: 88px;
  					}
  				}
  				[src*="what02"] {
  					width: vw(122);
  					@include pc {
  						width: 122px;
  					}
  				}
  				[src*="what03"] {
  					width: vw(113);
  					@include pc {
  						width: 113px;
  					}
  				}
  				[src*="what04"] {
  					width: vw(102);
  					@include pc {
  						width: 102px;
  					}
  				}
  				[src*="what05"] {
  					width: vw(124);
  					@include pc {
  						width: 124px;
  					}
  				}
  				[src*="what06"] {
  					width: vw(93);
  					@include pc {
  						width: 93px;
  					}
  				}
  				[src*="what07"] {
  					width: vw(99);
  					@include pc {
  						width: 99px;
  					}
  				}
  			}
  			.txt {
  				margin: vw(20) 0 0;
  				@include pc {
  					margin: 15px 0 0;
  				}
  			}
  			.ttl {
  				align-items: center;
  				display: flex;
  				font-size: vw(18);
  				line-height: 1.5;
  				@include pc {
  					font-size: 18px;
  				}
  				&::before {
  					background-color: $c-base;
  					clip-path: polygon(0 0, 100% 50%, 0 100%);
  					content: '';
  					display: block;
  					height: vw(7.5);
  					margin-right: vw(10);
  					width: vw(8.66);
  					@include pc {
  						height: 8px;
  						margin-right: 10px;
  						width: 8px;
  					}
  				}
  			}
  			p {
  				font-size: vw(14);
  				font-weight: 400;
  				margin: vw(15) 0 0;
  				@include pc {
  					font-size: 14px;
  					margin: 15px 0 0;
  				}
  			}
  		}
  	}
  */
}
.cat-ads .service {
  background-color: #FFF7F2;
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .cat-ads .service {
    padding: 120px 0;
  }
}
@media (min-width: 769px) {
  .cat-ads .service .head {
    align-items: center;
    display: flex;
    justify-content: space-around;
    max-width: 1100px;
  }
}
.cat-ads .service .head .txt {
  font-weight: 900;
  text-align: center;
}
@media (min-width: 769px) {
  .cat-ads .service .head .txt {
    flex-grow: 1;
  }
}
.cat-ads .service .head .txt .ttl {
  font-weight: 900;
}
@media (min-width: 769px) {
  .cat-ads .service .head .txt .ttl {
    font-size: 36px;
  }
}
.cat-ads .service .head .txt .ttl .logo {
  display: block;
  margin: 0 auto 1.28vw;
  width: 64.1vw;
}
@media (min-width: 769px) {
  .cat-ads .service .head .txt .ttl .logo {
    margin: 0 auto;
    width: auto;
  }
}
.cat-ads .service .head .txt .ttl .logo img {
  margin: 0 auto;
}
.cat-ads .service .head .txt p {
  font-size: 4.61vw;
  line-height: 1.8;
  margin: 2.56vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .service .head .txt p {
    font-size: 28px;
    margin: 20px 0 0;
  }
}
.cat-ads .service .head .txt p b {
  color: #F08500;
}
@media (min-width: 769px) {
  .cat-ads .service .head .txt p b span {
    font-size: 34px;
  }
}
.cat-ads .service .head .img {
  margin: 7.69vw auto;
  width: 61.53vw;
}
@media (min-width: 769px) {
  .cat-ads .service .head .img {
    margin: 0 auto;
    max-width: 386px;
    width: 37.2%;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .cat-ads .service .head .img {
    width: 29%;
  }
}
.cat-ads .service .box {
  background-color: #fff;
  border-radius: 2.56vw;
  padding: 7.69vw 5.12vw;
  position: relative;
  text-align: center;
}
@media (min-width: 769px) {
  .cat-ads .service .box {
    border-radius: 40px;
    margin: 60px 0 0;
    padding: 80px 6.25% 40px;
  }
}
.cat-ads .service .box::after {
  background-color: #fff;
  bottom: -5.13vw;
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  height: 5.12vw;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: 22.56vw;
}
@media (min-width: 769px) {
  .cat-ads .service .box::after {
    bottom: -32px;
    height: 32px;
    width: 140px;
  }
}
@media (min-width: 769px) {
  .cat-ads .service .box .ttl-sec {
    font-size: 40px;
    line-height: 1.5;
  }
}
.cat-ads .service .box .ttl-sec span {
  color: rgba(30, 41, 61, 0.7);
  font-size: 5.12vw;
  font-weight: 900;
}
@media (min-width: 769px) {
  .cat-ads .service .box .ttl-sec span {
    font-size: 32px;
  }
}
.cat-ads .service .box .ttl-sec b {
  font-weight: 900;
}
.cat-ads .service .box .item {
  margin: 7.69vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .service .box .item {
    margin: 60px 0 0;
    max-width: 1050px;
  }
}
.cat-ads .service .box .item .ttl {
  align-items: center;
  background-color: #fff;
  border-radius: 1.28vw;
  color: rgba(30, 41, 61, 0.6);
  display: inline-flex;
  font-size: 4.1vw;
  justify-content: center;
  min-width: 29.74vw;
  margin: 0 0 2.56vw;
  padding: 0 6.41vw;
}
@media (min-width: 769px) {
  .cat-ads .service .box .item .ttl {
    border-radius: 5px;
    font-size: 18px;
    min-width: 152px;
    margin: 0 0 24px;
    padding: 3px 30px;
  }
}
.cat-ads .service .box .item dl {
  display: flex;
  font-weight: 700;
  gap: 2.56vw;
  line-height: 1.4;
  margin: 2.56vw 0 0 10.25vw;
  min-height: 8.97vw;
}
@media (min-width: 769px) {
  .cat-ads .service .box .item dl {
    gap: 20px;
    margin: 10px 0 0;
    min-height: 40px;
  }
}
.cat-ads .service .box .item dt {
  align-items: center;
  background-color: rgba(30, 41, 61, 0.7);
  border-radius: 1.02vw;
  color: #fff;
  display: flex;
  font-size: 3.58vw;
  justify-content: center;
  width: 24.61vw;
}
@media (min-width: 769px) {
  .cat-ads .service .box .item dt {
    border-radius: 5px;
    font-size: 16px;
    width: 110px;
  }
}
.cat-ads .service .box .item dd {
  align-items: center;
  color: rgba(30, 41, 61, 0.7);
  display: flex;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 5.12vw;
}
@media (min-width: 769px) {
  .cat-ads .service .box .item dd {
    font-size: 22px;
  }
}
.cat-ads .service .box .item dd b {
  font-size: 6.66vw;
}
@media (min-width: 769px) {
  .cat-ads .service .box .item dd b {
    font-size: 32px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .cat-ads .service .box .item dd b {
    font-size: 26px;
  }
}
.cat-ads .service .box .item dd span {
  font-size: 4.1vw;
  font-weight: 700;
  margin-left: 1.28vw;
}
@media (min-width: 769px) {
  .cat-ads .service .box .item dd span {
    font-size: 20px;
    margin-left: 5px;
  }
}
@media (min-width: 769px) {
  .cat-ads .service .box .item .box2 {
    display: flex;
    margin: 10px 0 0;
  }
}
.cat-ads .service .box .item .before,
.cat-ads .service .box .item .after {
  padding: 5.12vw 0 8.97vw 0;
  position: relative;
}
@media (min-width: 769px) {
  .cat-ads .service .box .item .before,
  .cat-ads .service .box .item .after {
    padding: 20px 9% 28px;
  }
}
.cat-ads .service .box .item .before::before,
.cat-ads .service .box .item .after::before {
  color: rgba(30, 41, 61, 0.6);
  content: "BEFORE";
  display: block;
  font-size: 4.61vw;
  font-weight: 900;
  left: 9.74vw;
  position: absolute;
  top: 65%;
  transform: translate(0, -50%) rotate(-90deg);
  transform-origin: 0 100%;
}
@media (min-width: 769px) {
  .cat-ads .service .box .item .before::before,
  .cat-ads .service .box .item .after::before {
    font-size: 22px;
    left: 50px;
    top: 60%;
  }
}
.cat-ads .service .box .item .before {
  background-color: #F2F4F8;
  border-radius: 2.56vw 2.56vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .service .box .item .before {
    border-radius: 10px 0 0 10px;
    width: 51.4%;
  }
}
.cat-ads .service .box .item .after {
  background-color: #FFF9E5;
  border-radius: 0 0 2.56vw 2.56vw;
  color: #ED5053;
  padding: 8.97vw 0 5.12vw 0;
}
@media (min-width: 769px) {
  .cat-ads .service .box .item .after {
    border-radius: 0 10px 10px 0;
    padding: 20px 7.1% 28px;
    width: 48.6%;
  }
}
.cat-ads .service .box .item .after::before {
  color: #ED5053;
  content: "AFTER";
  top: 55%;
}
@media (min-width: 769px) {
  .cat-ads .service .box .item .after::before {
    left: initial;
    right: -25px;
    transform: translate(0, -50%) rotate(90deg);
    top: 30%;
  }
}
.cat-ads .service .box .item .after::after {
  background: url(../img/common/service-performance-arrow.svg) no-repeat 50% 50%/contain;
  content: "";
  height: 5.64vw;
  left: 50%;
  position: absolute;
  top: -2.57vw;
  transform: translate(-50%, 0) rotate(90deg);
  width: 7.94vw;
}
@media (min-width: 769px) {
  .cat-ads .service .box .item .after::after {
    height: 39px;
    left: -30px;
    top: 50%;
    transform: translate(0, -50%);
    width: 58px;
  }
}
.cat-ads .service .box .item .after dt {
  background-color: #ED5053;
}
.cat-ads .service .box .item .after .ttl,
.cat-ads .service .box .item .after dd {
  color: #ED5053;
}
.cat-ads .service .box .item .after .result {
  align-items: center;
  background-color: #ED5053;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 3.58vw;
  font-weight: 700;
  height: 20.51vw;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -1.8vw;
  top: -4.11vw;
  width: 20.51vw;
}
@media (min-width: 769px) {
  .cat-ads .service .box .item .after .result {
    font-size: 14px;
    height: 80px;
    right: 66px;
    top: -27px;
    width: 80px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .cat-ads .service .box .item .after .result {
    right: -10px;
  }
}
.cat-ads .service .box .item .after .result span {
  align-items: baseline;
  display: flex;
}
.cat-ads .service .box .item .after .result span b {
  font-size: 7.69vw;
  font-style: italic;
  letter-spacing: -0.04em;
  margin-right: 1.02vw;
}
@media (min-width: 769px) {
  .cat-ads .service .box .item .after .result span b {
    font-size: 30px;
    margin-right: 4px;
  }
}
.cat-ads .service .box .item .after .result span b em {
  font-size: 6.15vw;
}
@media (min-width: 769px) {
  .cat-ads .service .box .item .after .result span b em {
    font-size: 24px;
  }
}
.cat-ads .service .box .summary {
  margin: 7.69vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .service .box .summary {
    align-items: center;
    display: flex;
    margin: 40px 0 0;
  }
}
@media (min-width: 769px) {
  .cat-ads .service .box .summary .txt {
    flex-grow: 1;
  }
}
.cat-ads .service .box .summary .txt p {
  font-size: 5.12vw;
  font-weight: 700;
}
@media (min-width: 769px) {
  .cat-ads .service .box .summary .txt p {
    font-size: 32px;
    line-height: 1.7;
    text-align: left;
  }
}
.cat-ads .service .box .summary .txt p b {
  color: #F08500;
}
.cat-ads .service .box .summary .txt p b span {
  font-size: 8.71vw;
  font-weight: 900;
  line-height: 1;
}
@media (min-width: 769px) {
  .cat-ads .service .box .summary .txt p b span {
    font-size: 50px;
  }
}
.cat-ads .service .box .summary .img {
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .service .box .summary .img {
    margin: 0;
    max-width: 350px;
    width: 33.3%;
  }
}
.cat-ads .service .performance {
  margin: 15.38vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .service .performance {
    margin: 80px 0 0;
  }
}
.cat-ads .service .performance .ttl {
  font-size: 5.12vw;
}
@media (min-width: 769px) {
  .cat-ads .service .performance .ttl {
    font-size: 28px;
    text-align: center;
  }
}
.cat-ads .service .performance .list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2.05vw;
  justify-content: center;
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .service .performance .list ul {
    gap: 15px;
    margin: 40px 0 0;
  }
}
.cat-ads .service .performance .list li {
  align-items: center;
  background-color: rgba(30, 41, 61, 0.7);
  border-radius: 1.28vw;
  color: #fff;
  display: inline-flex;
  font-size: 3.07vw;
  height: 7.17vw;
  justify-content: center;
  padding: 0 2.56vw;
}
@media (min-width: 769px) {
  .cat-ads .service .performance .list li {
    border-radius: 5px;
    font-size: 16px;
    height: 38px;
    padding: 0 15px;
  }
}
.cat-ads .price {
  background-color: #FFF7F2;
  padding: 20.51vw 0 15.38vw;
}
@media (min-width: 769px) {
  .cat-ads .price {
    padding: 120px 0;
  }
}
.cat-ads .price .fee {
  background-color: #fff;
  border: 1.05vw solid #F08500;
  border-radius: 2.56vw;
  padding: 7.69vw 5.12vw;
}
@media (min-width: 769px) {
  .cat-ads .price .fee {
    border-width: 4px;
    border-radius: 10px;
    margin: 0 auto;
    padding: 40px 60px;
    max-width: 1000px;
  }
}
.cat-ads .price .fee dl {
  line-height: 1.4;
  margin: 0 0 5.12vw;
  text-align: center;
}
@media (min-width: 769px) {
  .cat-ads .price .fee dl {
    margin: 0 0 30px;
  }
}
.cat-ads .price .fee dt {
  font-size: 4.61vw;
  font-weight: 700;
}
@media (min-width: 769px) {
  .cat-ads .price .fee dt {
    font-size: 24px;
  }
}
.cat-ads .price .fee dd {
  color: #F08500;
  font-size: 6.15vw;
  font-weight: 900;
}
@media (min-width: 769px) {
  .cat-ads .price .fee dd {
    font-size: 30px;
  }
}
.cat-ads .price .fee dd b {
  font-size: 8.71vw;
}
@media (min-width: 769px) {
  .cat-ads .price .fee dd b {
    font-size: 40px;
  }
}
.cat-ads .price .fee p {
  font-size: 3.58vw;
  font-weight: 400;
  line-height: 1.8;
  margin: 2.56vw -1.29vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .price .fee p {
    font-size: 14px;
    margin: 5px 0 0;
    text-align: center;
  }
}
.cat-ads .price .fee p b {
  font-size: 4.1vw;
  font-weight: 500;
}
@media (min-width: 769px) {
  .cat-ads .price .fee p b {
    font-size: 16px;
  }
}
.cat-ads .price .fee .notice {
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .price .fee .notice {
    margin: 20px 0 0;
  }
}
.cat-ads .price .fee .notice p {
  text-align: left;
}
.cat-ads .price .setting {
  margin: 10.25vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .price .setting {
    margin: 60px 0 0;
  }
}
.cat-ads .price .setting .ttl {
  font-size: 5.12vw;
  line-height: 1.4;
  margin: 7.69vw 0;
  text-align: center;
}
@media (min-width: 769px) {
  .cat-ads .price .setting .ttl {
    font-size: 24px;
    margin: 60px 0 0;
  }
}
.cat-ads .price .setting dl {
  border: 0.25vw solid #1E293D;
  border-radius: 2.56vw;
  margin: 5.12vw 0 0;
  overflow: hidden;
}
@media (min-width: 769px) {
  .cat-ads .price .setting dl {
    border-width: 1px;
    border-radius: 10px;
    display: flex;
    margin: 40px 0 0;
  }
}
.cat-ads .price .setting dt {
  align-items: center;
  background-color: #F2F4F8;
  display: flex;
  font-size: 4.61vw;
  font-weight: 700;
  gap: 3.84vw;
  line-height: 1.66;
  padding: 3.84vw 5.12vw;
}
@media (min-width: 769px) {
  .cat-ads .price .setting dt {
    flex-shrink: 0;
    font-size: 18px;
    gap: 15px;
    min-width: 320px;
    padding: 10px 10px 10px 30px;
    width: 26.6%;
  }
}
@media (min-width: 769px) {
  .cat-ads .price .setting dt img {
    width: 50px;
  }
}
.cat-ads .price .setting dd {
  background-color: #fff;
  padding: 5.12vw 5.12vw 7.69vw;
}
@media (min-width: 769px) {
  .cat-ads .price .setting dd {
    align-items: center;
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    gap: 0 30px;
    padding: 40px;
  }
}
.cat-ads .price .setting dd ul {
  list-style-type: "・";
  width: 100%;
}
@media (min-width: 769px) {
  .cat-ads .price .setting dd ul {
    column-count: 3;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .cat-ads .price .setting dd ul {
    column-count: 2;
  }
}
.cat-ads .price .setting dd li {
  line-height: 1.66;
  margin: 2.05vw 0 0 1em;
}
@media (min-width: 769px) {
  .cat-ads .price .setting dd li {
    margin: 0 0 0 1em;
  }
}
.cat-ads .cta {
  background-image: linear-gradient(to right, #FF6736, #F08500);
  color: #fff;
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .cat-ads .cta {
    padding: 80px 0;
  }
}
@media (min-width: 769px) {
  .cat-ads .cta .wrap {
    align-items: center;
    display: flex;
    gap: 0 3.75%;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .cat-ads .cta .wrap {
    display: block;
  }
}
.cat-ads .cta .txt {
  line-height: 1.8;
  margin: 0 4.48vw;
}
@media (min-width: 769px) {
  .cat-ads .cta .txt {
    margin: 0;
    order: 2;
  }
}
.cat-ads .cta .txt .ttl {
  font-size: 7.17vw;
}
@media (min-width: 769px) {
  .cat-ads .cta .txt .ttl {
    align-items: center;
    display: flex;
    font-size: 40px;
    line-height: 1.4;
  }
}
.cat-ads .cta .txt .ttl img {
  margin: 0 auto 5.12vw;
}
@media (min-width: 769px) {
  .cat-ads .cta .txt .ttl img {
    margin: 0 20px 0 0;
    width: 100px;
  }
}
.cat-ads .cta .txt p {
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .cta .txt p {
    font-size: 18px;
    margin: 45px 0;
  }
}
.cat-ads .cta .txt .btn {
  margin: 7.69vw -4.49vw 0;
}
@media (min-width: 769px) {
  .cat-ads .cta .txt .btn {
    margin: 45px auto 0;
    max-width: 420px;
  }
}
.cat-ads .cta .txt .btn-link {
  font-size: 4.61vw;
  font-weight: 700;
  height: 24.1vw;
  line-height: 1.5;
  text-align: center;
  width: 100%;
}
@media (min-width: 769px) {
  .cat-ads .cta .txt .btn-link {
    font-size: 20px;
    height: 70px;
    padding: 0 20px;
  }
}
.cat-ads .cta .txt .btn-link::after {
  background-size: 3.07vw auto;
}
@media (min-width: 769px) {
  .cat-ads .cta .txt .btn-link::after {
    background-size: 12px auto;
    height: 32px;
    width: 32px;
  }
}
.cat-ads .cta .img {
  margin: 11.53vw auto 0;
  width: 71.79vw;
}
@media (min-width: 769px) {
  .cat-ads .cta .img {
    flex-shrink: 0;
    margin: 0 auto;
    order: 1;
    width: 28.1%;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .cat-ads .cta .img {
    margin: 60px auto 0;
    width: 60%;
  }
}
.cat-ads .about {
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .cat-ads .about {
    padding: 120px 0;
  }
}
.cat-ads .about .item {
  margin: 10.25vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .about .item {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 100px 0 0;
  }
}
@media (min-width: 769px) {
  .cat-ads .about .item:nth-child(2n+1) .img {
    order: 2;
  }
}
@media (min-width: 769px) {
  .cat-ads .about .item:nth-child(2n+1) .txt {
    order: 1;
  }
}
@media (min-width: 769px) {
  .cat-ads .about .item .img {
    width: 33.3%;
  }
}
.cat-ads .about .item .txt {
  margin: 8.97vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .about .item .txt {
    margin: 0;
    width: 58.3%;
  }
}
.cat-ads .about .item .txt b {
  color: #F08500;
}
.cat-ads .about .item .txt .ttl {
  font-size: 6.66vw;
  line-height: 1.6;
  margin: 1.28vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .about .item .txt .ttl {
    font-size: 34px;
    line-height: 1.4;
    margin: 5px 0 0;
  }
}
.cat-ads .about .item .txt p {
  font-weight: 400;
  margin: 3.84vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .about .item .txt p {
    margin: 30px 0 0;
  }
}
.cat-ads .flow {
  background-color: #FFF7F2;
  counter-reset: flownum 0;
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .cat-ads .flow {
    padding: 120px 0;
  }
}
@media (min-width: 769px) {
  .cat-ads .flow .list {
    margin: 60px 0 0;
  }
}
.cat-ads .flow .list ol {
  list-style: none;
  margin: 0 auto;
  padding: 0 0 0 13.84vw;
  width: 74.35vw;
}
@media (min-width: 769px) {
  .cat-ads .flow .list ol {
    display: flex;
    justify-content: space-between;
    padding: 0;
    width: auto;
  }
}
.cat-ads .flow .list li {
  counter-increment: flownum 1;
  padding: 5.12vw 0;
  position: relative;
}
@media (min-width: 769px) {
  .cat-ads .flow .list li {
    margin: 0 -2.2%;
    padding: 55px 2.2% 0;
    width: 26.1%;
  }
}
.cat-ads .flow .list li::before {
  align-items: center;
  background-color: #F08500;
  border-radius: 50%;
  color: #fff;
  content: counter(flownum);
  display: flex;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-weight: 700;
  height: 8.71vw;
  justify-content: center;
  left: -13.85vw;
  position: absolute;
  top: 30%;
  width: 8.71vw;
  z-index: 2;
}
@media (min-width: 769px) {
  .cat-ads .flow .list li::before {
    height: 34px;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    width: 34px;
  }
}
.cat-ads .flow .list li::after {
  background-color: #F08500;
  content: "";
  display: block;
  height: 100%;
  left: -10vw;
  position: absolute;
  top: 0;
  width: 0.76vw;
  z-index: 1;
}
@media (min-width: 769px) {
  .cat-ads .flow .list li::after {
    height: 3px;
    left: 0;
    top: 15px;
    width: 100%;
  }
}
.cat-ads .flow .list li:first-child::after {
  bottom: 0;
  height: 70%;
  top: initial;
}
@media (min-width: 769px) {
  .cat-ads .flow .list li:first-child::after {
    height: 3px;
    left: initial;
    right: 0;
    top: 15px;
    width: 50%;
  }
}
.cat-ads .flow .list li:last-child::after {
  height: 40%;
}
@media (min-width: 769px) {
  .cat-ads .flow .list li:last-child::after {
    height: 3px;
    width: 50%;
  }
}
.cat-ads .flow .list .img {
  height: 45.12vw;
}
@media (min-width: 769px) {
  .cat-ads .flow .list .img {
    height: 176px;
  }
}
.cat-ads .flow .list .img img {
  height: 100%;
  margin: 0 auto;
}
.cat-ads .flow .list .ttl {
  font-size: 5.12vw;
  margin: 5.12vw 0 0;
  text-align: center;
}
@media (min-width: 769px) {
  .cat-ads .flow .list .ttl {
    font-size: 20px;
    line-height: 1.4;
    margin: 20px 0 0;
  }
}
.cat-ads .flow .list p {
  font-weight: 400;
  line-height: 1.5;
  margin: 2.56vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .flow .list p {
    margin: 20px 0 0;
  }
}
.cat-ads .support {
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .cat-ads .support {
    padding: 120px 0;
  }
}
.cat-ads .support p {
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 769px) {
  .cat-ads .support p {
    font-size: 18px;
  }
}
.cat-ads .support .box {
  background-color: #F2F4F8;
  border-radius: 2.56vw;
  margin: 10.25vw 0 0;
}
@media (min-width: 769px) {
  .cat-ads .support .box {
    border-radius: 10px;
    margin: 60px auto 0;
    max-width: 960px;
    width: 100%;
  }
}
.cat-ads .support .box .img {
  margin: 0 auto;
  width: 74.35vw;
}
@media (min-width: 769px) {
  .cat-ads .support .box .img {
    max-width: 739px;
    padding: 0 30px;
    width: 100%;
  }
}
.cat-ads .faq {
  background-color: #FFF7F2;
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .cat-ads .faq {
    padding: 120px 0;
  }
}
@media (min-width: 769px) {
  .cat-ads .faq .wrap {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 769px) {
  .cat-ads .faq .ttl-sec {
    flex-shrink: 0;
    margin-right: 30px;
  }
}
@media (min-width: 769px) {
  .cat-ads .faq .faq-list {
    width: 71.6%;
  }
}
.cat-ads .faq .faq-list dt {
  align-items: center;
  border-bottom: 0.25vw solid #BEBEBE;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  line-height: 1.6;
  padding: 5.12vw 0;
}
@media (min-width: 769px) {
  .cat-ads .faq .faq-list dt {
    border-width: 1px;
    font-size: 18px;
    padding: 20px 0;
  }
}
.cat-ads .faq .faq-list dt::before {
  align-items: center;
  color: #F08500;
  content: "Q";
  display: flex;
  flex-shrink: 0;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 7.17vw;
  width: 11.28vw;
}
@media (min-width: 769px) {
  .cat-ads .faq .faq-list dt::before {
    font-size: 28px;
    width: 48px;
  }
}
.cat-ads .faq .faq-list dt.open i::after {
  display: none;
}
.cat-ads .faq .faq-list dt span {
  flex-grow: 1;
}
.cat-ads .faq .faq-list dt i {
  align-items: center;
  flex-shrink: 0;
  height: 3.84vw;
  justify-content: flex-end;
  margin-left: 2.56vw;
  position: relative;
  width: 3.84vw;
}
@media (min-width: 769px) {
  .cat-ads .faq .faq-list dt i {
    height: 15px;
    width: 15px;
  }
}
.cat-ads .faq .faq-list dt i::before, .cat-ads .faq .faq-list dt i::after {
  background-color: #F08500;
  content: "";
  display: block;
  height: 0.51vw;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  width: 3.84vw;
}
@media (min-width: 769px) {
  .cat-ads .faq .faq-list dt i::before, .cat-ads .faq .faq-list dt i::after {
    height: 2px;
    width: 15px;
  }
}
.cat-ads .faq .faq-list dt i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: 50% 50%;
}
.cat-ads .faq .faq-list dd {
  display: flex;
  padding: 5.12vw 0;
}
@media (min-width: 769px) {
  .cat-ads .faq .faq-list dd {
    padding: 20px 0;
  }
}
.cat-ads .faq .faq-list dd::before {
  color: rgba(30, 41, 61, 0.7);
  content: "A";
  display: flex;
  flex-shrink: 0;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 7.17vw;
  font-weight: 700;
  line-height: 1.2;
  width: 11.28vw;
}
@media (min-width: 769px) {
  .cat-ads .faq .faq-list dd::before {
    font-size: 28px;
    width: 48px;
  }
}

.listing-ads .service-kv {
  background-color: #f6ac6b;
}
@media (min-width: 769px) {
  .listing-ads .service-kv {
    background-color: #fab744;
  }
}
.listing-ads .service-kv::after {
  background: url(../img/listing-ads/kv-bg-sp.jpg) no-repeat 50% 100%/cover;
}
@media (min-width: 769px) {
  .listing-ads .service-kv::after {
    background-image: url(../img/listing-ads/kv-bg.jpg);
  }
}
@media (max-width: 768px) {
  .listing-ads .service-kv .box {
    margin: 30.76vw 0 15.38vw;
  }
}
.listing-ads .service-kv .box .ttl {
  font-size: 10.76vw;
}
@media (min-width: 769px) {
  .listing-ads .service-kv .box .ttl {
    font-size: 70px;
  }
}
.listing-ads .service-kv .box .ttl u::after {
  bottom: 0;
  height: 3.84vw;
  width: 101%;
}
@media (min-width: 769px) {
  .listing-ads .service-kv .box .ttl u::after {
    height: 23px;
  }
}
.listing-ads .service-kv .box .img01 {
  left: 3.84vw;
  position: absolute;
  top: -26.93vw;
  width: 25.38vw;
}
@media (min-width: 769px) {
  .listing-ads .service-kv .box .img01 {
    left: 135px;
    top: -50px;
    width: 223px;
  }
}
.listing-ads .service-kv .box .img01 img {
  height: 27.17vw;
}
@media (min-width: 769px) {
  .listing-ads .service-kv .box .img01 img {
    height: auto;
  }
}
.listing-ads .service-kv .box .img02 {
  right: 4.61vw;
  position: absolute;
  top: -26.93vw;
  width: 23.33vw;
}
@media (min-width: 769px) {
  .listing-ads .service-kv .box .img02 {
    left: 920px;
    right: initial;
    top: 70px;
    width: 168px;
  }
}
.listing-ads .service-kv .box .img03 {
  left: 4.87vw;
  top: 51.28vw;
  position: absolute;
  width: 24.35vw;
  z-index: 3;
}
@media (min-width: 769px) {
  .listing-ads .service-kv .box .img03 {
    left: 185px;
    top: 195px;
    width: 140px;
  }
}

.meta-ads .service-kv {
  background-color: #DCDAF4;
}
.meta-ads .service-kv::after {
  background-image: url(../img/meta-ads/kv-bg-sp.png);
  background-size: cover;
  height: 100%;
}
@media (min-width: 769px) {
  .meta-ads .service-kv::after {
    background-image: url(../img/meta-ads/kv-bg.png);
    background-size: 1900px auto;
    height: 120%;
  }
}
@media (max-width: 768px) {
  .meta-ads .service-kv.active::after {
    bottom: 20.51vw;
  }
}
@media (max-width: 768px) {
  .meta-ads .service-kv .box {
    margin: 6.41vw 0 28.2vw;
  }
}
.meta-ads .service-kv .box .ttl {
  font-size: 10.76vw;
}
@media (min-width: 769px) {
  .meta-ads .service-kv .box .ttl {
    font-size: 70px;
  }
}
.meta-ads .service-kv .box .ttl u::after {
  bottom: 0;
  height: 3.84vw;
  width: 101%;
}
@media (min-width: 769px) {
  .meta-ads .service-kv .box .ttl u::after {
    height: 23px;
  }
}
@media (max-width: 768px) {
  .meta-ads .service-kv .box .ttl .ttl-main {
    margin-bottom: 0.5em;
  }
}
.meta-ads .service-kv .img01 {
  display: none;
}
@media (min-width: 769px) {
  .meta-ads .service-kv .img01 {
    display: block;
    left: 125px;
    top: 75px;
    width: 286px;
  }
}

.line-ads .service-kv {
  background-image: linear-gradient(to right, #06c755, #5bd48e);
}
.line-ads .service-kv::after {
  background-image: url(../img/line-ads/kv-bg-sp.jpg);
  background-size: cover;
  height: 100%;
}
@media (min-width: 769px) {
  .line-ads .service-kv::after {
    background-image: url(../img/line-ads/kv-bg.jpg);
    background-size: 1900px auto;
    height: 120%;
  }
}
@media (max-width: 768px) {
  .line-ads .service-kv .box {
    margin: 6.41vw 0 38.46vw;
    z-index: 2;
  }
}
.line-ads .service-kv .box .txt {
  color: #fff;
}
@media (min-width: 769px) {
  .line-ads .service-kv .box .txt {
    max-width: 624px;
  }
}
.line-ads .service-kv .box .point {
  color: #ff0;
}
.line-ads .service-kv .box .ttl {
  font-size: 12.82vw;
}
@media (min-width: 769px) {
  .line-ads .service-kv .box .ttl {
    font-size: 70px;
  }
}
.line-ads .service-kv .box .ttl u {
  margin: 0 0 0.1em;
}
.line-ads .service-kv .box .ttl u::after {
  background: linear-gradient(to right, #47D380, #36EA7F);
  bottom: 0;
  height: 3.84vw;
  width: 101%;
}
@media (min-width: 769px) {
  .line-ads .service-kv .box .ttl u::after {
    height: 23px;
  }
}
@media (max-width: 768px) {
  .line-ads .service-kv .box .ttl .ttl-main {
    margin-bottom: 0.5em;
  }
}
.line-ads .service-kv .img01 {
  left: 12.82vw;
  top: 60.25vw;
  width: 74.35vw;
}
@media (min-width: 769px) {
  .line-ads .service-kv .img01 {
    left: 615px;
    top: -15px;
    width: 560px;
  }
}
@media (min-width: 769px) {
  .line-ads .service-head .wrap {
    display: flex;
    justify-content: space-between;
    max-width: 1260px;
    position: relative;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .line-ads .service-head .wrap {
    display: block;
  }
}
@media (min-width: 769px) {
  .line-ads .service-head .head {
    max-width: 614px;
    padding: 40px 0 0;
    width: 51.2%;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .line-ads .service-head .head {
    margin: 0 auto;
    width: 100%;
  }
}
.line-ads .service-head .list {
  font-size: 3.58vw;
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .line-ads .service-head .list {
    font-size: 20px;
    margin: 0;
    max-width: 550px;
    width: 45.8%;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .line-ads .service-head .list {
    margin: 0 auto;
    width: 100%;
  }
}
.line-ads .service-head .list li {
  background: #EBFFF3 url(../img/line-ads/lead-check.svg) no-repeat 5.12vw 50%/3.58vw auto;
  border: 0.25vw solid #06C755;
  border-radius: 2.56vw;
  margin: 0;
  line-height: 1.4;
  padding: 3.84vw 3.84vw 3.84vw 11.53vw;
}
@media (min-width: 769px) {
  .line-ads .service-head .list li {
    background-size: 18px auto;
    background-position: 20px 50%;
    border: 1px solid #06C755;
    border-radius: 10px;
    font-size: 18px;
    padding: 15px 15px 15px 50px;
  }
}
.line-ads .service-head .list li + li {
  margin: 2.56vw 0 0;
}
@media (min-width: 769px) {
  .line-ads .service-head .list li + li {
    margin: 10px 0 0;
  }
}
.line-ads .service-head .img {
  margin: 6.41vw auto;
  width: 35.89vw;
}
@media (min-width: 769px) {
  .line-ads .service-head .img {
    left: 0;
    position: absolute;
    top: 40%;
    margin: 0;
    max-width: 614px;
    width: 51.2%;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .line-ads .service-head .img {
    left: initial;
    margin: 30px auto 0;
    position: relative;
    top: initial;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .line-ads .service-head .img img {
    margin: 0 auto;
    width: 206px;
  }
}

.x-ads .service-kv::after {
  background-image: url(../img/x-ads/kv-bg-sp.jpg), linear-gradient(100deg, #5d5ee9, #222756);
  background-size: cover, 100% 100%;
}
@media (min-width: 769px) {
  .x-ads .service-kv::after {
    background-image: url(../img/x-ads/kv-bg.jpg), linear-gradient(to right, #5156ce 0%, #303479 50%, #f4f3f6 51%, #f4f3f6 100%);
    background-size: 1900px auto, 100% 100%;
    height: 120%;
  }
}
@media (max-width: 768px) {
  .x-ads .service-kv .box {
    margin: 6.41vw 0 33.33vw;
  }
}
.x-ads .service-kv .box .point {
  background-image: linear-gradient(to right, #E79D5A, #F2D05F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.x-ads .service-kv .box .txt {
  color: #fff;
}
@media (min-width: 769px) {
  .x-ads .service-kv .box .txt {
    max-width: 624px;
    padding: 30px 0 0;
  }
}
.x-ads .service-kv .box .ttl {
  font-size: 12.82vw;
}
@media (min-width: 769px) {
  .x-ads .service-kv .box .ttl {
    font-size: 70px;
  }
}
.x-ads .service-kv .box .ttl u::after {
  content: none;
}
.x-ads .service-kv .box .ttl .ttl-main {
  align-items: center;
  display: flex;
  font-size: 11.53vw;
  justify-content: center;
  margin: 0;
}
@media (min-width: 769px) {
  .x-ads .service-kv .box .ttl .ttl-main {
    font-size: 50px;
  }
}
.x-ads .service-kv .box .ttl .ttl-main b {
  color: #fff;
  font-size: 17.94vw;
  margin-right: 0.2em;
}
@media (min-width: 769px) {
  .x-ads .service-kv .box .ttl .ttl-main b {
    font-size: 80px;
  }
}
.x-ads .service-kv .img01 {
  left: 10vw;
  top: 70vw;
  width: 25.64vw;
}
@media (min-width: 769px) {
  .x-ads .service-kv .img01 {
    left: 600px;
    top: 110px;
    width: 135px;
  }
}
.x-ads .service-kv .img02 {
  left: 42vw;
  top: 67vw;
  width: 42.3vw;
}
@media (min-width: 769px) {
  .x-ads .service-kv .img02 {
    left: 760px;
    top: -15px;
    width: 430px;
  }
}

.cat-creative {
  /*
  	.service-what {
  		background-color: $c-bg-blue;
  		padding: vw(60) 0;
  		@include pc {
  			padding: 120px 0;
  		}
  		p {
  			font-size: vw(14);
  			margin: 1em 0 0;
  			@include pc {
  				font-size: 16px;
  			}
  		}
  		.box {
  			background-color: #fff;
  			border-radius: vw(10);
  			box-shadow: 0 0 vw(8) 0 rgba(#000,.1);
  			margin: vw(40) 0 0;
  			padding: vw(40) vw(20);
  			@include pc {
  				border-radius: 20px;
  				box-shadow: 0 0 8px 0 rgba(#000,.1);
  				margin: 60px 0 0;
  				padding: 80px 100px;
  			}
  		}
  		.head {
  			text-align: center;
  			[class*="adv"] {
  				align-items: center;
  				background-image: linear-gradient(to right, $c-orange-d,$c-orange);
  				border-radius: 9999px;
  				color: #fff;
  				display: inline-flex;
  				font-family: $f-en;
  				font-size: vw(14);
  				font-weight: 700;
  				justify-content: center;
  				padding: vw(8) vw(30);
  				@include pc {
  					font-size: 14px;
  					//height: 42px;
  					padding: 8px 30px;
  				}
  			}
  			.disadv {
  				background-image: linear-gradient(to right, #4862AC, #2A3C64);
  			}
  			.ttl {
  				font-size: vw(20);
  				font-weight: 700;
  				line-height: 1.6;
  				margin: vw(10) 0 0;
  				@include pc {
  					font-size: 28px;
  					margin: 10px 0 0;
  				}
  			}
  		}
  		.item {
  			margin: vw(30) 0 0;
  			@include pc {
  				align-items: center;
  				display: flex;
  				gap: 0 5.5%;
  				margin: 60px 0 0;
  			}
  			.img {
  				@include pc {
  					flex-shrink: 0;
  					width: 14.5%;
  				}
  				img {
  					margin: 0 auto;
  					width: vw(145);
  					@include pc {
  						width: 145px;
  					}
  				}
  				[src*="creative-merit02"] {
  					width: vw(93);
  					@include pc {
  						width: 93px;
  					}
  				}
  				[src*="demerit01"] {
  					width: vw(138);
  					@include pc {
  						width: 138px;
  					}
  				}
  			}
  			.txt {
  				margin: vw(20) 0 0;
  				@include pc {
  					margin: 15px 0 0;
  				}
  			}
  			.ttl {
  				align-items: center;
  				display: flex;
  				font-size: vw(18);
  				line-height: 1.5;
  				@include pc {
  					font-size: 18px;
  				}
  				&::before {
  					background-color: $c-base;
  					clip-path: polygon(0 0, 100% 50%, 0 100%);
  					content: '';
  					display: block;
  					height: vw(7.5);
  					margin-right: vw(10);
  					width: vw(8.66);
  					@include pc {
  						height: 8px;
  						margin-right: 10px;
  						width: 8px;
  					}
  				}
  			}
  			p {
  				font-size: vw(14);
  				font-weight: 400;
  				margin: vw(15) 0 0;
  				@include pc {
  					font-size: 14px;
  					margin: 15px 0 0;
  				}
  			}
  		}
  	}
  */
}
.cat-creative .btn-area {
  margin: 15.38vw auto 0;
  text-align: center;
}
@media (min-width: 769px) {
  .cat-creative .btn-area {
    margin: 60px auto 0;
  }
}
.cat-creative .service-performance .box {
  background-color: #fff;
  border-radius: 2.56vw;
  padding: 15.38vw 0 0;
  position: relative;
  text-align: center;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box {
    border-radius: 40px;
    margin: 60px 0 0;
    padding: 80px 6.25% 40px;
  }
}
.cat-creative .service-performance .box::after {
  background-color: #fff;
  bottom: -5.13vw;
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  height: 5.12vw;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: 22.56vw;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box::after {
    bottom: -32px;
    height: 32px;
    width: 140px;
  }
}
.cat-creative .service-performance .box .item {
  margin: 7.69vw 0 0;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item {
    margin: 60px 0 0;
    max-width: 1050px;
  }
}
.cat-creative .service-performance .box .item .ttl {
  align-items: center;
  background-color: #fff;
  border-radius: 1.28vw;
  color: rgba(30, 41, 61, 0.6);
  display: inline-flex;
  font-size: 4.1vw;
  justify-content: center;
  min-width: 29.74vw;
  margin: 0 0 2.56vw;
  padding: 0 6.41vw;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item .ttl {
    border-radius: 5px;
    font-size: 18px;
    min-width: 152px;
    margin: 0 0 24px;
    padding: 3px 30px;
  }
}
.cat-creative .service-performance .box .item dl {
  display: flex;
  font-weight: 700;
  gap: 2.56vw;
  line-height: 1.4;
  margin: 2.56vw 0 0 10.25vw;
  min-height: 8.97vw;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item dl {
    gap: 20px;
    margin: 10px 0 0;
    min-height: 40px;
  }
}
.cat-creative .service-performance .box .item dt {
  align-items: center;
  background-color: rgba(30, 41, 61, 0.7);
  border-radius: 1.02vw;
  color: #fff;
  display: flex;
  font-size: 3.58vw;
  justify-content: center;
  width: 24.61vw;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item dt {
    border-radius: 5px;
    font-size: 16px;
    width: 110px;
  }
}
.cat-creative .service-performance .box .item dd {
  align-items: center;
  color: rgba(30, 41, 61, 0.7);
  display: flex;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 5.12vw;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item dd {
    font-size: 22px;
  }
}
.cat-creative .service-performance .box .item dd b {
  font-size: 6.66vw;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item dd b {
    font-size: 32px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .cat-creative .service-performance .box .item dd b {
    font-size: 26px;
  }
}
.cat-creative .service-performance .box .item dd span {
  font-size: 4.1vw;
  font-weight: 700;
  margin-left: 1.28vw;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item dd span {
    font-size: 20px;
    margin-left: 5px;
  }
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item .box2 {
    display: flex;
    margin: 10px 0 0;
  }
}
.cat-creative .service-performance .box .item .before,
.cat-creative .service-performance .box .item .after {
  padding: 5.12vw 0 8.97vw 0;
  position: relative;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item .before,
  .cat-creative .service-performance .box .item .after {
    padding: 20px 9% 28px;
  }
}
.cat-creative .service-performance .box .item .before::before,
.cat-creative .service-performance .box .item .after::before {
  color: rgba(30, 41, 61, 0.6);
  content: "BEFORE";
  display: block;
  font-size: 4.61vw;
  font-weight: 900;
  left: 9.74vw;
  position: absolute;
  top: 65%;
  transform: translate(0, -50%) rotate(-90deg);
  transform-origin: 0 100%;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item .before::before,
  .cat-creative .service-performance .box .item .after::before {
    font-size: 22px;
    left: 50px;
    top: 60%;
  }
}
.cat-creative .service-performance .box .item .before {
  background-color: #F2F4F8;
  border-radius: 2.56vw 2.56vw 0 0;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item .before {
    border-radius: 10px 0 0 10px;
    width: 51.4%;
  }
}
.cat-creative .service-performance .box .item .after {
  background-color: #FFF9E5;
  border-radius: 0 0 2.56vw 2.56vw;
  color: #ED5053;
  padding: 8.97vw 0 5.12vw 0;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item .after {
    border-radius: 0 10px 10px 0;
    padding: 20px 7.1% 28px;
    width: 48.6%;
  }
}
.cat-creative .service-performance .box .item .after::before {
  color: #ED5053;
  content: "AFTER";
  top: 55%;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item .after::before {
    left: initial;
    right: -25px;
    transform: translate(0, -50%) rotate(90deg);
    top: 30%;
  }
}
.cat-creative .service-performance .box .item .after::after {
  background: url(../img/common/service-performance-arrow.svg) no-repeat 50% 50%/contain;
  content: "";
  height: 5.64vw;
  left: 50%;
  position: absolute;
  top: -2.57vw;
  transform: translate(-50%, 0) rotate(90deg);
  width: 7.94vw;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item .after::after {
    height: 39px;
    left: -30px;
    top: 50%;
    transform: translate(0, -50%);
    width: 58px;
  }
}
.cat-creative .service-performance .box .item .after dt {
  background-color: #ED5053;
}
.cat-creative .service-performance .box .item .after .ttl,
.cat-creative .service-performance .box .item .after dd {
  color: #ED5053;
}
.cat-creative .service-performance .box .item .after .result {
  align-items: center;
  background-color: #ED5053;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 3.58vw;
  font-weight: 700;
  height: 20.51vw;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -1.8vw;
  top: -4.11vw;
  width: 20.51vw;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item .after .result {
    font-size: 14px;
    height: 80px;
    right: 66px;
    top: -27px;
    width: 80px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .cat-creative .service-performance .box .item .after .result {
    right: -10px;
  }
}
.cat-creative .service-performance .box .item .after .result span {
  align-items: baseline;
  display: flex;
}
.cat-creative .service-performance .box .item .after .result span b {
  font-size: 7.69vw;
  font-style: italic;
  letter-spacing: -0.04em;
  margin-right: 1.02vw;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item .after .result span b {
    font-size: 30px;
    margin-right: 4px;
  }
}
.cat-creative .service-performance .box .item .after .result span b em {
  font-size: 6.15vw;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .item .after .result span b em {
    font-size: 24px;
  }
}
.cat-creative .service-performance .box .summary {
  margin: 7.69vw 0 0;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .summary {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
  }
}
.cat-creative .service-performance .box .summary .txt p {
  font-size: 5.12vw;
  font-weight: 700;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .summary .txt p {
    font-size: 32px;
    line-height: 1.7;
    text-align: center;
  }
}
.cat-creative .service-performance .box .summary .txt p b {
  color: #F08500;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
}
.cat-creative .service-performance .box .summary .txt p b span {
  font-size: 8.71vw;
  font-weight: 900;
  line-height: 1;
}
@media (min-width: 769px) {
  .cat-creative .service-performance .box .summary .txt p b span {
    font-size: 50px;
  }
}
.cat-creative .scroll-performance {
  display: flex;
  margin: 10.25vw 0 15.38vw;
  overflow: hidden;
}
@media (min-width: 769px) {
  .cat-creative .scroll-performance {
    margin: 120px 0;
  }
}
.cat-creative .scroll-performance .imgs {
  animation: scrolling 30s linear infinite;
  display: flex;
  flex-shrink: 0;
  gap: 0 3.84vw;
  height: 69.23vw;
  padding-right: 3.84vw;
}
@media (min-width: 769px) {
  .cat-creative .scroll-performance .imgs {
    gap: 0 20px;
    height: 366px;
    padding-right: 20px;
  }
}
.cat-creative .scroll-performance .imgs img {
  object-fit: cover;
  object-position: 50% 0;
  width: 38.46vw;
}
@media (min-width: 769px) {
  .cat-creative .scroll-performance .imgs img {
    width: 200px;
  }
}
.cat-creative .common-case {
  background-color: #FFF7F2;
}
.cat-creative .service-point {
  padding: 20.51vw 0;
}
@media (min-width: 769px) {
  .cat-creative .service-point {
    padding: 120px 0;
  }
}
.cat-creative .service-point .wrap {
  max-width: 1360px;
}
.cat-creative .service-point .summary {
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 769px) {
  .cat-creative .service-point .summary {
    font-size: 20px;
  }
}
.cat-creative .service-point [class*=item] {
  margin: 15.38vw 0 0;
}
@media (min-width: 769px) {
  .cat-creative .service-point [class*=item] {
    margin: 80px 0 0;
  }
}
@media (min-width: 769px) {
  .cat-creative .service-point [class*=item] + [class*=item] {
    margin: 120px 0 0;
  }
}
@media (min-width: 769px) {
  .cat-creative .service-point [class*=item] .head {
    padding: 0 50px;
  }
}
.cat-creative .service-point [class*=item] .ttl {
  font-size: 6.66vw;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .cat-creative .service-point [class*=item] .ttl {
    font-size: 34px;
  }
}
.cat-creative .service-point [class*=item] p {
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .cat-creative .service-point [class*=item] p {
    font-size: 18px;
    line-height: 1.8;
    margin: 20px 0 0;
  }
}
.cat-creative .service-point [class*=item] .box {
  background-color: #F2F4F8;
  display: flex;
  flex-wrap: wrap;
  gap: 5.12vw;
  margin: 5.12vw -7.7vw 0;
  overflow: hidden;
  padding: 7.69vw;
}
@media (min-width: 769px) {
  .cat-creative .service-point [class*=item] .box {
    border-radius: 20px;
    gap: 40px 3.4%;
    margin: 60px 0 0;
    padding: 50px;
  }
}
.cat-creative .service-point [class*=item] .box img {
  border-radius: 1.28vw;
  box-shadow: 0 0 2.05vw 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media (min-width: 769px) {
  .cat-creative .service-point [class*=item] .box img {
    border-radius: 5px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
    width: 48.3%;
  }
}
.cat-creative .service-point .item02 .box {
  padding: 0;
}
@media (min-width: 769px) {
  .cat-creative .service-point .item02 .box img {
    width: 100%;
  }
}
.cat-creative .cta-discount {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.7));
  color: #fff;
  overflow: hidden;
  position: relative;
}
.cat-creative .cta-discount .wrap {
  position: relative;
  z-index: 2;
}
.cat-creative .cta-discount .txt {
  line-height: 1.8;
  margin: 0;
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .cat-creative .cta-discount .txt {
    order: 2;
    padding: 110px 0;
  }
}
.cat-creative .cta-discount .txt .ttl {
  font-size: 7.17vw;
  text-align: center;
}
@media (min-width: 769px) {
  .cat-creative .cta-discount .txt .ttl {
    align-items: center;
    display: flex;
    font-size: 40px;
    justify-content: center;
    line-height: 1.4;
    text-align: left;
  }
}
.cat-creative .cta-discount .txt .ttl img {
  margin: 0 auto 5.12vw;
}
@media (min-width: 769px) {
  .cat-creative .cta-discount .txt .ttl img {
    margin: 0 20px 0 0;
    width: 100px;
  }
}
.cat-creative .cta-discount .txt p {
  font-size: 4.1vw;
  line-height: 1.8;
  margin: 5.12vw 0 0;
  text-align: center;
}
@media (min-width: 769px) {
  .cat-creative .cta-discount .txt p {
    font-size: 22px;
    line-height: 2.09;
    margin: 45px 0;
  }
}
.cat-creative .cta-discount .txt .btn {
  margin: 7.69vw auto 0;
}
@media (min-width: 769px) {
  .cat-creative .cta-discount .txt .btn {
    margin: 45px auto 0;
    max-width: 500px;
  }
}
.cat-creative .cta-discount .txt .btn-link {
  background-image: linear-gradient(to right, #FF6736, #F08500);
  color: #fff;
  font-size: 4.61vw;
  font-weight: 700;
  height: 17.94vw;
  line-height: 1.5;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
}
@media (min-width: 769px) {
  .cat-creative .cta-discount .txt .btn-link {
    font-size: 24px;
    height: 120px;
    padding: 0 20px;
  }
}
.cat-creative .cta-discount .txt .btn-link span {
  position: relative;
  z-index: 2;
}
.cat-creative .cta-discount .txt .btn-link::before {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: 0.5s;
  width: 100%;
  z-index: 1;
}
.cat-creative .cta-discount .txt .btn-link::after {
  background-size: 3.07vw auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 769px) {
  .cat-creative .cta-discount .txt .btn-link::after {
    background-size: 12px auto;
    height: 32px;
    width: 32px;
  }
}
.cat-creative .cta-discount .txt .btn-link:hover::before {
  background-color: #1E293D;
}
.cat-creative .cta-discount .scroll-performance {
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
  z-index: -1;
}
.cat-creative .cta-discount .scroll-performance .imgs {
  animation: scrolling 30s linear infinite;
  display: flex;
  flex-shrink: 0;
  gap: 0 5.12vw;
  height: 100%;
  padding-right: 5.12vw;
}
@media (min-width: 769px) {
  .cat-creative .cta-discount .scroll-performance .imgs {
    gap: 0 20px;
    padding-right: 20px;
  }
}
.cat-creative .cta-discount .scroll-performance .imgs img {
  width: 62.05vw;
}
@media (min-width: 769px) {
  .cat-creative .cta-discount .scroll-performance .imgs img {
    width: 285px;
  }
}

.lp-creative .service-kv {
  background-color: #4494FF;
}
.lp-creative .service-kv::after {
  background-image: url(../img/lp-creative/kv-bg-sp.svg);
}
@media (min-width: 769px) {
  .lp-creative .service-kv::after {
    background-image: url(../img/lp-creative/kv-bg.svg), linear-gradient(to right, #4494FF, #78ACFF);
    background-size: 1900px auto, 100% 100%;
  }
}
.lp-creative .service-kv .box {
  margin: 30.76vw 0 20.51vw;
}
@media (min-width: 769px) {
  .lp-creative .service-kv .box {
    margin: 0;
  }
}
@media (min-width: 769px) {
  .lp-creative .service-kv .box .txt {
    max-width: 640px;
  }
}
.lp-creative .service-kv .box .ttl {
  color: #fff;
  font-size: 12.82vw;
}
@media (min-width: 769px) {
  .lp-creative .service-kv .box .ttl {
    font-size: 85px;
  }
}
.lp-creative .service-kv .kv-contact {
  z-index: 4;
}
.lp-creative .service-kv [class*=img] {
  left: 0;
  position: absolute;
  top: 0;
}
.lp-creative .service-kv .img01 {
  left: 6.3vw;
  top: -28vw;
  width: 35.64vw;
}
@media (min-width: 769px) {
  .lp-creative .service-kv .img01 {
    left: 610px;
    top: -50px;
    width: 308px;
  }
}
.lp-creative .service-kv .img02 {
  left: 77vw;
  top: -22vw;
  width: 19.48vw;
}
@media (min-width: 769px) {
  .lp-creative .service-kv .img02 {
    left: -65px;
    top: 245px;
    width: 159px;
  }
}
.lp-creative .service-kv .img03 {
  left: 6.2vw;
  top: 51.8vw;
  width: 44.35vw;
}
@media (min-width: 769px) {
  .lp-creative .service-kv .img03 {
    left: 760px;
    top: 233px;
    width: 266px;
  }
}
.lp-creative .service-kv .img04 {
  left: 56vw;
  top: 46.5vw;
  width: 39.48vw;
}
@media (min-width: 769px) {
  .lp-creative .service-kv .img04 {
    left: 930px;
    top: 135px;
    width: 314px;
  }
}
.lp-creative .service-kv .img05 {
  left: 69vw;
  top: -28vw;
  width: 7.43vw;
}
@media (min-width: 769px) {
  .lp-creative .service-kv .img05 {
    left: 31px;
    top: -54px;
    width: 44px;
  }
}
.lp-creative .service-what .item {
  margin: 7.69vw 0 0;
}
@media (min-width: 769px) {
  .lp-creative .service-what .item {
    align-items: center;
    display: flex;
    gap: 0 5.5%;
    margin: 60px 0 0;
  }
}
@media (min-width: 769px) {
  .lp-creative .service-what .item .img {
    flex-shrink: 0;
    width: 14.5%;
  }
}
.lp-creative .service-what .item .img img {
  margin: 0 auto;
  width: 37.17vw;
}
@media (min-width: 769px) {
  .lp-creative .service-what .item .img img {
    width: 145px;
  }
}
.lp-creative .service-what .item .img [src*=creative-merit02] {
  width: 23.84vw;
}
@media (min-width: 769px) {
  .lp-creative .service-what .item .img [src*=creative-merit02] {
    width: 93px;
  }
}
.lp-creative .service-what .item .img [src*=demerit01] {
  width: 35.38vw;
}
@media (min-width: 769px) {
  .lp-creative .service-what .item .img [src*=demerit01] {
    width: 138px;
  }
}

.banner-creative .service-kv {
  background-color: #fff;
}
.banner-creative .service-kv::after {
  background-image: url(../img/banner-creative/kv-bg-sp.jpg);
}
@media (min-width: 769px) {
  .banner-creative .service-kv::after {
    background-image: url(../img/banner-creative/kv-bg.jpg);
    background-size: 1920px auto;
  }
}
.banner-creative .service-kv .box {
  margin: 17.94vw 0 15.38vw;
}
@media (min-width: 769px) {
  .banner-creative .service-kv .box {
    margin: 0;
  }
}
@media (min-width: 769px) {
  .banner-creative .service-kv .box .wrap {
    display: inline-flex;
    max-width: 1260px;
  }
}
@media (min-width: 769px) {
  .banner-creative .service-kv .box .txt {
    max-width: 440px;
    padding: 70px 0 0;
    width: 100%;
  }
}
.banner-creative .service-kv .box .ttl {
  font-size: 17.94vw;
}
@media (min-width: 769px) {
  .banner-creative .service-kv .box .ttl {
    font-size: 85px;
  }
}
.banner-creative .service-kv .box .ttl .under {
  margin-bottom: 0.3em;
}
@media (max-width: 768px) {
  .banner-creative .service-kv .box .ttl .under::after {
    height: 2.56vw;
  }
}
.banner-creative .service-kv .box .ttl b {
  background-image: linear-gradient(to right, #E79D5A, #F2D05F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-creative .service-kv .kv-contact {
  z-index: 4;
}
.banner-creative .service-kv [class*=img] {
  left: 0;
  position: absolute;
  top: 0;
}
.banner-creative .service-kv .img01 {
  left: 5vw;
  top: 42vw;
  width: 19.23vw;
}
@media (min-width: 769px) {
  .banner-creative .service-kv .img01 {
    left: -110px;
    top: 120px;
    width: 124px;
  }
}
.banner-creative .service-kv .img02 {
  left: 77vw;
  top: -12vw;
  width: 17.69vw;
}
@media (min-width: 769px) {
  .banner-creative .service-kv .img02 {
    left: 430px;
    top: -20px;
    width: 102px;
  }
}
.banner-creative .scroll-performance .imgs {
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2.56vw;
  height: 71.79vw;
  padding-right: 2.56vw;
  width: 179.48vw;
}
@media (min-width: 769px) {
  .banner-creative .scroll-performance .imgs {
    gap: 10px;
    height: 760px;
    padding-right: 10px;
    width: 1675px;
  }
}
.banner-creative .scroll-performance .imgs img {
  width: 33.33vw;
}
@media (min-width: 769px) {
  .banner-creative .scroll-performance .imgs img {
    width: 325px;
  }
}

.website-creative .service-kv {
  background-color: #4221E4;
}
.website-creative .service-kv::after {
  background-image: url(../img/website-creative/kv-bg-sp.jpg);
}
@media (min-width: 769px) {
  .website-creative .service-kv::after {
    background-image: url(../img/website-creative/kv-bg.jpg), linear-gradient(to right, #2B34EF, #7800C3);
    background-size: 1920px auto, 100% 100%;
  }
}
.website-creative .service-kv .box {
  margin: 17.94vw 0 0;
}
@media (min-width: 769px) {
  .website-creative .service-kv .box {
    margin: 110px 0 0;
  }
}
@media (min-width: 769px) {
  .website-creative .service-kv .box .wrap {
    display: inline-flex;
    max-width: 1200px;
  }
}
.website-creative .service-kv .box .txt {
  color: #fff;
}
.website-creative .service-kv .box .ttl {
  font-size: 17.94vw;
}
@media (min-width: 769px) {
  .website-creative .service-kv .box .ttl {
    font-size: 85px;
  }
}
.website-creative .service-kv .box .ttl .under {
  margin-bottom: 0.3em;
}
@media (max-width: 768px) {
  .website-creative .service-kv .box .ttl .under::after {
    height: 2.56vw;
  }
}
@media (min-width: 769px) {
  .website-creative .service-kv .box .ttl .under .pc {
    display: inline;
  }
}
.website-creative .service-kv .box .ttl b {
  background-image: linear-gradient(to right, #E79D5A, #F2D05F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.website-creative .service-kv .kv-contact {
  z-index: 4;
}
.website-creative .service-kv [class*=img] {
  left: 0;
  position: absolute;
  top: 0;
}
.website-creative .service-kv .img01 {
  display: none;
}
@media (min-width: 769px) {
  .website-creative .service-kv .img01 {
    display: block;
    left: 760px;
    top: -40px;
    width: 369px;
  }
}

.cat-consulting .btn-area {
  margin: 15.38vw auto 0;
  text-align: center;
}
@media (min-width: 769px) {
  .cat-consulting .btn-area {
    margin: 60px auto 0;
  }
}
.cat-consulting .common-case {
  background-color: #FFF7F2;
}
.cat-consulting .service-improvement .summary {
  line-height: 1.6;
}
@media (min-width: 769px) {
  .cat-consulting .service-improvement .summary {
    font-size: 24px;
  }
}
.cat-consulting .service-point {
  padding: 20.51vw 0;
}
@media (min-width: 769px) {
  .cat-consulting .service-point {
    padding: 120px 0;
  }
}
.cat-consulting .service-point .summary {
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 769px) {
  .cat-consulting .service-point .summary {
    font-size: 20px;
  }
}
.cat-consulting .service-point .list [class*=item] {
  margin: 15.38vw 0 0;
}
@media (min-width: 769px) {
  .cat-consulting .service-point .list [class*=item] {
    display: flex;
    justify-content: space-between;
    margin: 100px 0 0;
  }
}
@media (min-width: 769px) {
  .cat-consulting .service-point .list [class*=item]:nth-child(2n+1) .head {
    order: 2;
  }
}
@media (min-width: 769px) {
  .cat-consulting .service-point .list [class*=item]:nth-child(2n+1) .box {
    order: 1;
  }
}
@media (min-width: 769px) {
  .cat-consulting .service-point .list [class*=item] .head {
    width: 42.5%;
  }
}
.cat-consulting .service-point .list [class*=item] .head .ttl {
  font-size: 6.66vw;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .cat-consulting .service-point .list [class*=item] .head .ttl {
    font-size: 34px;
    line-height: 1.2;
    margin: 10px 0 0;
  }
}
.cat-consulting .service-point .list [class*=item] .head p {
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .cat-consulting .service-point .list [class*=item] .head p {
    font-size: 18px;
    line-height: 1.8;
    margin: 20px 0 0;
  }
}
@media (max-width: 768px) {
  .cat-consulting .service-point .list [class*=item] .box {
    margin: 5.12vw 0 0;
  }
}
@media (min-width: 769px) {
  .cat-consulting .service-point .list [class*=item] .box {
    width: 50%;
  }
}
.cat-consulting .service-point02 {
  padding: 20.51vw 0;
}
@media (min-width: 769px) {
  .cat-consulting .service-point02 {
    padding: 120px 0;
  }
}
.cat-consulting .service-point02 .wrap {
  max-width: 1360px;
}
.cat-consulting .service-point02 .summary {
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 769px) {
  .cat-consulting .service-point02 .summary {
    font-size: 20px;
  }
}
.cat-consulting .service-point02 [class*=item] {
  margin: 15.38vw 0 0;
}
@media (min-width: 769px) {
  .cat-consulting .service-point02 [class*=item] {
    margin: 80px 0 0;
  }
}
@media (min-width: 769px) {
  .cat-consulting .service-point02 [class*=item] + [class*=item] {
    margin: 120px 0 0;
  }
}
@media (min-width: 769px) {
  .cat-consulting .service-point02 [class*=item] .head {
    padding: 0 50px;
  }
}
.cat-consulting .service-point02 [class*=item] .ttl {
  font-size: 6.66vw;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .cat-consulting .service-point02 [class*=item] .ttl {
    font-size: 34px;
  }
}
.cat-consulting .service-point02 [class*=item] p {
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .cat-consulting .service-point02 [class*=item] p {
    font-size: 18px;
    line-height: 1.8;
    margin: 20px 0 0;
  }
}
.cat-consulting .service-point02 [class*=item] .box {
  background-color: #F2F4F8;
  display: flex;
  flex-wrap: wrap;
  gap: 5.12vw;
  margin: 5.12vw -7.7vw 0;
  overflow: hidden;
  padding: 7.69vw;
}
@media (min-width: 769px) {
  .cat-consulting .service-point02 [class*=item] .box {
    border-radius: 20px;
    gap: 40px 3.4%;
    margin: 60px 0 0;
    padding: 50px;
  }
}
.cat-consulting .service-point02 [class*=item] .box img {
  border-radius: 1.28vw;
  box-shadow: 0 0 2.05vw 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media (min-width: 769px) {
  .cat-consulting .service-point02 [class*=item] .box img {
    border-radius: 5px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
    width: 48.3%;
  }
}
.cat-consulting .service-point02 .item02 .box {
  padding: 0;
}
@media (min-width: 769px) {
  .cat-consulting .service-point02 .item02 .box img {
    width: 100%;
  }
}
.cat-consulting .cta {
  background-image: linear-gradient(to right, #FF6736, #F08500);
  color: #fff;
  padding: 15.38vw 0;
}
@media (min-width: 769px) {
  .cat-consulting .cta {
    padding: 60px 0;
  }
}
@media (min-width: 769px) {
  .cat-consulting .cta .wrap {
    align-items: center;
    display: flex;
    gap: 0 3.75%;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .cat-consulting .cta .wrap {
    display: block;
  }
}
.cat-consulting .cta .txt {
  line-height: 1.8;
}
@media (min-width: 769px) {
  .cat-consulting .cta .txt {
    flex-grow: 1;
    margin: 0;
    order: 2;
  }
}
.cat-consulting .cta .txt .ttl {
  font-size: 7.17vw;
}
@media (min-width: 769px) {
  .cat-consulting .cta .txt .ttl {
    align-items: center;
    display: flex;
    font-size: 40px;
    line-height: 1.4;
  }
}
.cat-consulting .cta .txt .ttl img {
  margin: 0 auto 5.12vw;
}
@media (min-width: 769px) {
  .cat-consulting .cta .txt .ttl img {
    margin: 0 20px 0 0;
    width: 100px;
  }
}
.cat-consulting .cta .txt p {
  margin: 5.12vw 0 0;
}
@media (min-width: 769px) {
  .cat-consulting .cta .txt p {
    font-size: 18px;
    margin: 45px 0;
  }
}
.cat-consulting .cta .txt .ttl2 {
  font-size: 6.66vw;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .cat-consulting .cta .txt .ttl2 {
    font-size: 36px;
    margin: 0;
  }
}
@media (min-width: 769px) {
  .cat-consulting .cta .txt .ttl2 + .btn {
    max-width: 500px;
  }
}
.cat-consulting .cta .txt .ttl2 + .btn .btn-link {
  display: flex;
  font-size: 4.61vw;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  width: 100%;
}
@media (min-width: 769px) {
  .cat-consulting .cta .txt .ttl2 + .btn .btn-link {
    font-size: 24px;
    height: 120px;
    padding: 0 20px;
  }
}
.cat-consulting .cta .txt .ttl2 + .btn .btn-link::after {
  background-size: 3.07vw auto;
}
@media (min-width: 769px) {
  .cat-consulting .cta .txt .ttl2 + .btn .btn-link::after {
    background-size: 12px auto;
    height: 32px;
    width: 32px;
  }
}
.cat-consulting .cta .txt .btn {
  margin: 7.69vw auto 0;
}
@media (min-width: 769px) {
  .cat-consulting .cta .txt .btn {
    margin: 45px auto 0;
    max-width: 420px;
  }
}
.cat-consulting .cta .txt .btn-link {
  font-size: 4.61vw;
  font-weight: 700;
  line-height: 1.5;
  padding: 5.12vw 0;
  text-align: center;
  width: 100%;
}
@media (min-width: 769px) {
  .cat-consulting .cta .txt .btn-link {
    font-size: 20px;
    height: 70px;
    padding: 0 20px;
  }
}
.cat-consulting .cta .txt .btn-link::after {
  background-size: 3.07vw auto;
}
@media (min-width: 769px) {
  .cat-consulting .cta .txt .btn-link::after {
    background-size: 12px auto;
    height: 32px;
    width: 32px;
  }
}
.cat-consulting .cta .img {
  margin: 11.53vw auto 0;
  width: 71.79vw;
}
@media (min-width: 769px) {
  .cat-consulting .cta .img {
    flex-shrink: 0;
    margin: 0 auto;
    order: 1;
    width: 28.1%;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .cat-consulting .cta .img {
    margin: 60px auto 0;
    width: 60%;
  }
}

.websiteimprovement-consulting .service-kv {
  background-color: #6EACF1;
}
.websiteimprovement-consulting .service-kv::after {
  background-image: url(../img/websiteimprovement-consulting/kv-bg-sp.jpg);
}
@media (min-width: 769px) {
  .websiteimprovement-consulting .service-kv::after {
    background-image: url(../img/websiteimprovement-consulting/kv-bg.jpg), linear-gradient(to right, #6181f5, #71b0f1);
    background-size: 1920px auto, 100% 100%;
  }
}
.websiteimprovement-consulting .service-kv .box {
  margin: 7.69vw 0 45.64vw;
}
@media (min-width: 769px) {
  .websiteimprovement-consulting .service-kv .box {
    margin: 20px 0 0;
  }
}
@media (min-width: 769px) {
  .websiteimprovement-consulting .service-kv .box .wrap {
    display: inline-flex;
    max-width: 1200px;
  }
}
.websiteimprovement-consulting .service-kv .box .txt {
  color: #fff;
}
@media (min-width: 769px) {
  .websiteimprovement-consulting .service-kv .box .txt2 {
    font-size: 36px;
  }
}
.websiteimprovement-consulting .service-kv .box .ttl {
  font-size: 10.76vw;
}
@media (min-width: 769px) {
  .websiteimprovement-consulting .service-kv .box .ttl {
    font-size: 70px;
  }
}
.websiteimprovement-consulting .service-kv .box .ttl .under {
  margin-bottom: 0.5em;
}
@media (min-width: 769px) {
  .websiteimprovement-consulting .service-kv .box .ttl .under {
    margin-bottom: 0.3em;
  }
}
@media (max-width: 768px) {
  .websiteimprovement-consulting .service-kv .box .ttl .under::after {
    height: 1.53vw;
  }
}
@media (min-width: 769px) {
  .websiteimprovement-consulting .service-kv .box .ttl .under .pc {
    display: inline;
  }
}
@media (max-width: 768px) {
  .websiteimprovement-consulting .service-kv .box .ttl b {
    font-size: 12.3vw;
  }
}
.websiteimprovement-consulting .service-kv .kv-contact {
  z-index: 4;
}
.websiteimprovement-consulting .service-kv [class*=img] {
  left: 0;
  position: absolute;
  top: 0;
}
.websiteimprovement-consulting .service-kv .img01 {
  left: 16vw;
  top: 40vw;
  width: 71.02vw;
  display: block;
}
@media (min-width: 769px) {
  .websiteimprovement-consulting .service-kv .img01 {
    left: 550px;
    top: -185px;
    width: 648px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .websiteimprovement-consulting .service-improvement .summary2 .pc {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .websiteimprovement-consulting .service-point .list .head .ttl .pc {
    display: none;
  }
}

.ga4-gtm-setting-consulting .service-kv {
  background-color: #EFEBFE;
}
.ga4-gtm-setting-consulting .service-kv::after {
  background-image: url(../img/ga4-gtm-setting-consulting/kv-bg-sp.jpg), linear-gradient(to right, #F9F8FF, #EFEBFE);
}
@media (min-width: 769px) {
  .ga4-gtm-setting-consulting .service-kv::after {
    background-image: url(../img/ga4-gtm-setting-consulting/kv-bg.jpg), linear-gradient(to right, #F9F8FF, #EFEBFE);
    background-size: 1920px auto, 100% 100%;
  }
}
.ga4-gtm-setting-consulting .service-kv .box {
  margin: 7.69vw 0 45.64vw;
}
@media (min-width: 769px) {
  .ga4-gtm-setting-consulting .service-kv .box {
    margin: 20px 0 0;
  }
}
@media (min-width: 769px) {
  .ga4-gtm-setting-consulting .service-kv .box .wrap {
    display: inline-flex;
    max-width: 1200px;
  }
}
@media (min-width: 769px) {
  .ga4-gtm-setting-consulting .service-kv .box .txt2 {
    font-size: 36px;
  }
}
.ga4-gtm-setting-consulting .service-kv .box .ttl {
  font-size: 10.76vw;
}
@media (min-width: 769px) {
  .ga4-gtm-setting-consulting .service-kv .box .ttl {
    font-size: 70px;
  }
}
.ga4-gtm-setting-consulting .service-kv .box .ttl .under {
  margin-bottom: 0.5em;
}
@media (min-width: 769px) {
  .ga4-gtm-setting-consulting .service-kv .box .ttl .under {
    margin-bottom: 0.3em;
  }
}
@media (max-width: 768px) {
  .ga4-gtm-setting-consulting .service-kv .box .ttl .under::after {
    height: 1.53vw;
  }
}
@media (min-width: 769px) {
  .ga4-gtm-setting-consulting .service-kv .box .ttl .under .pc {
    display: inline;
  }
}
.ga4-gtm-setting-consulting .service-kv .box .ttl b {
  background-image: linear-gradient(to right, #9671FF, #7A4FFF);
  color: #7A4FFF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .ga4-gtm-setting-consulting .service-kv .box .ttl b {
    font-size: 12.3vw;
  }
}
.ga4-gtm-setting-consulting .service-kv .box .ttl u::after {
  background-image: linear-gradient(to right, #9671FF, #7A4FFF);
}
.ga4-gtm-setting-consulting .service-kv .kv-contact {
  z-index: 4;
}
.ga4-gtm-setting-consulting .service-kv [class*=img] {
  left: 0;
  position: absolute;
  top: 0;
}
.ga4-gtm-setting-consulting .service-kv .img01 {
  left: 13vw;
  top: 50vw;
  width: 70.51vw;
  display: block;
}
@media (min-width: 769px) {
  .ga4-gtm-setting-consulting .service-kv .img01 {
    left: 550px;
    top: -60px;
    width: 580px;
  }
}
.ga4-gtm-setting-consulting .service-improvement [class*=summary] {
  color: #1E293D;
  font-size: 4.61vw;
}
@media (min-width: 769px) {
  .ga4-gtm-setting-consulting .service-improvement [class*=summary] {
    font-size: 24px;
    margin: 10px 0 0;
  }
}
@media (max-width: 768px) {
  .ga4-gtm-setting-consulting .service-improvement .summary2 {
    font-size: 3.58vw;
  }
}
.ga4-gtm-setting-consulting .service-improvement .img02 {
  margin: 2.56vw 0 0;
}
@media (min-width: 769px) {
  .ga4-gtm-setting-consulting .service-improvement .img02 {
    margin: 20px 0 0;
  }
}
@media (min-width: 769px) {
  .ga4-gtm-setting-consulting .service-point .list [class*=item] {
    align-items: center;
    margin: 40px 0 0;
  }
}
.ga4-gtm-setting-consulting .service-point .list [class*=item]:nth-child(2n+1) .head {
  order: 1;
}
.ga4-gtm-setting-consulting .service-point .list [class*=item]:nth-child(2n+1) .box {
  order: 2;
}
@media (min-width: 769px) {
  .ga4-gtm-setting-consulting .service-point .list [class*=item] .head {
    width: 54.1%;
  }
}
@media (min-width: 769px) {
  .ga4-gtm-setting-consulting .service-point .list [class*=item] .box {
    width: 41.6%;
  }
}
@media (max-width: 768px) {
  .ga4-gtm-setting-consulting .service-price dl {
    box-shadow: none;
    overflow: initial;
  }
  .ga4-gtm-setting-consulting .service-price dt {
    border-radius: 1.28vw 1.28vw 0 0;
    box-shadow: 0 0 2.05vw rgba(0, 0, 0, 0.1);
    font-size: 4.1vw;
    line-height: 1.18;
    padding: 2.56vw 0;
    text-align: center;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .ga4-gtm-setting-consulting .service-price dd.fee {
    background-color: transparent;
    padding: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .ga4-gtm-setting-consulting .service-price dd.fee .price {
    background-color: #fff;
    border-radius: 0 0 1.28vw 1.28vw;
    box-shadow: 0 0 2.05vw rgba(0, 0, 0, 0.1);
    padding: 5.12vw 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .ga4-gtm-setting-consulting .service-price dd.fee .detail {
    box-shadow: 0 0 2.05vw rgba(0, 0, 0, 0.1);
    margin: 5.12vw 0 0;
  }
  .ga4-gtm-setting-consulting .service-price dd.fee .detail dl {
    border-radius: 1.28vw;
    overflow: hidden;
    padding: 0;
  }
  .ga4-gtm-setting-consulting .service-price dd.fee .detail dt {
    border-radius: 0;
    margin: 0;
  }
  .ga4-gtm-setting-consulting .service-price dd.fee .detail dd {
    margin: 0;
    padding: 0;
  }
  .ga4-gtm-setting-consulting .service-price dd.fee .detail dd .box {
    padding: 5.12vw;
  }
  .ga4-gtm-setting-consulting .service-price dd.fee .detail dd .box dt {
    border-radius: 9999px;
    padding: 0 7.69vw;
  }
}
@media (min-width: 769px) {
  .ga4-gtm-setting-consulting .service-flow .list dl {
    gap: 0 3%;
  }
}
@media (min-width: 769px) {
  .ga4-gtm-setting-consulting .service-flow .list .ttl {
    width: 350px;
  }
}
@media (max-width: 768px) {
  .ga4-gtm-setting-consulting .service-what .ttl-sec {
    margin: 0 -7.7vw 10.25vw;
  }
}

.googleanalytics-consulting .service-kv {
  background-color: #2AB2FF;
}
.googleanalytics-consulting .service-kv::after {
  background-image: url(../img/googleanalytics-consulting/kv-bg-sp.jpg);
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-kv::after {
    background-image: url(../img/googleanalytics-consulting/kv-bg.jpg);
    background-size: 1920px auto, 100% 100%;
  }
}
.googleanalytics-consulting .service-kv .box {
  margin: 17.94vw 0 25vw;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-kv .box {
    margin: 20px 0 0;
  }
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-kv .box .wrap {
    display: inline-flex;
    justify-content: center;
    max-width: 1200px;
    padding: 40px 0 0;
  }
}
@media (max-width: 768px) {
  .googleanalytics-consulting .service-kv .box .txt {
    font-size: 4.1vw;
  }
}
.googleanalytics-consulting .service-kv .box .txt2 {
  font-size: 5.64vw;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-kv .box .txt2 {
    font-size: 36px;
  }
}
.googleanalytics-consulting .service-kv .box .ttl {
  text-shadow: 0 0 20px rgba(9, 97, 228, 0.4);
  color: #fff;
  font-size: 11.79vw;
  margin: 7.69vw 0 0;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-kv .box .ttl {
    font-size: 70px;
    margin: 60px 0 0;
  }
}
.googleanalytics-consulting .service-kv .box .ttl u::after {
  background-color: #fff;
}
@media (max-width: 768px) {
  .googleanalytics-consulting .service-kv .box .ttl u.under {
    margin-bottom: 0.3em;
  }
}
.googleanalytics-consulting .service-kv .box .ttl b {
  color: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .googleanalytics-consulting .service-kv .box .ttl b {
    font-size: 12.82vw;
  }
}
.googleanalytics-consulting .service-kv .box .ttl b span {
  font-size: 4.61vw;
  left: 50%;
  position: absolute;
  top: -0.8em;
  transform: translate(-50%, 0);
  width: 100%;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-kv .box .ttl b span {
    left: 0;
    font-size: 30px;
    top: -1em;
    text-align: left;
    transform: translate(0, 0);
  }
}
.googleanalytics-consulting .service-kv .img01 {
  left: 4.5vw;
  top: 53vw;
  width: 33.07vw;
  display: block;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-kv .img01 {
    left: -65px;
    top: 140px;
    width: 231px;
  }
}
.googleanalytics-consulting .service-kv .img02 {
  left: 61.5vw;
  top: 53vw;
  width: 35.64vw;
  display: block;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-kv .img02 {
    left: 920px;
    top: -40px;
    width: 273px;
  }
}
.googleanalytics-consulting .improvement01 [class*=summary] {
  color: #1E293D;
  font-size: 4.61vw;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .improvement01 [class*=summary] {
    font-size: 24px;
    margin: 10px 0 0;
  }
}
@media (max-width: 768px) {
  .googleanalytics-consulting .improvement01 .summary2 {
    font-size: 3.58vw;
  }
}
.googleanalytics-consulting .improvement01 .img02 {
  margin: 2.56vw 0 0;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .improvement01 .img02 {
    margin: 20px 0 0;
  }
}
.googleanalytics-consulting .improvement02 {
  padding-top: 0;
}
.googleanalytics-consulting .improvement02 .summary {
  line-height: 1.6;
}
@media (max-width: 768px) {
  .googleanalytics-consulting .improvement02 .summary {
    margin: 0 -7.7vw;
  }
}
@media (min-width: 769px) {
  .googleanalytics-consulting .improvement02 .summary {
    font-size: 36px;
  }
}
.googleanalytics-consulting .improvement02 .summary2 {
  color: #ED5053;
}
.googleanalytics-consulting .service-price dd.fee .price b {
  align-items: baseline;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-price dd.fee .detail {
    margin: 30px 40px 20px;
  }
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-price dd.fee .detail > dl {
    padding: 30px;
  }
}
.googleanalytics-consulting .service-price dd.fee .detail dt {
  margin: 0;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-price dd.fee .detail .flex {
    flex-wrap: nowrap;
    gap: 30px;
  }
}
.googleanalytics-consulting .service-price dd.fee .detail .box {
  width: auto;
}
.googleanalytics-consulting .service-price dd.fee .detail .box.full2 {
  width: 100%;
}
.googleanalytics-consulting .service-price dd.fee .detail .box dl:nth-child(2) {
  flex-grow: 1;
}
.googleanalytics-consulting .service-price dd.fee .detail .box dd b {
  color: #F08500;
  display: block;
  font-size: 4.61vw;
  font-weight: 700;
  margin: 5.12vw 0 0;
  text-align: center;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-price dd.fee .detail .box dd b {
    font-size: 18px;
    margin: 20px 0 0;
  }
}
.googleanalytics-consulting .service-point02 .item03 .box {
  padding: 7.69vw;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-point02 .item03 .box {
    padding: 55px;
  }
}
.googleanalytics-consulting .service-point02 .item03 .box img {
  box-shadow: none;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-point02 .item03 .box img {
    width: 853px;
  }
}
.googleanalytics-consulting .service-point02 .ttl2 {
  font-size: 6.15vw;
  font-weight: 700;
  margin: 0 0 -2.57vw;
  text-align: center;
  width: 100%;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-point02 .ttl2 {
    font-size: 24px;
    margin: 0 0 -10px;
  }
}
.googleanalytics-consulting .service-point02 .report {
  display: flex;
  flex-wrap: wrap;
  gap: 10.25vw 7.69vw;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-point02 .report {
    gap: 40px 30px;
  }
}
.googleanalytics-consulting .service-point02 .report .reports {
  text-align: center;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-point02 .report .reports {
    width: calc((100% - 60px) / 3);
  }
}
.googleanalytics-consulting .service-point02 .report .reports img {
  width: 100%;
}
.googleanalytics-consulting .service-point02 .report .reports .txt {
  align-items: center;
  background-color: #1E293D;
  border-radius: 9999px;
  color: #fff;
  display: inline-flex;
  font-size: 3.58vw;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin: 5.12vw 0 0;
  min-width: 90%;
  padding: 2.56vw;
}
@media (min-width: 769px) {
  .googleanalytics-consulting .service-point02 .report .reports .txt {
    font-size: 14px;
    margin: 20px 0 0;
    min-width: 79%;
    padding: 10px;
  }
}
.googleanalytics-consulting .service-price .ttl-sec,
.googleanalytics-consulting .service-flow .ttl-sec,
.googleanalytics-consulting .service-support .ttl-sec {
  overflow: hidden;
}
@media (max-width: 768px) {
  .googleanalytics-consulting .service-price .ttl-sec .jp,
  .googleanalytics-consulting .service-flow .ttl-sec .jp,
  .googleanalytics-consulting .service-support .ttl-sec .jp {
    display: block;
    margin: 0 -7.7vw;
  }
}
@media (max-width: 768px) {
  .googleanalytics-consulting .service-what .ttl-sec {
    display: block;
    margin: 0 -7.7vw;
  }
}

.growthhack-consulting .service-kv {
  background-color: #8187FF;
}
.growthhack-consulting .service-kv::after {
  background-image: url(../img/growthhack-consulting/kv-bg-sp.jpg), linear-gradient(to right, #00EBFF, #FF24FF);
}
@media (min-width: 769px) {
  .growthhack-consulting .service-kv::after {
    background-image: url(../img/growthhack-consulting/kv-bg.jpg), linear-gradient(to right, #00EBFF, #FF24FF);
    background-size: 1920px auto, 100% 100%;
  }
}
.growthhack-consulting .service-kv .box {
  margin: 17.94vw 0 32vw;
}
@media (min-width: 769px) {
  .growthhack-consulting .service-kv .box {
    margin: 20px 0 0;
  }
}
@media (min-width: 769px) {
  .growthhack-consulting .service-kv .box .wrap {
    display: inline-flex;
    justify-content: center;
    max-width: 1200px;
    padding: 40px 0 0;
  }
}
.growthhack-consulting .service-kv .box .txt {
  color: #fff;
}
@media (max-width: 768px) {
  .growthhack-consulting .service-kv .box .txt {
    font-size: 4.1vw;
  }
}
.growthhack-consulting .service-kv .box .txt2 {
  background-image: linear-gradient(10deg, #C859C0, #150D9C);
  color: #150D9C;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 5.64vw;
}
@media (min-width: 769px) {
  .growthhack-consulting .service-kv .box .txt2 {
    font-size: 36px;
  }
}
.growthhack-consulting .service-kv .box .ttl {
  color: #fff;
}
@media (min-width: 769px) {
  .growthhack-consulting .service-kv .box .ttl {
    font-size: 70px;
  }
}
.growthhack-consulting .service-kv .box .ttl u.under {
  margin-bottom: 0.3em;
}
.growthhack-consulting .service-kv .box .ttl b {
  color: #FFD63E;
  position: relative;
}
@media (max-width: 768px) {
  .growthhack-consulting .service-kv .box .ttl b {
    font-size: 11.28vw;
  }
}
.growthhack-consulting .service-kv .box .ttl span {
  background-image: linear-gradient(10deg, #C859C0, #150D9C);
  color: #150D9C;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.growthhack-consulting .service-kv .img01 {
  left: 20vw;
  top: 56vw;
  width: 54.61vw;
  display: block;
}
@media (min-width: 769px) {
  .growthhack-consulting .service-kv .img01 {
    left: -110px;
    top: 70px;
    width: 368px;
  }
}
.growthhack-consulting .service-kv .img02 {
  display: none;
}
@media (min-width: 769px) {
  .growthhack-consulting .service-kv .img02 {
    display: block;
    left: 930px;
    top: 85px;
    width: 346px;
  }
}
.growthhack-consulting .common-case {
  background-color: #fff;
}
@media (min-width: 769px) {
  .growthhack-consulting .home-support {
    padding: 80px 0;
  }
}
@media (min-width: 769px) {
  .growthhack-consulting .home-support .ttl-sec {
    font-size: 38px;
  }
}
@media (min-width: 769px) {
  .growthhack-consulting .service-point02 [class*=item] .box {
    gap: 40px 30px;
  }
}
@media (min-width: 769px) {
  .growthhack-consulting .service-point02 [class*=item] .box [src*=point01] {
    width: calc((100% - 60px) / 3);
  }
}
.growthhack-consulting .service-point02 [class*=item] .box [src*=point01-1] {
  margin: 0 auto;
}
@media (min-width: 769px) {
  .growthhack-consulting .service-point02 [class*=item] .box [src*=point01-1] {
    max-width: 788px;
    width: 100%;
  }
}
.growthhack-consulting .service-point02 [class*=item] .box [src*=point02] {
  box-shadow: none;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .growthhack-consulting .service-point02 [class*=item] .box [src*=point02] {
    max-width: 913px;
    width: 100%;
  }
}
.growthhack-consulting .service-point02 [class*=item] .box.box03 {
  gap: 2.56vw 4vw;
}
@media (min-width: 769px) {
  .growthhack-consulting .service-point02 [class*=item] .box.box03 {
    gap: 5px;
  }
}
.growthhack-consulting .service-point02 [class*=item] .box [src*=point03] {
  box-shadow: none;
  margin: 0 auto;
  width: calc(50% - 2vw);
}
@media (min-width: 769px) {
  .growthhack-consulting .service-point02 [class*=item] .box [src*=point03] {
    max-width: 296px;
    width: calc((100% - 16px) / 4);
  }
}
.growthhack-consulting .service-point02 .ttl2 {
  font-size: 6.15vw;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 -7.7vw -2.57vw;
  text-align: center;
  width: 100vw;
}
@media (min-width: 769px) {
  .growthhack-consulting .service-point02 .ttl2 {
    font-size: 24px;
    margin: 0 0 -10px;
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1300px) {
  .growthhack-consulting .service-performance02 .box .item .ttl {
    margin: 0 -30px 24px;
  }
}
.growthhack-consulting .service-support .ttl-sec {
  overflow: hidden;
}
@media (max-width: 768px) {
  .growthhack-consulting .service-support .ttl-sec .jp {
    display: block;
    margin: 0 -7.7vw;
  }
}
@media (max-width: 768px) {
  .growthhack-consulting .service-what .ttl-sec {
    display: block;
    margin: 0 -7.7vw;
  }
}

.in-house-support .service-kv {
  background-color: #F9B44C;
}
.in-house-support .service-kv::after {
  background-image: url(../img/in-house-support/kv-bg-sp.jpg), linear-gradient(to right, #FF983A, #F2D05F);
}
@media (min-width: 769px) {
  .in-house-support .service-kv::after {
    background-image: url(../img/in-house-support/kv-bg.jpg), linear-gradient(to right, #FF983A, #F2D05F);
    background-size: 1920px auto, 100% 100%;
  }
}
.in-house-support .service-kv .box {
  margin: 7.69vw 0 45.64vw;
}
@media (min-width: 769px) {
  .in-house-support .service-kv .box {
    margin: 20px 0 0;
  }
}
@media (min-width: 769px) {
  .in-house-support .service-kv .box .wrap {
    display: inline-flex;
    max-width: 1260px;
  }
}
@media (min-width: 769px) {
  .in-house-support .service-kv .box .txt2 {
    font-size: 36px;
  }
}
.in-house-support .service-kv .box .ttl {
  color: #fff;
  font-size: 11.79vw;
}
@media (min-width: 769px) {
  .in-house-support .service-kv .box .ttl {
    font-size: 70px;
  }
}
.in-house-support .service-kv .box .ttl .under {
  margin-bottom: 0.5em;
}
@media (min-width: 769px) {
  .in-house-support .service-kv .box .ttl .under {
    margin-bottom: 0.3em;
  }
}
@media (max-width: 768px) {
  .in-house-support .service-kv .box .ttl .under::after {
    height: 1.53vw;
  }
}
@media (max-width: 768px) {
  .in-house-support .service-kv .box .ttl .under b {
    font-size: 9.23vw;
  }
}
@media (min-width: 769px) {
  .in-house-support .service-kv .box .ttl .under .pc {
    display: inline;
  }
}
.in-house-support .service-kv .box .ttl b {
  color: #fff;
}
@media (max-width: 768px) {
  .in-house-support .service-kv .box .ttl b {
    font-size: 12.3vw;
  }
}
.in-house-support .service-kv .box .ttl u::after {
  background-color: #fff;
}
.in-house-support .service-kv .kv-contact {
  z-index: 4;
}
.in-house-support .service-kv [class*=img] {
  left: 0;
  position: absolute;
  top: 0;
}
.in-house-support .service-kv .img01 {
  left: 16vw;
  top: 55vw;
  width: 66.92vw;
  display: block;
}
@media (min-width: 769px) {
  .in-house-support .service-kv .img01 {
    left: 710px;
    top: 5px;
    width: 521px;
  }
}
.in-house-support .common-case {
  background-color: #fff;
}
.in-house-support .service-price dd.fee .price b {
  align-items: baseline;
}
.in-house-support .btn-area {
  margin: 15.38vw auto 0;
  text-align: center;
}
@media (min-width: 769px) {
  .in-house-support .btn-area {
    margin: 60px auto 0;
  }
}/*# sourceMappingURL=style.css.map */