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

html {
  scroll-behavior: smooth;
  scroll-padding: 17.94vw;
}
@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;
}

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(1080px + 60px);
    padding: 0 30px;
  }
}

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

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

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

.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: 1080px;
  }
}
.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 4.73%;
    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 {
  border-bottom: 0.25vw solid rgba(255, 255, 255, 0.6);
  font-size: 4.1vw;
  font-weight: 700;
  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 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;
  }
}
@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 {
    bottom: 0;
    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 {
    border-radius: 1.28vw;
    opacity: 1;
    padding: 20.51vw 10.25vw;
    transform: scale(1);
    visibility: visible;
    z-index: 10000;
  }
  .nav-global .parent {
    display: block;
  }
  .nav-global .parent:not(.service, .company) .head::after {
    background: url(/assets/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.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: flex-start;
    max-width: none;
    padding: 0 150px 0 40px;
  }
}
.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;
  }
}
.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 {
    display: flex;
    gap: 55px;
  }
}
.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);
}
.header .btn-nav {
  display: none;
}

.float-nav {
  display: block;
  position: fixed;
  z-index: 100000;
}
@media (max-width: 768px) {
  .float-nav {
    bottom: 5.12vw;
    right: 5.12vw;
  }
}
@media (min-width: 769px) {
  .float-nav {
    right: 40px;
    top: 15px;
  }
}

.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);
}
@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 .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: 0 2.56vw 0 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;
  text-align: center;
}
@media (min-width: 769px) {
  .footer .fnav2 {
    font-size: 14px;
    margin: 60px 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.8;
    margin: 0 0 40px;
  }
}
.ttl-sec .en {
  display: block;
  font-size: 4.1vw;
  text-align: center;
}
@media (min-width: 769px) {
  .ttl-sec .en {
    font-size: 20px;
  }
}

.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 {
  background-color: #1E293D;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  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 {
    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-link,
.btn-link-down,
.btn-contact {
  align-items: center;
  background-color: #fff;
  border: 1px solid #1E293D;
  border-radius: 6.41vw;
  color: #1E293D;
  display: inline-flex;
  font-weight: 500;
  height: 12.82vw;
  justify-content: center;
  padding: 2.56vw 7.69vw;
  text-decoration: none;
}
@media (min-width: 769px) {
  .btn-link,
  .btn-link-down,
  .btn-contact {
    border-radius: 26px;
    height: 52px;
    min-width: 170px;
    padding: 15px 30px;
  }
}
.btn-link span,
.btn-link-down span,
.btn-contact span {
  line-height: 1.1;
}
@media (min-width: 769px) {
  .btn-link span,
  .btn-link-down span,
  .btn-contact span {
    margin: -2px 0 0;
  }
}
.btn-link:hover,
.btn-link-down:hover,
.btn-contact:hover {
  background-color: #1E293D;
  color: #fff;
  opacity: 1;
}
.btn-link::after,
.btn-link-down::after,
.btn-contact::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;
  width: 7.69vw;
}
@media (min-width: 769px) {
  .btn-link::after,
  .btn-link-down::after,
  .btn-contact::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;
  }
}

.article-card {
  max-width: 80.76vw;
  position: relative;
}
@media (min-width: 769px) {
  .article-card {
    max-width: 330px;
  }
}
.article-card a {
  color: #1E293D;
  display: block;
}
.article-card a:hover {
  opacity: 0.7;
}
.article-card .card {
  padding-bottom: 12.82vw;
}
@media (min-width: 769px) {
  .article-card .card {
    padding-bottom: 70px;
  }
}
.article-card .thumb {
  border: 1px solid #BEBEBE;
}
.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.84vw;
  bottom: 1.28vw;
  background-color: #F2F4F8;
  display: inline-flex;
  font-size: 3.58vw;
  height: 7.69vw;
  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: 16px;
    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 4.16%;
  }
}
.articles .list .article-card {
  width: 100%;
}
@media (min-width: 769px) {
  .articles .list .article-card {
    max-width: 330px;
    width: 30.56%;
  }
}

.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 {
  margin: 7.69vw 0 15.38vw;
  padding: 0 0 17.94vw;
}
@media (min-width: 769px) {
  .common-articles {
    margin: 50px 0 100px;
    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: 37.17vw;
  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(/assets/img/common/arrow.svg);
}
.common-articles .slider-arrow::after {
  background: url(/assets/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: 50vw;
  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: 3.07vw;
  }
}
@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(/assets/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 p {
  color: #fff;
  font-size: 4.61vw;
  text-align: center;
}
@media (min-width: 769px) {
  .common-contact p {
    font-size: 18px;
  }
}
.common-contact .common-form {
  width: 100%;
}
@media (min-width: 769px) {
  .common-contact .common-form {
    display: flex;
    height: 160px;
  }
}
.common-contact .common-form p {
  text-align: left;
}
.common-contact .common-form .head {
  background-color: #1E293D;
  color: #fff;
  position: relative;
  z-index: 3;
}
@media (min-width: 769px) {
  .common-contact .common-form .head {
    padding: 30px 0 0 40px;
    width: 280px;
  }
}
.common-contact .common-form .head::after {
  background-color: #1E293D;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
  display: block;
  position: absolute;
}
@media (min-width: 769px) {
  .common-contact .common-form .head::after {
    height: 100%;
    left: 100%;
    top: 0;
    width: 40px;
  }
}
.common-contact .common-form .head .en {
  display: flex;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 769px) {
  .common-contact .common-form .head .en {
    font-size: 26px;
  }
}
.common-contact .common-form .head .en::after {
  content: "";
  flex-grow: 1;
}
@media (min-width: 769px) {
  .common-contact .common-form .head .en::after {
    height: 1px;
    margin-left: 15px;
    width: 100%;
  }
}
.common-contact .common-form .head p {
  font-weight: 400;
}
@media (min-width: 769px) {
  .common-contact .common-form .head p {
    font-size: 14px;
    margin: 15px 0 0;
  }
}
.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));
  position: relative;
  z-index: 2;
}
@media (min-width: 769px) {
  .common-contact .common-form .step {
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.1));
    flex-grow: 1;
    height: 100%;
    padding: 20px 0 0 60px;
  }
}
.common-contact .common-form .step::after {
  background-color: rgba(255, 255, 255, 0.8);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  height: 100%;
  left: 100%;
  position: absolute;
  top: 0;
  width: 40px;
}
.common-contact .common-form .step .ttl {
  align-items: flex-end;
  color: #F08500;
  display: flex;
  line-height: 1;
}
.common-contact .common-form .step .ttl .en {
  align-items: flex-end;
  display: flex;
}
.common-contact .common-form .step .ttl .en span {
  align-items: center;
  display: flex;
}
@media (min-width: 769px) {
  .common-contact .common-form .step .ttl .en span {
    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;
}
@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-weight: 500;
}
@media (min-width: 769px) {
  .common-contact .common-form .step .ttl .en b {
    font-size: 26px;
  }
}
.common-contact .common-form .step .ttl .jp {
  font-weight: 700;
}
@media (min-width: 769px) {
  .common-contact .common-form .step .ttl .jp {
    font-size: 18px;
    margin: 0 0 3px 7px;
  }
}
.common-contact .common-form .step .ttl .jp span {
  color: #1E293D;
  font-weight: 400;
}
@media (min-width: 769px) {
  .common-contact .common-form .step .ttl .jp span {
    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 .btn {
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
@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: 100%;
  }
}
.common-contact .common-form .btn button {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
}
@media (min-width: 769px) {
  .common-contact .common-form .btn button {
    font-size: 18px;
    height: 50%;
    width: 100%;
  }
}
.common-contact .common-form .btn .prev {
  background-color: #fff;
  color: #1E293D;
}
.common-contact .common-form .btn .next {
  background: linear-gradient(90deg, #FF6736 0%, #F58528 100%);
  color: #fff;
}
.common-contact .common-form .btn .send {
  background: linear-gradient(90deg, #FF6736 0%, #F58528 100%);
  color: #fff;
  display: none;
}
.common-contact .common-form .progress {
  display: flex;
}
@media (min-width: 769px) {
  .common-contact .common-form .progress {
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    margin-left: 10px;
    width: 6px;
  }
}
.common-contact .common-form .progress .dot {
  background-color: #fff;
  border-radius: 3px;
  display: block;
}
@media (min-width: 769px) {
  .common-contact .common-form .progress .dot {
    border-radius: 3px;
    height: 6px;
    width: 6px;
  }
}
.common-contact .common-form .progress .dot.current {
  background-color: #1E293D;
}
@media (min-width: 769px) {
  .common-contact .common-form .progress .dot.current {
    height: 20px;
  }
}

@media (min-width: 769px) {
  .home {
    padding: 0;
  }
}
@media (min-width: 769px) {
  .home .header.headerTop {
    box-shadow: none;
    left: 50%;
    max-width: 1360px;
    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 130px 0 50px;
  }
}
@media (min-width: 769px) {
  .home .float-nav.headerTop {
    position: absolute;
    right: calc(50% - 680px + 50px);
    top: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1380px) {
  .home .float-nav.headerTop {
    right: 50px;
  }
}

.home-kv {
  background: url(../img/home/kv-bg-sp.jpg) no-repeat 50% 50%/cover;
  height: 217.94vw;
  position: relative;
  overflow: hidden;
}
@media (min-width: 769px) {
  .home-kv {
    background-image: url(../img/home/kv-bg.jpg);
    height: 760px;
  }
}
.home-kv .en {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15.38vw;
  font-weight: 800;
  left: -23vw;
  letter-spacing: 0.04em;
  line-height: 1;
  position: absolute;
  top: 5.12vw;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .home-kv .en {
    font-size: 100px;
    left: calc(50% - 740px);
    top: 140px;
  }
}
.home-kv .txt {
  padding: 25.64vw 0 0;
}
@media (min-width: 769px) {
  .home-kv .txt {
    padding: 290px 0 0;
  }
}
.home-kv .ttl {
  font-size: 5.64vw;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 769px) {
  .home-kv .ttl {
    font-size: 36px;
  }
}
.home-kv .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 .ttl span {
    margin: 0 10px;
    padding: 4px 10px 8px;
  }
}
.home-kv .ttl span:first-child {
  margin-left: 0;
}
.home-kv .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 .ttl b {
    font-size: 50px;
    margin: 20px 0 0;
  }
}
.home-kv p {
  font-size: 3.58vw;
  line-height: 1.71;
  margin: 15px 0 0;
}
@media (min-width: 769px) {
  .home-kv p {
    font-size: 18px;
    line-height: 1.88;
    margin: 30px 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 {
    max-width: 348px;
    min-height: 400px;
    padding: 15px 10px 15px 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;
  }
}
@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: 40px;
    margin-right: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .home-support .item .num {
    font-size: 30px;
    margin-left: -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: 14px;
  }
}
@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: 22px;
    margin: 5px 0 0;
  }
}
.home-support .item .ttl2 {
  line-height: 1.1;
  position: relative;
}
@media (max-width: 768px) {
  .home-support .item .ttl2 {
    font-size: 4.61vw;
  }
}
.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: 100px;
    width: 123px;
  }
}
@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-weight: 700;
  height: 12.82vw;
  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: 18px;
    height: 60px;
    margin: 30px 0 30px -50px;
    max-width: 290px;
    padding: 0 15px 0 50px;
  }
}
.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: 4px;
    width: 20px;
  }
}
.home-support .item .ttl2 span {
  font-size: 3.58vw;
}
@media (min-width: 769px) {
  .home-support .item .ttl2 span {
    font-size: 14px;
  }
}
.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: 14px;
  }
}
.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: 14px;
  }
}
.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: 15px 25px 0 30px;
  }
}
@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: 0;
    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;
    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 .ttl-line {
  margin: 7.69vw 0 5.12vw;
}
@media (min-width: 769px) {
  .home-case .ttl-line {
    margin: 75px 0 50px;
  }
}
.home-case .common-articles {
  margin: 0;
}
.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 {
    border-radius: 7.69vw;
    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: 0 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;
    gap: 5.5%;
  }
}
.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: 420px;
    width: 38.9%;
  }
}
.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: 600px;
    width: 55.6%;
  }
}
.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 a {
  align-items: center;
  background-color: #fff;
  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 a {
    border-radius: 5px;
    font-size: 18px;
    height: 100px;
    max-width: 600px;
    padding: 0 80px 0 40px;
  }
}
.home-service .item .list 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 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 a::after {
    background-size: 10px auto;
    border-width: 1px;
    height: 40px;
    right: 20px;
    width: 40px;
  }
}
.home-service .item .list a:hover {
  color: #fff;
  opacity: 1;
}
.home-service .item .list a:hover::before {
  opacity: 1;
  transform: scale(1.02);
}
.home-service .item .list a:hover::after {
  background-image: url(../img/common/arrow-orange.svg);
  border: none;
  opacity: 1;
}
.home-service .item .list a span {
  display: inline-block;
  font-weight: 500;
}
@media (max-width: 768px) {
  .home-service .item .list 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-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: 340px;
    width: 31.5%;
  }
}
@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;
  }
}
@media (max-width: 768px) {
  .home-blog .lead-sec {
    margin-top: -5.13vw;
  }
}
.home-blog .ttl-line {
  margin: 7.69vw 0 3.84vw;
}
@media (min-width: 769px) {
  .home-blog .ttl-line {
    margin: 60px 0 30px;
  }
}
@media (max-width: 768px) {
  .home-blog .common-articles {
    margin: 0 0 2.56vw;
  }
}
@media (max-width: 768px) {
  .home-blog .btn-link {
    border-radius: 7.69vw;
    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 p {
    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 .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 b,
.case-detail .solution .result-summary b strong,
.case-detail .solution .result-summary strong b,
.case-detail .solution .result-summary strong strong {
  font-size: 133%;
}
@media (min-width: 769px) {
  .case-detail .solution .result-summary b b,
  .case-detail .solution .result-summary b strong,
  .case-detail .solution .result-summary strong b,
  .case-detail .solution .result-summary strong 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 .btn-area {
  margin: 15.38vw auto 0;
}
@media (min-width: 769px) {
  .case-detail .btn-area {
    margin: 60px auto 0;
  }
}
.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;
}/*# sourceMappingURL=style.css.map */