@charset "UTF-8";
/*!
global > font
------------------------------
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald&family=Red+Hat+Text:wght@300..700&display=swap");
/*!
global > color
------------------------------
*/
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
}

/*!
foundation > reset
------------------------------
*/
/* 
html5doctor.com Reset Stylesheet v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*!
foundation > base
------------------------------
*/
/* font reset
---------------------------------------------------------- */
body, html {
  font: 16px/1.231 "Noto Sans JP", sans-serif;
  font: 16px "Noto Sans JP", sans-serif;
  *font-size: small;
  *font: x-small;
  width: 100%;
  height: auto;
  color: #333;
  -webkit-text-size-adjust: none;
  -webkit-font-feature-settings: "normal";
          font-feature-settings: "normal";
  -ms-font-feature-settings: "normal";
  font-weight: 500;
}

#wrapper {
  width: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  vertical-align: top;
}

select, input, button, textarea {
  font: 99% "Noto Sans JP", sans-serif;
  font-family: "Noto Sans JP", sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

pre, code, kbd, samp, tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

#yui3-css-stamp.cssfonts {
  display: none;
}

/***************************************
 * clear fix
****************************************/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}

.clearfix {
  display: inline-block;
  min-height: 1%; /* for IE 7 and MacIE5.5*/
}

/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/***************************************
 共通css
****************************************/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: inherit;
}
a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
button {
  color: inherit;
  cursor: pointer;
}
button:hover {
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

html, body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
body.navOpen {
  overflow: hidden;
}

address {
  font-style: normal;
}

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

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

#wrapper {
  margin: 0 auto;
  position: relative;
  line-break: strict;
}

/*!
utility > utility
------------------------------
*/
.u-mb-1em {
  margin-bottom: 1em;
}

.u-font-purple {
  color: #C480DC;
}

.u-font-blue {
  color: #169CCC;
}

.u-inlineblock {
  display: inline-block;
}

/*!
animation > fadein
------------------------------
*/
/* スクロールCSS */
.fadeIn {
  opacity: 0;
  -webkit-transition-duration: 1000ms;
          transition-duration: 1000ms;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

.fadeIn-up {
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}

.fadeIn-down {
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
}

.fadeIn-left {
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
}

.fadeIn-right {
  -webkit-transform: translate(50px, 0);
          transform: translate(50px, 0);
}

.fadeIn.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*!
animation > text-animation
------------------------------
*/
/* ローディングアニメーション */
#loader-bg {
  background: #169CCC;
  position: fixed;
  z-index: 99999;
  width: 100vw;
  height: 100vh !important;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.spinner {
  margin: auto;
  width: 60px;
  height: 60px;
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  text-align: center;
  -webkit-animation: sk-rotate 2s infinite linear;
  animation: sk-rotate 2s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  border-radius: 100%;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.dot1 {
  background-color: #fff;
}

.dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
  background-color: #fff;
}

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}
@keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 120px;
  height: 90px;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  -webkit-animation: scroll-hint-appear 1.2s linear;
          animation: scroll-hint-appear 1.2s linear;
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s infinite linear;
          animation: splide-loading 1s infinite linear;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__play {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/*!
component > btn
------------------------------
*/
.c-btn-header {
  color: #fff;
  background: #C480DC;
  background: -webkit-gradient(linear, left top, right top, from(#169CCC), to(#C480DC));
  background: linear-gradient(to right, #169CCC 0%, #C480DC 100%);
  padding: 1em 2.5em;
  line-height: 1.2;
  border-radius: 100px;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 1500px) {
  .c-btn-header {
    padding: 1em 3em;
  }
}
@media screen and (max-width: 1199px) {
  .c-btn-header {
    text-align: center;
  }
}
.c-btn-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #169CCC;
  background: -webkit-gradient(linear, left top, right top, from(#C480DC), to(#169CCC));
  background: linear-gradient(to right, #C480DC 0%, #169CCC 100%);
  border-radius: 100px;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media (hover: hover) {
  .c-btn-header:hover::before {
    opacity: 1;
  }
}
.c-btn-header:active::before {
  opacity: 1;
}
.c-btn-header span {
  position: relative;
}
.c-btn-header--sp {
  display: block;
  font-size: 2.2rem;
}

.c-btn-fv {
  color: #fff;
  background: #C480DC;
  background: -webkit-gradient(linear, left top, right top, from(#169CCC), to(#C480DC));
  background: linear-gradient(to right, #169CCC 0%, #C480DC 100%);
  padding: 1.2em;
  line-height: 1.2;
  border-radius: 100px;
  position: relative;
  display: block;
  font-size: clamp(1.7rem, 2.3vw, 2.3rem);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 399px) {
  .c-btn-fv {
    font-size: 1.7rem;
  }
}
.c-btn-fv::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #169CCC;
  background: -webkit-gradient(linear, left top, right top, from(#C480DC), to(#169CCC));
  background: linear-gradient(to right, #C480DC 0%, #169CCC 100%);
  border-radius: 100px;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media (hover: hover) {
  .c-btn-fv:hover::before {
    opacity: 1;
  }
}
.c-btn-fv:active::before {
  opacity: 1;
}
.c-btn-fv span {
  position: relative;
}

.c-btn-contact {
  color: #fff;
  font-size: clamp(1.7rem, 2.3vw, 2.3rem);
  font-weight: 700;
  background: #C480DC;
  background: -webkit-gradient(linear, left top, right top, from(#169CCC), to(#C480DC));
  background: linear-gradient(to right, #169CCC 0%, #C480DC 100%);
  padding: 1em 3em;
  border-radius: 100px;
  display: inline-block;
  position: relative;
}
.c-btn-contact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #169CCC;
  background: -webkit-gradient(linear, left top, right top, from(#C480DC), to(#169CCC));
  background: linear-gradient(to right, #C480DC 0%, #169CCC 100%);
  border-radius: 100px;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media (hover: hover) {
  .c-btn-contact:hover::before {
    opacity: 1;
  }
}
.c-btn-contact:active::before {
  opacity: 1;
}
.c-btn-contact span {
  position: relative;
}

.c-btn-line {
  text-decoration: underline;
}
.c-btn-line:hover {
  text-decoration: none;
}

/*!
component > title
------------------------------
*/
.c-title-about {
  text-align: center;
  line-height: 1.5;
  border-bottom: 2px solid #169CCC;
  margin-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-title-about {
    margin-bottom: 60px;
  }
}
.c-title-about::before {
  content: "";
  width: 88px;
  height: 4px;
  background-color: #fff;
  position: absolute;
  bottom: -3px;
  left: calc(50% - 44px);
}
@media screen and (max-width: 768px) {
  .c-title-about::before {
    width: 44px;
    left: calc(50% - 22px);
  }
}
.c-title-about::after {
  content: "";
  width: 88px;
  height: 2px;
  background-color: #169CCC;
  position: absolute;
  bottom: -2px;
  right: calc(50% - 45px);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .c-title-about::after {
    width: 44px;
    right: calc(50% - 23px);
  }
}
.c-title-about--jp {
  font-size: clamp(2rem, 4.3vw, 4.3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.c-title-about--en {
  color: #169CCC;
  font-family: "Red Hat Text", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(1.4rem, 3.1vw, 3.1rem);
  font-weight: 600;
  letter-spacing: 0;
  padding-bottom: 0.75em;
}

.c-title-strength {
  text-align: center;
  font-size: clamp(2.8rem, 4.9vw, 4.9rem);
  letter-spacing: 0.1em;
  padding-bottom: 1.5em;
}
.c-title-strength--big {
  font-size: 163%;
}
.c-title-strength::after {
  content: "";
  width: 100px;
  height: 1px;
  background-color: #707070;
  position: absolute;
  bottom: 1.25em;
  left: calc(50% - 50px);
}

.c-title-point {
  text-align: center;
  color: #CBB26A;
  font-family: "Red Hat Text", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(3.3rem, 3.7vw, 3.7rem);
  font-weight: 600;
  line-height: 1;
  z-index: 2;
  width: 100%;
  position: relative;
}
.c-title-point--num {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(11rem, 12vw, 12rem);
}
.c-title-point--jp {
  text-align: center;
  color: #CBB26A;
  font-size: clamp(2.1rem, 3.2vw, 3.2rem);
  margin: 1em auto 0;
}

.c-title-point1 {
  text-align: center;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
}
.c-title-point1--big {
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.c-title-utilization {
  color: #169CCC;
  font-size: clamp(1.7rem, 2vw, 2rem);
  font-weight: 700;
  grid-column: 1/4;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1024px) {
  .c-title-utilization {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 399px) {
  .c-title-utilization {
    text-align: center;
  }
}

.c-title-voice {
  text-align: center;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  padding-bottom: 1em;
  margin-bottom: 1em;
  position: relative;
  z-index: 2;
}
.c-title-voice::after {
  content: "";
  width: 3em;
  height: 1px;
  display: block;
  background-color: #fff;
  margin: 1em auto 0;
}

.c-title-pro {
  color: #C480DC;
  font-size: clamp(1.8rem, 2.9vw, 2.9rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1em;
}
@media screen and (max-width: 399px) {
  .c-title-pro {
    margin-bottom: 0.75em;
  }
}
.c-title-pro--inner {
  display: inline-block;
  padding: 0.2em 2em;
  position: relative;
}
@media screen and (max-width: 399px) {
  .c-title-pro--inner {
    padding: 0.2em 1em;
  }
}
.c-title-pro--inner::before {
  content: "";
  width: 2px;
  height: 100%;
  display: block;
  background-color: #C480DC;
  position: absolute;
  left: 20px;
  top: 0;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.c-title-pro--inner::after {
  content: "";
  width: 2px;
  height: 100%;
  display: block;
  background-color: #C480DC;
  position: absolute;
  right: 20px;
  top: 0;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.c-title-ai {
  text-align: center;
  font-size: clamp(2.5rem, 3.8vw, 3.8rem);
  margin: 2em auto 0.75em;
}

.c-title-achievement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.25em;
     -moz-column-gap: 0.25em;
          column-gap: 0.25em;
  font-size: clamp(3rem, 6.1vw, 6.1rem);
  font-weight: 700;
  line-height: 1.1;
  width: 90%;
  margin: auto;
}
.c-title-achievement--bubble {
  text-align: center;
  font-size: clamp(1.7rem, 3.6vw, 3.6rem);
  padding: 0.5em 0.5em 0.75em;
  background: url("../img/top/bg_bubble-01.svg") no-repeat center center;
  background-size: 100% 100%;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-title-achievement--bubble {
    padding: 1.25em 0.5em 1.5em;
  }
}
.c-title-achievement--ai {
  font-size: 150%;
}
.c-title-achievement--big {
  font-size: 200%;
}
@media screen and (max-width: 399px) {
  .c-title-achievement--big {
    font-size: 170%;
  }
}
.c-title-achievement--inner {
  width: auto;
}

.c-title-proprietary {
  text-align: center;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75em;
}
.c-title-proprietary--big {
  font-size: clamp(3.5rem, 6vw, 6rem);
}

.c-title-insinfo {
  background-color: #fff;
  border-radius: 114px;
  max-width: 1100px;
  width: 92%;
  margin: 0 auto 90px;
  text-align: center;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 500;
  padding: 20px 30px 50px;
  position: relative;
  -webkit-filter: drop-shadow(0px 3px 4px rgba(52, 52, 52, 0.1607843137));
          filter: drop-shadow(0px 3px 4px rgba(52, 52, 52, 0.1607843137));
}
@media screen and (max-width: 768px) {
  .c-title-insinfo {
    border-radius: 72px;
    padding: 20px 30px 30px;
    margin-bottom: 50px;
  }
}
.c-title-insinfo::before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 68px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  bottom: -67px;
  left: calc(50% - 40px);
}
@media screen and (max-width: 768px) {
  .c-title-insinfo::before {
    width: 46px;
    height: 40px;
    bottom: -39px;
    left: calc(50% - 23px);
  }
}
.c-title-insinfo--big {
  color: #C480DC;
  font-size: clamp(3.9rem, 6vw, 6rem);
  font-weight: 700;
}
.c-title-insinfo--line {
  font-size: clamp(2.9rem, 4.5vw, 4.5rem);
  font-weight: 700;
  display: inline-block;
  border-bottom: 6px solid #C480DC;
  line-height: 1.4;
}

.c-title-simple {
  width: 90%;
  padding: 0 0 0.8em;
  margin: 0 auto 1em;
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
  line-height: 1.5;
  text-align: center;
  position: relative;
}
.c-title-simple--white {
  color: #fff;
}
.c-title-simple::after {
  content: "";
  width: 100px;
  height: 1px;
  position: absolute;
  left: calc(50% - 50px);
  bottom: 0;
  background-color: currentColor;
}

.c-title-combination1 {
  text-align: center;
  font-size: clamp(2.3rem, 3.3vw, 3.3rem);
  margin-bottom: 0.25em;
  line-height: 1.6;
}

.c-title-combination2 {
  text-align: center;
  font-size: clamp(2.3rem, 3.6vw, 3.6rem);
  color: #CBB26A;
  margin-bottom: 0.8em;
  line-height: 1.6;
}

.c-title-template {
  font-size: clamp(2.2rem, 2.8vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.5em;
}

.c-title-consul {
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  line-height: 1.5;
  margin: 1em auto 0.8em;
}

/*!
layout > container
------------------------------
*/
.l-container-center, .l-container-s, .l-container-m, .l-container-l, .l-container {
  width: 86%;
  margin: auto;
}

.l-container-l {
  max-width: 1200px;
}

.l-container-m {
  max-width: 1000px;
}

.l-container-s {
  max-width: 860px;
}

.l-container-center {
  text-align: center;
}

.l-container-right {
  text-align: right;
  margin: auto 0 auto auto;
}

.l-container-top {
  padding: 110px 0 0;
}
@media screen and (max-width: 1199px) {
  .l-container-top {
    padding: 100px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .l-container-top {
    padding: 87px 0 0;
  }
}
@media screen and (max-width: 399px) {
  .l-container-top {
    padding: 63px 0 0;
  }
}

/*!
layout > header
------------------------------
*/
header {
  position: fixed;
  width: 100%;
  height: auto;
  z-index: 10000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 1.5em;
     -moz-column-gap: 1.5em;
          column-gap: 1.5em;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .header-inner {
    padding: 20px 20px;
  }
}
@media screen and (max-width: 399px) {
  .header-inner {
    padding: 15px 10px 10px;
  }
}

.header-logo {
  width: 250px;
}
@media screen and (max-width: 768px) {
  .header-logo {
    width: 200px;
  }
}
@media screen and (max-width: 399px) {
  .header-logo {
    width: 160px;
  }
}

.header-pc {
  padding-top: 6px;
  font-size: clamp(1.4rem, 1.4vw, 2rem);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
}
@media screen and (min-width: 1500px) {
  .header-pc {
    -webkit-column-gap: 2em;
       -moz-column-gap: 2em;
            column-gap: 2em;
  }
}
@media screen and (max-width: 1199px) {
  .header-pc {
    padding-right: 80px;
  }
}
@media screen and (max-width: 768px) {
  .header-pc {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .header-pc--item {
    display: none;
  }
}
.header-pc--item:hover {
  color: #C480DC;
}

.header-hamburger {
  position: absolute;
  width: 40px;
  height: 52px;
  top: 20px;
  right: 30px;
  z-index: 10000;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: none;
}
.header-hamburger::after {
  content: "MENU";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: -0.75em;
  font-size: 1.4rem;
  font-weight: 700;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 399px) {
  .header-hamburger::after {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1199px) {
  .header-hamburger {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .header-hamburger {
    top: 12px;
    right: 20px;
  }
}
@media screen and (max-width: 399px) {
  .header-hamburger {
    width: 30px;
    height: 36px;
    top: 10px;
    right: 18px;
    display: block;
  }
}
.header-hamburger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 3px;
  background-color: #333;
  width: 100%;
}
@media screen and (max-width: 399px) {
  .header-hamburger span {
    height: 2px;
    width: 100%;
  }
}
.header-hamburger span:nth-of-type(1) {
  top: 15px;
}
@media screen and (max-width: 399px) {
  .header-hamburger span:nth-of-type(1) {
    top: 8px;
  }
}
.header-hamburger span:nth-of-type(2) {
  top: 24px;
}
@media screen and (max-width: 399px) {
  .header-hamburger span:nth-of-type(2) {
    top: 15px;
  }
}
.header-hamburger span:nth-of-type(3) {
  top: 33px;
}
@media screen and (max-width: 399px) {
  .header-hamburger span:nth-of-type(3) {
    top: 22px;
  }
}
.header-hamburger.open::after {
  opacity: 0;
}
.header-hamburger.open span:nth-of-type(1) {
  top: 18px;
  left: 0;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header-hamburger.open span:nth-of-type(1) {
    top: 11px;
  }
}
.header-hamburger.open span:nth-of-type(2) {
  opacity: 0;
}
.header-hamburger.open span:nth-of-type(3) {
  top: 30px;
  left: 0;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header-hamburger.open span:nth-of-type(3) {
    top: 23px;
  }
}
@media (hover: hover) {
  .header-hamburger:hover::after {
    color: #169CCC;
  }
  .header-hamburger:hover span {
    background-color: #169CCC;
  }
}
.header-hamburger:active::after {
  color: #169CCC;
}
.header-hamburger:active span {
  background-color: #169CCC;
}

.header-sp {
  overflow: hidden;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow-y: scroll;
  -webkit-transition: 1s;
  transition: 1s;
}
@media screen and (max-width: 768px) {
  .header-sp {
    bottom: 0;
  }
}
.header-sp::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #333;
  overflow: hidden;
  right: 0;
  top: 0;
  opacity: 0.6;
}
.header-sp.open {
  display: block;
  overflow: auto;
  right: 0;
  width: 100%;
}
.header-sp--list {
  position: relative;
  z-index: 1;
  width: 86%;
  max-width: 600px;
  height: 100%;
  margin: 0 0 0 auto;
  padding: 120px 8% 0;
  line-height: 1.2;
}
@media screen and (max-width: 399px) {
  .header-sp--list {
    padding: 70px 8% 0;
  }
}
.header-sp--list::before {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(160deg, #D0F1FD 0%, #EDFAFF 0%, #FCF2FF 100%) 0% 0% no-repeat padding-box;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.header-sp--list li {
  margin-bottom: 2em;
  font-size: 1.4rem;
  font-size: 2rem;
  font-weight: 700;
}
.header-sp--list li:last-child {
  margin-top: 3em;
}
@media (hover: hover) {
  .header-sp--item:hover {
    color: #169CCC;
  }
}
.header-sp--item:active {
  color: #169CCC;
}

/*!
layout > footer
------------------------------
*/
footer {
  background-color: rgba(185, 185, 185, 0.1215686275);
  width: 100%;
  margin: 0 auto;
  padding: 35px 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 25px 0;
  }
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1420px;
  width: 92%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    display: block;
    text-align: center;
  }
}

.footer-logo {
  max-width: 250px;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .footer-logo {
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .footer-copy {
    margin-top: 0.1em;
  }
}

/*!
page > top
------------------------------
*/
.top-wrap1 {
  position: relative;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .top-wrap1 {
    padding-bottom: 50px;
  }
}
.top-wrap1::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(rgba(6, 96, 202, 0)), to(rgba(6, 96, 202, 0.0431372549))) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, rgba(6, 96, 202, 0) 0%, rgba(6, 96, 202, 0.0431372549) 100%) 0% 0% no-repeat padding-box;
}

.top-fv {
  width: 100%;
  position: relative;
}
.top-fv--inner {
  max-width: 1240px;
  width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .top-fv--inner {
    width: 90%;
    padding-top: 20px;
  }
}
.top-fv::before {
  content: "";
  width: 48.1%;
  height: 100%;
  background: url("../img/top/img_fv-02.png") no-repeat left bottom;
  background-size: contain;
  position: absolute;
  left: -12%;
  bottom: -30%;
  z-index: -1;
}
@media screen and (min-width: 1500px) {
  .top-fv::before {
    left: -200px;
  }
}
@media screen and (max-width: 399px) {
  .top-fv::before {
    display: none;
  }
}
.top-fv::after {
  content: "";
  width: 43%;
  height: 100%;
  background: url("../img/top/bg_fv-01.png") no-repeat right bottom;
  background-size: contain;
  position: absolute;
  right: -7.8%;
  bottom: -40%;
  z-index: -1;
}
@media screen and (min-width: 1500px) {
  .top-fv::after {
    right: -140px;
  }
}
@media screen and (max-width: 399px) {
  .top-fv::after {
    left: -20%;
    right: auto;
    bottom: -100px;
    width: 100%;
  }
}

.top-fv-text {
  max-width: 650px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .top-fv-text {
    width: 100%;
    max-width: none;
  }
}
.top-fv-text--a {
  font-size: clamp(1.8rem, 3.1vw, 3.1rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
}
.top-fv-text--a--text {
  border-radius: 100px;
  display: inline-block;
  background-color: rgba(248, 227, 255, 0.48);
  padding: 0.5em 1em;
}
.top-fv-text--a--cross {
  width: 1.4em;
  display: inline-block;
}
@media screen and (max-width: 399px) {
  .top-fv-text--a {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.top-fv-text--b, .top-fv-text--c, .top-fv-text--logo {
  padding-left: 20px;
}
@media screen and (max-width: 399px) {
  .top-fv-text--b, .top-fv-text--c, .top-fv-text--logo {
    padding-left: 10px;
  }
}
.top-fv-text--b {
  font-size: clamp(3.4rem, 6.5vw, 6.8rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-shadow: 0px 0px 6px rgb(255, 255, 255);
}
.top-fv-text--c {
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 700;
  margin: 0.4em 0 0.75em;
  text-shadow: 0px 0px 6px rgb(255, 255, 255);
  letter-spacing: 0.05em;
  line-height: 2;
}
.top-fv-text--f168 {
  font-size: 168%;
  letter-spacing: 0;
}
.top-fv-text--f128 {
  font-size: 128%;
}
.top-fv-text--f114 {
  font-size: 114%;
}
.top-fv-text--f107 {
  font-size: 107%;
}
.top-fv-text--f68 {
  font-size: 68%;
}
.top-fv-text--f60 {
  font-size: 60%;
}
.top-fv-text--logo {
  width: 490px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 7%;
     -moz-column-gap: 7%;
          column-gap: 7%;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .top-fv-text--logo {
    display: block;
    width: 74%;
  }
}
@media screen and (max-width: 399px) {
  .top-fv-text--logo {
    margin-bottom: 25px;
  }
}
.top-fv-text--logo--item1 {
  width: 62.4%;
}
@media screen and (max-width: 768px) {
  .top-fv-text--logo--item1 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 399px) {
  .top-fv-text--logo--item1 {
    margin-bottom: 15px;
  }
}
.top-fv-text--logo--item2 {
  width: 31%;
}
.top-fv-text--link {
  max-width: 552px;
}
.top-fv-text--blue {
  color: #169CCC;
  text-shadow: 5px 5px 0px rgba(22, 156, 204, 0.2);
}

.top-fv-image {
  max-width: 846px;
  width: 44.1%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1499px) {
  .top-fv-image {
    width: 48%;
  }
}
@media screen and (max-width: 1024px) {
  .top-fv-image {
    left: auto;
    right: -3%;
  }
}
@media screen and (max-width: 768px) {
  .top-fv-image {
    bottom: 70px;
    top: auto;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    right: -18%;
    width: 76%;
  }
}
@media screen and (max-width: 399px) {
  .top-fv-image {
    width: 88%;
    bottom: 10px;
    right: -20%;
  }
}

.top-about {
  max-width: 1410px;
  width: 92%;
  padding: 60px 10% 135px;
  margin: 60px auto 136px;
  background-color: #fff;
  border-radius: 27px;
  position: relative;
}
@media screen and (max-width: 1499px) {
  .top-about {
    padding: 60px 7% 135px;
  }
}
@media screen and (max-width: 768px) {
  .top-about {
    padding: 60px 7% 0;
  }
}
@media screen and (max-width: 399px) {
  .top-about {
    margin: 25px auto 75px;
    padding: 30px 7% 0;
  }
}
.top-about::after {
  content: "";
  display: inline-block;
  width: 180px;
  height: 34px;
  background: #169CCC;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  left: calc(50% - 90px);
  bottom: -90px;
}
@media screen and (max-width: 399px) {
  .top-about::after {
    width: 132px;
    height: 25px;
    left: calc(50% - 66px);
    bottom: -55px;
  }
}

.top-about-inner {
  padding-left: 20%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .top-about-inner {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .top-about-inner {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 399px) {
  .top-about-inner {
    padding-bottom: 80px;
  }
}
.top-about-inner::after {
  content: "";
  width: 164px;
  height: 284px;
  background: url("../img/top/img_about-01.svg") no-repeat left bottom;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: -30px;
}
@media screen and (max-width: 1199px) {
  .top-about-inner::after {
    left: -10%;
    width: 15%;
  }
}
@media screen and (max-width: 1024px) {
  .top-about-inner::after {
    bottom: -80px;
  }
}
@media screen and (max-width: 768px) {
  .top-about-inner::after {
    bottom: 0;
    left: -2%;
    width: 28%;
    height: 284px;
    background: url("../img/top/img_about-02.png") no-repeat left bottom;
    background-size: contain;
  }
}
.top-about-inner::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: url("../img/top/bg_about-pc.png") no-repeat center center;
  background-size: contain;
  right: -20%;
  bottom: -10%;
}
@media screen and (max-width: 1199px) {
  .top-about-inner::before {
    right: -10%;
  }
}
@media screen and (max-width: 768px) {
  .top-about-inner::before {
    background: url("../img/top/bg_about-sp.png") no-repeat center center;
    background-size: contain;
    width: 120%;
    height: 100%;
    bottom: 0;
  }
}

.top-about-block {
  background-color: #fff;
  border: 1px solid #169CCC;
  border-radius: 300px;
  text-align: center;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  line-height: 1.5;
  padding: 1em;
}
.top-about-block dd {
  font-size: clamp(1.9rem, 2.9vw, 2.9rem);
}

.top-solution {
  color: #fff;
  max-width: 1410px;
  width: 92%;
  padding: 10px 20px;
  margin: 0 auto;
  border-radius: 27px;
  background-image: url("../img/top/img_solution-pc.jpg");
  background-position: center center;
  background-size: cover;
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top-solution {
    background-image: url("../img/top/img_solution-sp.jpg");
  }
}
.top-solution--text1 {
  font-size: clamp(2.5rem, 3.8vw, 3.8rem);
  font-weight: 700;
  padding-top: 2em;
  margin-bottom: 0.4em;
}
.top-solution--text2 {
  font-size: clamp(2.7rem, 3.9vw, 3.9rem);
  font-weight: 700;
  padding-bottom: 2em;
}
.top-solution--text2--big {
  font-size: 140%;
}

.top-strength {
  position: relative;
  padding-bottom: 80px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-strength {
    padding-bottom: 40px;
  }
}
.top-strength::before {
  content: "";
  background: url("../img/top/bg_strength-pc.png") no-repeat center center #fff;
  background-size: cover;
  border-radius: 150px 150px 0 0;
  width: 100%;
  height: calc(100% + 200px);
  position: absolute;
  left: 0;
  top: -200px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-strength::before {
    border-radius: 80px 80px 0 0;
    background-image: url("../img/top/bg_strength-sp.png");
  }
}
.top-strength--inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1280px;
  width: 92%;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #CAD5E2;
  border-radius: 30px;
}
@media screen and (max-width: 1024px) {
  .top-strength--inner {
    display: block;
  }
}
.top-strength--block {
  border-right: 1px solid #CAD5E2;
  padding: 30px 10% 40px;
}
.top-strength--block:last-child {
  border-right: none;
}
@media screen and (max-width: 1024px) {
  .top-strength--block {
    border-right: none;
    border-bottom: 1px solid #CAD5E2;
  }
  .top-strength--block:last-child {
    border-bottom: none;
  }
}
.top-strength--num {
  text-align: center;
  color: #CBB26A;
  font-size: clamp(9.5rem, 12vw, 12rem);
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  margin-bottom: 0.25em;
}
.top-strength--image {
  width: 175px;
  height: 203px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-strength--image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: 100%;
}
.top-strength--title {
  color: #CBB26A;
  text-align: center;
  font-weight: 700;
  padding: 0.1em 45px;
  margin: 0.75em auto;
  font-size: clamp(2.5rem, 2.5vw, 3.3rem);
  line-height: 1.5;
  position: relative;
  min-height: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1199px) {
  .top-strength--title {
    font-size: 2.4rem;
  }
}
.top-strength--title::before {
  content: "";
  width: 44px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../img/top/bg_strength-left.svg") no-repeat left center;
  background-size: contain;
}
.top-strength--title::after {
  content: "";
  width: 44px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: url("../img/top/bg_strength-right.svg") no-repeat right center;
  background-size: contain;
}
.top-strength--text {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 400;
  padding: 0 2%;
}
@media screen and (max-width: 1199px) {
  .top-strength--text {
    font-size: 1.6rem;
  }
}

.top-point {
  position: relative;
  padding: 0 0 70px;
}
@media screen and (max-width: 768px) {
  .top-point {
    padding: 0 0 30px;
  }
}
.top-point::before {
  content: "";
  width: 100%;
  height: calc(100% - 60px);
  background: transparent -webkit-gradient(linear, left bottom, left top, from(rgba(6, 96, 202, 0)), to(rgba(6, 96, 202, 0.0431372549))) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(0deg, rgba(6, 96, 202, 0) 0%, rgba(6, 96, 202, 0.0431372549) 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  top: 60px;
  left: 0;
}
.top-point--pt1::after {
  content: "";
  width: 154px;
  height: 934px;
  background: url("../img/top/bg_knowhow-01.svg") no-repeat right top;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 300px;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 859px) {
  .top-point--pt1::after {
    top: 100px;
    width: 70px;
  }
}
.top-point--pt2 {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .top-point--pt2 {
    padding: 0;
  }
}
.top-point--pt2::after {
  content: "";
  width: 154px;
  height: 934px;
  background: url("../img/top/bg_text-ai.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 250px;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 859px) {
  .top-point--pt2::after {
    top: 100px;
    width: 70px;
  }
}
.top-point--pt3 {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .top-point--pt3 {
    padding: 0;
  }
}
.top-point--pt3::before {
  content: "";
  width: 100%;
  height: calc(100% - 160px);
  background-color: #F6F9FD;
  position: absolute;
  top: 60px;
  left: 0;
}
.top-point--pt3::after {
  content: "";
  width: 154px;
  height: 934px;
  background: url("../img/top/bg_text-creative.svg") no-repeat right top;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 150px;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 859px) {
  .top-point--pt3::after {
    width: 70px;
    top: 120px;
  }
}
.top-point--pt3--inner {
  position: relative;
}
.top-point--pt3--inner::before {
  content: "";
  width: 100%;
  height: calc(100% - 160px);
  background-color: #E2EBFF;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.top-point--pt3--inner::after {
  content: "";
  width: 100%;
  height: 50px;
  background-color: #F6F9FD;
  position: absolute;
  bottom: 50px;
  left: 0;
  display: block;
  border-radius: 0 0 50% 50%;
}
.top-point--inner {
  width: 90%;
  margin: 0 auto;
}
.top-point--text {
  text-align: center;
  line-height: 2.1;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  margin: 1em auto 2em;
  letter-spacing: 0.05em;
}

.top-point1-block {
  max-width: 1280px;
  width: 92%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #fff;
  border: 1px solid #CAD5E2;
  border-radius: 30px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 859px) {
  .top-point1-block {
    display: block;
  }
}

.top-point1-item {
  border-right: 1px solid #CAD5E2;
  padding: 23px 25px 25px;
}
@media screen and (max-width: 859px) {
  .top-point1-item {
    border-right: none;
    border-bottom: 1px solid #CAD5E2;
    padding: 23px 22px 35px;
  }
}
.top-point1-item:first-child {
  border-bottom: 1px solid #CAD5E2;
}
.top-point1-item:nth-child(2) {
  grid-column: 2/4;
  border-right: none;
  border-bottom: 1px solid #CAD5E2;
}
.top-point1-item:last-child {
  border-right: none;
}
@media screen and (max-width: 859px) {
  .top-point1-item:last-child {
    border-bottom: none;
  }
}
.top-point1-item--title {
  display: grid;
  grid-template-columns: 75px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.8em;
     -moz-column-gap: 0.8em;
          column-gap: 0.8em;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .top-point1-item--title {
    grid-template-columns: 64px 1fr;
  }
}
.top-point1-item--text {
  font-size: 1.6rem;
  margin: 1em auto;
  padding: 0 2%;
}
@media screen and (max-width: 859px) {
  .top-point1-item--text {
    margin: 1em auto 0;
  }
}

.top-point1-utilization {
  background-color: #F8F8F8;
  border-radius: 21px;
  margin-top: 2em;
  padding: 15px 30px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 22px;
     -moz-column-gap: 22px;
          column-gap: 22px;
}
@media screen and (max-width: 1024px) {
  .top-point1-utilization {
    padding: 15px 20px;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .top-point1-utilization {
    display: block;
  }
}
.top-point1-utilization--item {
  padding-right: 22px;
  border-right: 1px solid #CAD5E2;
}
.top-point1-utilization--item:last-child {
  border-right: none;
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .top-point1-utilization--item:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
}
@media screen and (max-width: 1024px) {
  .top-point1-utilization--item {
    padding-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .top-point1-utilization--item {
    padding-right: 1%;
    padding-left: 1%;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #CAD5E2;
    border-right: none;
  }
}
.top-point1-utilization dt {
  height: 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin: 0 auto 1em;
}
@media screen and (max-width: 768px) {
  .top-point1-utilization dt {
    display: block;
    height: auto;
  }
}
.top-point1-utilization--indeed {
  max-width: 126px;
}
.top-point1-utilization--kyujinbox {
  max-width: 53px;
}
.top-point1-utilization--stanby {
  max-width: 170px;
}
.top-point1-utilization dd {
  font-size: 1.3rem;
  padding-left: 1em;
  margin-top: 0.2em;
}
.top-point1-utilization dd::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: -1em;
  margin-right: 0;
  text-align: center;
}
.top-point1-utilization dd::before {
  content: "・";
}

.top-voice {
  max-width: 1400px;
  width: 92%;
  padding: 45px 0;
  margin: 150px auto 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-voice {
    margin: 50px auto 50px;
    padding: 40px 0;
  }
}
.top-voice::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #CAD5E2;
  border: 1px solid #707070;
  opacity: 0.13;
  border-radius: 27px;
  z-index: -1;
}
.top-voice::after {
  content: "";
  width: 380px;
  height: 380px;
  background: url("../img/top/bg_voice-01.png") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: -160px;
}
@media screen and (max-width: 768px) {
  .top-voice::after {
    top: -180px;
  }
}
.top-voice--inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 3.4%;
     -moz-column-gap: 3.4%;
          column-gap: 3.4%;
  max-width: 1280px;
  width: 92%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .top-voice--inner {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
.top-voice--item {
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.0117647059);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.0117647059);
  border-radius: 30px;
  padding: 30px;
  display: grid;
  grid-template-columns: 104px 1fr;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
}
@media screen and (max-width: 1199px) {
  .top-voice--item {
    grid-template-columns: 30% 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .top-voice--item {
    grid-template-columns: 104px 1fr;
  }
}
@media screen and (max-width: 399px) {
  .top-voice--item {
    grid-template-columns: 82px 1fr;
  }
}
.top-voice--image {
  border-radius: 50%;
}
.top-voice--name {
  grid-column: 2/3;
  font-size: clamp(1.7rem, 2vw, 2rem);
  font-weight: 700;
  align-self: center;
}
.top-voice--title {
  grid-column: 1/3;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.75em;
  margin-bottom: 0.25em;
}
.top-voice--text {
  grid-column: 1/3;
  font-size: 1.5rem;
  font-weight: 400;
}

.top-pro {
  max-width: 1400px;
  width: 92%;
  padding: 35px;
  margin: auto;
  background-color: #FFFFF7;
  border-radius: 21px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-pro {
    padding: 30px 5%;
  }
}
.top-pro--text {
  font-size: clamp(1.6rem, 2vw, 2rem);
  margin: 0 auto 1.5em;
}
@media screen and (max-width: 768px) {
  .top-pro--text {
    text-align: left;
  }
}

.top-point2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  max-width: 1240px;
  width: 92%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-point2 {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }
}
.top-point2--item {
  background-color: #fff;
  border: 1px solid #CAD5E2;
  border-radius: 30px;
  padding: 35px 6%;
  position: relative;
  z-index: 2;
}
.top-point2--image {
  margin: auto;
  text-align: center;
  max-width: 207px;
}
.top-point2--title {
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  margin: 0.5em auto;
}
.top-point2--text {
  font-size: 1.6rem;
  font-weight: 400;
}

.top-point2-wrap {
  position: relative;
  padding-bottom: 50px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-point2-wrap {
    padding-bottom: 40px;
  }
}
.top-point2-wrap::before {
  content: "";
  width: 100%;
  height: 20%;
  background-color: #169CCC;
  opacity: 0.22;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .top-point2-wrap::before {
    height: 75%;
  }
}
.top-point2-wrap::after {
  content: "";
  width: 100%;
  height: 160px;
  background-color: #169CCC;
  opacity: 0.22;
  border-radius: 50% 50% 0 0;
  position: absolute;
  bottom: 20%;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .top-point2-wrap::after {
    bottom: 75%;
    height: 80px;
  }
}

.top-achievement {
  position: relative;
  padding: 0 0 75px;
}
@media screen and (max-width: 768px) {
  .top-achievement {
    padding: 0 0 70px;
  }
}
@media screen and (max-width: 399px) {
  .top-achievement {
    padding: 0 0 40px;
  }
}
.top-achievement::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0.22;
  background: -webkit-gradient(linear, left top, left bottom, from(#169CCC), to(#C480DC));
  background: linear-gradient(#169CCC 0%, #C480DC 100%);
  z-index: -1;
}

.top-achievement-text {
  width: 90%;
  margin: 1.5em auto 2em;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  line-height: 2.1;
  text-align: center;
}

.top-glaph {
  background-color: #fff;
  width: 92%;
  max-width: 1060px;
  padding: 80px 5% 60px;
  margin: 0 auto 200px;
  border-radius: 30px;
  border: 1px solid #CAD5E2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
  row-gap: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-glaph {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 50px 7% 40px;
    margin: 0 auto 40px;
    row-gap: 40px;
  }
}
.top-glaph::after {
  content: "";
  width: 75%;
  height: 80px;
  position: absolute;
  background: url("../img/top/ico_arrow-down-01.svg") no-repeat center center;
  background-size: contain;
  bottom: -150px;
  left: 12.5%;
}
@media screen and (max-width: 768px) {
  .top-glaph::after {
    display: none;
  }
}
.top-glaph--item {
  width: 47.5%;
  max-width: 343px;
  padding: 50px 6% 20px;
  background-color: #FCFCFC;
  border: 5px solid #F4F4F4;
  border-radius: 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-glaph--item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.top-glaph--item dt {
  position: absolute;
  top: -1em;
  left: 10%;
  font-size: clamp(2.6rem, 2.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  border: 1px solid #333;
  text-align: center;
  display: block;
  background-color: #fff;
  padding: 0.5em;
  border-radius: 100px;
  width: 80%;
}

.top-proprietary {
  max-width: 1280px;
  width: 92%;
  margin: 0 auto;
  position: relative;
}
.top-proprietary::before {
  content: "";
  width: 70%;
  height: 100%;
  position: absolute;
  left: 15%;
  top: 12%;
  background: url("../img/top/bg_proprietary-01.png") no-repeat center top;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 1199px) {
  .top-proprietary::before {
    width: 120%;
    height: 70%;
    top: 8%;
    left: -10%;
    background-position: center center;
    background-size: cover;
  }
}
.top-proprietary--lead {
  margin: 1.5em auto 3em;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  line-height: 2.1;
  text-align: center;
}
.top-proprietary--inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
  position: relative;
  padding-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .top-proprietary--inner {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 399px) {
  .top-proprietary--inner {
    row-gap: 20px;
    padding-bottom: 90px;
  }
}
.top-proprietary--inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 220px);
  width: 440px;
  height: 84px;
  background: url("../img/top/ico_arrow-down-02.svg") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .top-proprietary--inner::after {
    width: 70%;
    left: 15%;
  }
}
.top-proprietary--block {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px;
  row-gap: 20px;
  padding: 35px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 3px solid #fff;
  border-radius: 10px;
}
@media screen and (max-width: 859px) {
  .top-proprietary--block {
    grid-template-columns: 112px 1fr;
  }
}
@media screen and (max-width: 399px) {
  .top-proprietary--block {
    grid-template-columns: 84px 1fr;
    grid-template-rows: 84px 1fr;
    padding: 20px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 12px;
  }
}
.top-proprietary--image {
  width: 130px;
  height: 130px;
  grid-row: 1/3;
  grid-column: 1/2;
}
@media screen and (max-width: 859px) {
  .top-proprietary--image {
    width: 112px;
    height: 112px;
  }
}
@media screen and (max-width: 399px) {
  .top-proprietary--image {
    width: 84px;
    height: 84px;
  }
}
.top-proprietary--title {
  font-size: clamp(2.1rem, 2.3vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 399px) {
  .top-proprietary--title {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.top-proprietary--text {
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  font-weight: 400;
  line-height: 2;
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 399px) {
  .top-proprietary--text {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}

.top-proprietary-movie {
  max-width: 1280px;
  margin: 0 auto 70px;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.top-proprietary-movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .top-proprietary-movie {
    margin: 0 auto 30px;
  }
}

.top-insinfo {
  position: relative;
}
.top-insinfo::before {
  content: "";
  width: 100%;
  height: 110px;
  background-color: #C480DC;
  opacity: 0.22;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.top-insinfo::after {
  content: "";
  width: 100%;
  height: calc(100% - 200px);
  position: absolute;
  left: 0;
  top: 110px;
  background: url("../img/top/bg_insinfo-01.jpg");
  background-size: cover;
  z-index: -1;
}

.top-insinfo-inner {
  max-width: 560px;
  width: 92%;
  margin: 0 auto 40px;
}

.top-insinfo-graph {
  background-color: #fff;
  border-radius: 19px;
  padding: 35px 14%;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.top-insinfo-graph figure {
  margin-top: 1em;
}

.top-insinfo-quote {
  color: #fff;
  font-size: clamp(1rem, 1.6vw, 1.6rem);
  font-weight: 400;
  margin-top: 1em;
}

.top-example {
  max-width: 1230px;
  width: 92%;
  margin: 90px auto 90px;
  display: grid;
  grid-template-columns: 1fr 2fr 3.5fr;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .top-example {
    margin: 40px auto 50px;
  }
}
@media screen and (max-width: 399px) {
  .top-example {
    grid-template-columns: 3em 2fr 3.5fr;
  }
}
.top-example .top-example-head {
  grid-row: 1/2;
  border: 1px solid #8DC0D3;
  border-bottom: none;
  padding: 1em;
  position: relative;
  font-weight: 700;
}
@media screen and (min-width: 1500px) {
  .top-example .top-example-head {
    padding: 1em 30px;
  }
}
.top-example .top-example-head--before {
  grid-column: 2/3;
  border-radius: 20px 20px 0px 0px;
  border-right: none;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
}
.top-example .top-example-head--after {
  grid-column: 3/4;
  border-radius: 20px 20px 0px 0px;
  background: transparent -webkit-gradient(linear, right top, left top, from(#F8E3FF), to(#D0F1FD)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(270deg, #F8E3FF 0%, #D0F1FD 100%) 0% 0% no-repeat padding-box;
  padding-left: 9em;
}
@media screen and (max-width: 768px) {
  .top-example .top-example-head--after {
    padding: 45px 1em 1em;
  }
}
@media screen and (max-width: 399px) {
  .top-example .top-example-head--after {
    padding-left: 20px;
  }
}
.top-example .top-example-head--deco {
  color: #C480DC;
  position: absolute;
  left: 1em;
  top: -1em;
  border-radius: 50%;
  background-color: #fff;
  padding: 0.8em 0.8em 0.9em;
  font-size: clamp(1.3rem, 2.9vw, 2.9rem);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .top-example .top-example-head--deco {
    top: -0.1em;
    padding: 1.2em 0.8em;
  }
}
.top-example .top-example-head--deco::before {
  content: "";
  width: 78px;
  height: 57px;
  background: url("../img/top/bg_insinfo-02.svg") no-repeat right top;
  background-size: contain;
  display: block;
  position: absolute;
  right: -35px;
  top: -40px;
}
@media screen and (max-width: 768px) {
  .top-example .top-example-head--deco::before {
    width: 39px;
    height: 28px;
    top: -20px;
    right: -18px;
  }
}
.top-example .top-example-head--big {
  font-size: clamp(1.3rem, 2.5vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .top-example .top-example-head--big {
    padding-top: 0.25em;
  }
}
.top-example .top-example-head--small {
  font-size: clamp(1rem, 1.9vw, 1.9rem);
}
.top-example .top-example-type {
  grid-column: 1/2;
  border: 1px solid #8DC0D3;
  border-right: none;
  padding: 1em;
  font-weight: 700;
  background-color: #fff;
}
.top-example .top-example-type:first-of-type {
  grid-row: 2/3;
  border-radius: 20px 0px 0px 0px;
  border-bottom: none;
}
.top-example .top-example-type:nth-of-type(2) {
  grid-row: 3/4;
  border-radius: 0px 0px 0px 20px;
}
.top-example .top-example-detail1 {
  border: 1px solid #8DC0D3;
  border-bottom: none;
  padding: 1em;
}
.top-example .top-example-detail1--before {
  grid-column: 2/3;
  border-right: none;
  background-color: #fff;
}
@media screen and (min-width: 1500px) {
  .top-example .top-example-detail1--before {
    padding: 1em 30px;
  }
}
.top-example .top-example-detail1--after {
  grid-column: 3/4;
  background: transparent -webkit-gradient(linear, right top, left top, from(#F8E3FF), to(#D0F1FD)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(270deg, #F8E3FF 0%, #D0F1FD 100%) 0% 0% no-repeat padding-box;
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .top-example .top-example-detail1--after {
    padding-left: 30px;
  }
}
@media screen and (max-width: 399px) {
  .top-example .top-example-detail1--after {
    padding-left: 20px;
  }
}
.top-example .top-example-detail2 {
  border: 1px solid #8DC0D3;
  padding: 1em;
}
.top-example .top-example-detail2--before {
  grid-column: 2/3;
  border-right: none;
  background-color: #fff;
}
@media screen and (min-width: 1500px) {
  .top-example .top-example-detail2--before {
    padding: 1em 30px;
  }
}
.top-example .top-example-detail2--after {
  grid-column: 3/4;
  border-radius: 0px 0px 20px 0;
  background: transparent -webkit-gradient(linear, right top, left top, from(#F8E3FF), to(#D0F1FD)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(270deg, #F8E3FF 0%, #D0F1FD 100%) 0% 0% no-repeat padding-box;
  position: relative;
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .top-example .top-example-detail2--after {
    padding-left: 30px;
  }
}
@media screen and (max-width: 399px) {
  .top-example .top-example-detail2--after {
    padding-left: 20px;
  }
}
.top-example .top-example-detail2--after::after {
  content: "";
  width: 33px;
  height: 155px;
  background: url("../img/top/ico_arrow-insinfo.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: -16px;
  top: -70px;
}
@media screen and (max-width: 1024px) {
  .top-example .top-example-detail2--after::after {
    width: 20px;
    left: -5px;
  }
}

.top-step {
  margin: 0 auto 80px;
}
@media screen and (max-width: 1024px) {
  .top-step {
    margin: 0 auto 65px;
  }
}
@media screen and (max-width: 1024px) {
  .top-step {
    margin: 0 auto 30px;
  }
}
.top-step--inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 26px;
     -moz-column-gap: 26px;
          column-gap: 26px;
  margin: 77px auto 0;
  max-width: 1230px;
  width: 92%;
}
@media screen and (max-width: 1024px) {
  .top-step--inner {
    display: block;
  }
}
.top-step--block {
  border: 1px solid #B9B9B9;
  border-radius: 19px;
  padding: 60px 10% 50px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-step--block {
    margin-top: 55px;
    padding: 45px 10% 35px;
  }
}
.top-step--block::after {
  content: "";
  width: 34px;
  height: 74px;
  background: url("../img/top/ico_arrow-right-01.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  right: -22px;
  bottom: calc(50% - 37px);
}
@media screen and (max-width: 1024px) {
  .top-step--block::after {
    background: url("../img/top/ico_arrow-down-02.svg") no-repeat center bottom;
    background-size: contain;
    bottom: -20px;
    width: 46px;
    height: 39px;
    right: calc(50% - 23px);
  }
}
.top-step--block:first-child {
  margin-top: 95px;
}
@media screen and (max-width: 1024px) {
  .top-step--block:first-child {
    margin-top: 0;
  }
}
.top-step--block:nth-child(2) {
  margin-top: 44px;
}
@media screen and (max-width: 1024px) {
  .top-step--block:nth-child(2) {
    margin-top: 55px;
  }
}
.top-step--block:last-child::after {
  display: none;
}
.top-step--num {
  color: #169CCC;
  text-align: center;
  position: absolute;
  left: 8%;
  top: -33px;
  width: 84%;
  margin: 0 auto;
  background-color: #D0F1FD;
  border-radius: 100px;
  font-size: clamp(2.3rem, 2.9vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  padding: 0.25em 0 0.4em;
}
.top-step--num span {
  font-size: clamp(3.7rem, 4.5vw, 4.5rem);
}
.top-step--image {
  width: 40%;
  max-width: 143px;
  margin: 0 auto;
}
.top-step--title {
  margin: 0.75em auto 0.8em;
  text-align: center;
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.5;
}
.top-step--text {
  line-height: 1.8;
  font-weight: 400;
}

.top-combination {
  padding: 40px 0;
  margin: 80px auto 0;
  max-width: 1400px;
  width: 92%;
  background-color: #EFFAFE;
  border-radius: 30px;
  position: relative;
}
@media screen and (max-width: 859px) {
  .top-combination {
    margin: 60px auto 0;
  }
}
.top-combination::before {
  content: "";
  display: inline-block;
  width: 348px;
  height: 106px;
  background: #EFFAFE;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  position: absolute;
  top: -105px;
  left: calc(50% - 174px);
}
@media screen and (max-width: 859px) {
  .top-combination::before {
    width: 184px;
    height: 43px;
    top: -42px;
    left: calc(50% - 92px);
  }
}
.top-combination--inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
  width: 92%;
  max-width: 1230px;
  margin: 0 auto;
}
@media screen and (max-width: 859px) {
  .top-combination--inner {
    grid-template-columns: 1fr;
    row-gap: 44px;
  }
}
.top-combination--block {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 40px;
  position: relative;
}
@media screen and (max-width: 859px) {
  .top-combination--block {
    padding: 40px 5%;
  }
}
.top-combination--block:first-child {
  padding-right: 60px;
}
@media screen and (max-width: 859px) {
  .top-combination--block:first-child {
    padding-right: 5%;
  }
}
.top-combination--block:first-child::after {
  content: "";
  background: url("../img/top/ico_cross.svg") no-repeat center center;
  width: 114px;
  height: 114px;
  right: -66px;
  bottom: calc(50% - 57px);
  display: block;
  position: absolute;
  z-index: 3;
}
@media screen and (max-width: 859px) {
  .top-combination--block:first-child::after {
    right: calc(50% - 57px);
    bottom: -81px;
  }
}
.top-combination--block:nth-child(2) {
  padding-left: 90px;
}
@media screen and (max-width: 859px) {
  .top-combination--block:nth-child(2) {
    padding-left: 5%;
  }
}
.top-combination--block dt {
  font-size: clamp(1.8rem, 2.3vw, 2.3rem);
  font-weight: 700;
  padding-left: 1.25em;
}
.top-combination--block dt::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: -1.25em;
  margin-right: 0.25em;
  text-align: center;
}
.top-combination--block dt::before {
  content: "●";
  color: #CBB26A;
}
.top-combination--block dd {
  display: grid;
  grid-template-columns: 61px 1fr;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  margin-top: 1em;
}

.top-creative-image {
  display: grid;
  grid-template-columns: 38.7% 56.1%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 auto;
  width: 86%;
  max-width: 1240px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 859px) {
  .top-creative-image {
    display: block;
  }
}
.top-creative-image--before, .top-creative-image--after {
  position: relative;
}
.top-creative-image--before {
  position: relative;
}
@media screen and (max-width: 859px) {
  .top-creative-image--before {
    width: 90%;
    margin: 0 auto 40px;
  }
}
.top-creative-image--before figcaption {
  background-color: #707070;
}
.top-creative-image--before::after {
  content: "";
  width: 383px;
  height: 139px;
  background: url("../img/top/ico_arrow-creative.png") no-repeat center center;
  background-size: contain;
  position: absolute;
  right: -190px;
  bottom: -24px;
  z-index: 2;
}
@media screen and (max-width: 859px) {
  .top-creative-image--before::after {
    background: url("../img/top/ico_arrow-creative-sp.png") no-repeat center bottom;
    background-size: contain;
    right: auto;
    left: -10%;
    bottom: -40px;
    width: 100px;
    height: 120px;
  }
}
.top-creative-image--after figcaption {
  background-color: #169CCC;
}
.top-creative-image figcaption {
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 700;
  padding: 0.5em 1.2em;
  line-height: 1.2;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 0 20px 0;
}

.top-template {
  background-color: #E2EBFF;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .top-template {
    padding: 45px 0;
  }
}
.top-template--inner {
  width: 86%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46.3% 1fr;
  -webkit-column-gap: 4%;
     -moz-column-gap: 4%;
          column-gap: 4%;
}
@media screen and (max-width: 768px) {
  .top-template--inner {
    display: block;
  }
}
.top-template--text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .top-template--text {
    font-size: 1.5rem;
  }
}
.top-template--image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.top-template--list {
  position: relative;
  margin-top: 2em;
  padding: 1.5em 6%;
}
@media screen and (max-width: 768px) {
  .top-template--list {
    margin-bottom: 2em;
  }
}
.top-template--list::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.43;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 20px;
}
.top-template--list li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.1em;
}
.top-template--list li::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: -1em;
  margin-right: 0;
  text-align: center;
}
.top-template--list li::before {
  content: "-";
}

.top-service {
  padding: 75px 0;
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top-service {
    padding: 40px 0;
  }
}
.top-service--inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 44px;
     -moz-column-gap: 44px;
          column-gap: 44px;
}
@media screen and (max-width: 768px) {
  .top-service--inner {
    grid-template-columns: 1fr;
    row-gap: 40px;
    margin-top: 60px;
  }
}
.top-service--block {
  border: 1px solid #B9B9B9;
  border-radius: 30px;
  padding: 40px 7.5%;
  font-size: 1.6rem;
  font-weight: 400;
  position: relative;
}
.top-service--block:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: -88px;
  width: 166px;
  height: 130px;
  background: url("../img/top/ico_free.svg") no-repeat left top;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .top-service--block:first-child::before {
    width: 140px;
    height: 110px;
    top: -60px;
  }
}
.top-service--block::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: calc(50% - 20px);
  width: 40px;
  height: 40px;
  background: url("../img/top/ico_arrow-right-02.svg") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .top-service--block::after {
    background: url("../img/top/ico_arrow-down-02.svg") no-repeat center center;
    bottom: -40px;
    right: calc(50% - 20px);
    height: 36px;
  }
}
.top-service--block:last-child::after {
  display: none;
}
.top-service--block figure {
  max-width: 166px;
  margin: 0 auto;
}
.top-service--title {
  font-size: clamp(2.1rem, 2.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin: 1em auto 0.5em;
}

.top-response {
  padding: 20px 0 55px;
  margin: 0 auto 100px;
  max-width: 1400px;
  width: 92%;
  background-color: rgba(230, 230, 230, 0.2);
  border-radius: 30px;
  position: relative;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .top-response {
    margin: 0 auto 45px;
    font-size: 1.5rem;
  }
}
.top-response--block {
  width: 86%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 0 0;
}
.top-response--block dt {
  font-size: clamp(2rem, 2.2vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.5em;
}
.top-response--other {
  text-align: right;
  font-size: 1.8rem;
  font-weight: 700;
}

.top-works {
  position: relative;
  padding: 90px 0 80px;
}
@media screen and (max-width: 768px) {
  .top-works {
    padding: 35px 0 45px;
  }
}
.top-works::before {
  content: "";
  width: 100%;
  height: calc(100% - 200px);
  position: absolute;
  left: 0;
  top: 0;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#FFFFF7), to(#FFFFFF)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #FFFFF7 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  z-index: -1;
}
.top-works--inner {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 44px;
     -moz-column-gap: 44px;
          column-gap: 44px;
}
@media screen and (max-width: 1024px) {
  .top-works--inner {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
.top-works--block {
  border: 1px solid #CAD5E2;
  border-radius: 20px;
  padding-bottom: 1.5em;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-works--block .top-works-head {
  color: #fff;
  text-align: center;
  font-size: clamp(2.3rem, 2.8vw, 2.8rem);
  font-weight: 700;
  padding: 1em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 20px 20px 0 0;
  position: relative;
}
.top-works--block .top-works-head::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #0A5E7C;
  opacity: 0.57;
  border-radius: 20px 20px 0 0;
}
.top-works--block .top-works-head span {
  position: relative;
}
.top-works--block:first-child .top-works-head {
  background-image: url("../img/top/img_works-01.jpg");
}
.top-works--block:nth-child(2) .top-works-head {
  background-image: url("../img/top/img_works-02.jpg");
}
.top-works--block:nth-child(3) .top-works-head {
  background-image: url("../img/top/img_works-03.jpg");
}
.top-works--policy, .top-works--period {
  width: 86%;
  padding-bottom: 1em;
}
.top-works--policy dt, .top-works--period dt {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.1em;
}
.top-works--policy dd, .top-works--period dd {
  font-size: clamp(1.5rem, 1.8vw, 1.8rem);
}
.top-works--policy {
  margin: 1em auto 0.75em;
}
.top-works--policy dd {
  padding-left: 1em;
  margin-bottom: 0.1em;
}
.top-works--policy dd::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: -1em;
  margin-right: 0;
  text-align: center;
}
.top-works--policy dd::before {
  content: "・";
}
.top-works--period {
  margin: 0 auto 0.75em;
}
.top-works--period dd {
  text-indent: 1em;
}

.top-effect {
  width: 86%;
  margin: 0 auto;
  background-color: #FDF8FF;
  border-radius: 17px;
  padding-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.top-effect--head {
  background-color: #C480DC;
  text-align: center;
  color: #fff;
  font-size: clamp(1.5rem, 1.8vw, 1.8rem);
  border-radius: 17px 17px 0 0;
  margin-bottom: 1em;
}
.top-effect--item {
  font-size: clamp(1.6rem, 1.9vw, 1.9rem);
  font-weight: 700;
  line-height: 1.5;
  width: 88%;
  margin: 0 auto 0.6em;
  padding-left: 1.45em;
}
.top-effect--item::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1em;
  margin-left: -1.45em;
  margin-right: 0.25em;
  text-align: center;
}
.top-effect--item::before {
  background: url("../img/top/ico_check.svg") no-repeat left top;
  background-size: contain;
}
.top-effect--item--big {
  font-size: clamp(2.9rem, 3.4vw, 3.4rem);
}

.top-consul {
  color: #fff;
  max-width: 1400px;
  width: 92%;
  padding: 90px 5% 80px;
  margin: 110px auto 0;
  border-radius: 30px;
  background: no-repeat center center;
  background-image: url("../img/top/bg_consul-pc.jpg");
  background-size: cover;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-consul {
    padding: 40px 5%;
    margin: 35px auto 0;
    background-image: url("../img/top/bg_consul-sp.jpg");
  }
}
.top-consul--lead {
  color: #169CCC;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 10px;
  max-width: 990px;
  padding: 0.5em 1em 0.4em;
  margin: 0 auto;
  font-size: clamp(2.1rem, 2.7vw, 2.7rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.top-consul--text {
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  margin-bottom: 1.5em;
}/*# sourceMappingURL=style.css.map */