@charset "UTF-8";
/* ------------------------------------------------------------- */
/* reset                                                         */
/* ------------------------------------------------------------- */
/* CSS Document */
/*-----------------reset--------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output,
ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

body,
body * {
  box-sizing: border-box;
}

em {
  font-style: normal;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

picture {
  display: inline-block;
}

/* ------------------------------------------------------------- */
/* layout                                                        */
/* ------------------------------------------------------------- */
* {
  --bRadius30: 30px;
}
@media screen and (max-width: 599px) {
  * {
    --bRadius30: 3vw;
  }
}

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

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

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

html {
  overflow-x: hidden;
}

body {
  font-feature-settings: "palt";
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif !important;
  line-height: 1.4;
  outline: none;
  background-color: #fff !important;
  overflow-x: hidden;
}
@media screen and (max-width: 599px) {
  body {
    min-width: auto;
    font-size: 3.5vw;
  }
}
body.open {
  overflow-y: hidden;
}

.body-wrap {
  transition: filter 0.8s ease-in-out;
  transform: translate3d(0, 0, 0);
}
.body-wrap.open {
  filter: blur(5px);
}

.maru {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  letter-spacing: -0.05em;
}

input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

sub {
  font-size: 60%;
  vertical-align: super;
}

.inner {
  width: min(90%, 1200px);
  margin: 0 auto;
}

.m-center {
  display: block;
  margin: 0 auto;
}

.m-left-auto {
  margin-left: auto;
}

.m-right-auto {
  margin-right: auto;
}

.f-medium {
  font-weight: 500;
}

.f-bold {
  font-weight: 600;
}

.f-black {
  font-weight: 900;
}

.white {
  color: #fff;
}

.red {
  color: #e60012;
}

.blue {
  color: #2BABE2;
}

.u-border {
  text-decoration: underline;
}

/*-----------------画像--------------------*/
img.fit-cover {
  object-fit: cover;
}

img.fit-contain {
  object-fit: contain;
}

picture,
figure img {
  width: 100%;
}

img {
  vertical-align: top;
  max-width: 100%;
}

img.pixelated {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

/*-----------------flex--------------------*/
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex.nowrap {
  flex-wrap: nowrap;
}

.flex.right {
  justify-content: flex-end;
}

.flex.center {
  justify-content: center;
}

.flex.left {
  justify-content: flex-start;
}

.flex.vertical {
  flex-direction: column;
  align-items: flex-start;
}

.flex.al-center {
  align-items: center;
}

.flex.al-top {
  align-items: flex-start;
}

.flex.al-bottom {
  align-items: flex-end;
}

.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 599px) {
  .reverse {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.v-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*-----------------Link--------------------*/
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
a:hover, a:active {
  opacity: 0.7;
}
@media screen and (max-width: 599px) {
  a:hover, a:active {
    opacity: 1;
  }
}

/*----------------text---------------------*/
.txt-c {
  text-align: center;
}

.txt-l {
  text-align: left;
}

.txt-r {
  text-align: right;
}

/*----------------list---------------------*/
ul.basic li {
  padding-left: 1em;
  text-indent: -1em;
}
ul.basic li::before {
  content: "・";
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  ul.basic li::before {
    margin-right: 2vw;
  }
}

ol {
  font-size: 15px;
}
@media screen and (max-width: 599px) {
  ol {
    font-size: 3.3vw;
  }
}
ol li {
  padding-left: 1em;
  text-indent: -1.6em;
  list-style-type: none;
  counter-increment: cnt;
}
ol li::before {
  content: counter(cnt) ".";
  margin-right: 10px;
}
ol li:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  ol li:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}

ol.alpfa {
  font-size: 15px;
}
ol.alpfa li {
  padding-left: 1.6em;
  text-indent: -1.6em;
  counter-increment: cnt;
}
ol.alpfa li::before {
  content: counter(cnt, lower-alpha) ")";
  margin-right: 5px;
  font-weight: 500;
}
ol.alpfa li:not(:last-child) {
  margin-bottom: 13px;
}

/*     フェードイン    */
.fadeIn {
  opacity: 0;
  transition-delay: 250ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

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

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

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

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

.scroll-in {
  opacity: 1;
  transform: translate(0);
}

/*     スライドイン    */
.slideIn {
  opacity: 0;
  transition-delay: 0ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.slideIn-up {
  opacity: 1;
  transform: translate(0, 80px);
}

.slideIn-down {
  opacity: 1;
  transform: translate(0, -80px);
}

.slideIn-left {
  opacity: 1;
  transform: translate(-80px, 0);
}

.slideIn-right {
  opacity: 1;
  transform: translate(80px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0);
}

.topMv {
  padding: 40px 0;
  background-color: #F4B0AB;
}
@media screen and (max-width: 1662px) {
  .topMv {
    padding: 2vw 0;
  }
}
@media screen and (max-width: 599px) {
  .topMv {
    padding: 8vw 0 8vw;
  }
}
.topMv .inner {
  width: min(1500px, 90%);
  position: relative;
}
.topMv__txtWrap {
  width: min(800px, 100%);
}
.topMv__ttl .pc {
  display: inline-block !important;
}
@media screen and (max-width: 599px) {
  .topMv__ttl {
    text-align: center;
  }
  .topMv__ttl .pc {
    display: none !important;
  }
}
.topMv__ttl span:nth-child(1) {
  font-size: 42px;
}
@media screen and (max-width: 1662px) {
  .topMv__ttl span:nth-child(1) {
    font-size: 3vw;
  }
}
@media screen and (max-width: 599px) {
  .topMv__ttl span:nth-child(1) {
    display: inline-block;
    font-size: 7vw;
    margin-bottom: 3vw;
    line-height: 1.2;
  }
}
.topMv__ttl span:nth-child(1) strong {
  font-size: 64px;
}
@media screen and (max-width: 1662px) {
  .topMv__ttl span:nth-child(1) strong {
    font-size: 4vw;
  }
}
@media screen and (max-width: 599px) {
  .topMv__ttl span:nth-child(1) strong {
    font-size: 10vw;
  }
}
.topMv__ttl span:nth-child(3) {
  font-size: 90px;
  line-height: 0.7;
}
@media screen and (max-width: 1662px) {
  .topMv__ttl span:nth-child(3) {
    font-size: 7vw;
  }
}
@media screen and (max-width: 599px) {
  .topMv__ttl span:nth-child(3) {
    font-size: 14vw;
    white-space: nowrap;
  }
}
.topMv__ttl span:nth-child(3) strong {
  color: #fff;
  font-size: 140px;
  line-height: 0.6;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: black;
}
@media screen and (max-width: 1662px) {
  .topMv__ttl span:nth-child(3) strong {
    font-size: 10vw;
  }
}
@media screen and (max-width: 599px) {
  .topMv__ttl span:nth-child(3) strong {
    font-size: 20vw;
    -webkit-text-stroke-width: 0.5vw;
    -webkit-text-stroke-color: black;
  }
}
.topMv__catch {
  font-size: 28px;
  margin: 30px 0;
}
@media screen and (max-width: 1662px) {
  .topMv__catch {
    font-size: 1.8vw;
    margin: 3vw 0 2vw;
  }
}
@media screen and (max-width: 599px) {
  .topMv__catch {
    text-align: center;
    font-size: 5.5vw;
    margin: 4vw 0 57vw;
  }
}
.topMv__cta {
  width: min(675px, 100%);
  background-color: #fff;
  border: solid 3px #000000;
  border-radius: var(--bRadius30);
  padding: 35px 45px;
}
@media screen and (max-width: 1662px) {
  .topMv__cta {
    width: 40vw;
    padding: 2vw 0;
  }
}
@media screen and (max-width: 599px) {
  .topMv__cta {
    width: 100%;
    padding: 5vw 6vw;
  }
}
.topMv__ctaTxt {
  font-size: 26px;
  position: relative;
}
@media screen and (max-width: 1662px) {
  .topMv__ctaTxt {
    font-size: 2vw;
  }
}
@media screen and (max-width: 599px) {
  .topMv__ctaTxt {
    font-size: 5vw;
  }
}
.topMv__ctaTxt::before, .topMv__ctaTxt::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 2px;
  background-color: #1B1464;
  position: absolute;
  bottom: 20%;
}
@media screen and (max-width: 599px) {
  .topMv__ctaTxt::before, .topMv__ctaTxt::after {
    width: 5vw;
    height: 0.5vw;
  }
}
.topMv__ctaTxt::before {
  transform: rotate(50deg);
  left: -1.6em;
}
@media screen and (max-width: 599px) {
  .topMv__ctaTxt::before {
    left: -6vw;
  }
}
.topMv__ctaTxt::after {
  transform: rotate(-50deg);
  right: -2em;
}
@media screen and (max-width: 599px) {
  .topMv__ctaTxt::after {
    right: -6vw;
  }
}
.topMv__btnWrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 1662px) {
  .topMv__btnWrap {
    gap: 1vw;
    padding: 0 2vw;
  }
}
@media screen and (max-width: 599px) {
  .topMv__btnWrap {
    flex-direction: column;
    gap: 2vw;
  }
}
.topMv__btn {
  width: calc(50% - 10px);
  box-sizing: border-box;
  display: inline-block;
  font-size: 24px;
  border-radius: 15px;
  border: solid 3px #000000;
  box-shadow: 5px 5px 0 #A7BAC6;
}
@media screen and (max-width: 1662px) {
  .topMv__btn {
    width: calc(50% - 0.51vw);
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 599px) {
  .topMv__btn {
    width: auto;
    font-size: 5vw;
    padding: 6vw 9vw;
  }
}
.topMv__btn:nth-child(1) {
  background-color: #F4B0AB;
  position: relative;
  padding: 15px 50px 15px 25px;
}
@media screen and (max-width: 1662px) {
  .topMv__btn:nth-child(1) {
    padding: 1vw 2vw 1vw 2vw;
  }
}
@media screen and (max-width: 599px) {
  .topMv__btn:nth-child(1) {
    padding: 6vw 9vw 6vw 11vw;
  }
}
.topMv__btn:nth-child(1)::before {
  content: "";
  display: block;
  width: 42px;
  aspect-ratio: 84/104;
  background: url(../images/top/topMv_icon01.png) no-repeat center/contain;
  position: absolute;
  top: 66%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1662px) {
  .topMv__btn:nth-child(1)::before {
    width: 2.5vw;
    right: 1vw;
  }
}
@media screen and (max-width: 599px) {
  .topMv__btn:nth-child(1)::before {
    width: 14vw;
    right: 6vw;
  }
}
.topMv__btn:nth-child(2) {
  background-color: #2BABE2;
  position: relative;
  padding: 15px 50px 15px 40px;
}
@media screen and (max-width: 1662px) {
  .topMv__btn:nth-child(2) {
    padding: 1vw 3vw 1vw 2vw;
  }
}
@media screen and (max-width: 599px) {
  .topMv__btn:nth-child(2) {
    padding: 6vw 9vw 6vw 11vw;
  }
}
.topMv__btn:nth-child(2)::after {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 18/17;
  background: url(../images/top/topMv_arw.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1662px) {
  .topMv__btn:nth-child(2)::after {
    width: 1vw;
    right: 1vw;
  }
}
@media screen and (max-width: 599px) {
  .topMv__btn:nth-child(2)::after {
    width: 5vw;
    right: 9vw;
  }
}
.topMv__btn:nth-child(3) {
  width: 100%;
  box-sizing: border-box;
  background-color: #e5ccf3;
  position: relative;
  padding: 15px 50px 15px 40px;
}
@media screen and (max-width: 1662px) {
  .topMv__btn:nth-child(3) {
    padding: 1vw 3vw 1vw 2vw;
  }
}
@media screen and (max-width: 599px) {
  .topMv__btn:nth-child(3) {
    padding: 6vw 9vw 6vw 11vw;
  }
}
.topMv__btn:nth-child(3)::after {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 18/17;
  background: url(../images/top/topMv_arw.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1662px) {
  .topMv__btn:nth-child(3)::after {
    width: 1vw;
    right: 1vw;
  }
}
@media screen and (max-width: 599px) {
  .topMv__btn:nth-child(3)::after {
    width: 5vw;
    right: 9vw;
  }
}
.topMv .splide {
  width: 706px;
  aspect-ratio: 706/540;
  overflow: hidden;
  border-radius: var(--bRadius30);
  border: solid 7px #000000;
  box-shadow: 5px 5px 0px #808080;
  background-color: #fff;
}
@media screen and (max-width: 1662px) {
  .topMv .splide {
    width: 42vw;
  }
}
@media screen and (max-width: 599px) {
  .topMv .splide {
    width: 60vw;
    border-width: 4px;
    box-shadow: 3px 3px 0px #808080;
  }
}
.topMv__sliderWrap {
  position: absolute;
  bottom: 0px;
  right: -5em;
}
@media screen and (max-width: 1662px) {
  .topMv__sliderWrap {
    right: -4vw;
    bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .topMv__sliderWrap {
    left: 27vw;
    right: auto;
    bottom: auto;
    top: 69vw;
  }
}
.topMv__img {
  position: absolute;
  bottom: -60px;
  left: -136px;
}
@media screen and (max-width: 1662px) {
  .topMv__img {
    width: 56%;
    bottom: -3.2vw;
    left: -7vw;
  }
}
@media screen and (max-width: 599px) {
  .topMv__img {
    width: 35vw;
    bottom: -6.2vw;
    left: -22vw;
  }
}

.topIndex {
  background-color: #333333;
}
.topIndex .inner {
  width: min(100%, 1200px);
}
.topIndex__list {
  display: flex;
  justify-content: center;
}
.topIndex__item {
  width: 20%;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  border-right: solid 1px #fff;
}
.topIndex__item:first-child {
  border-left: solid 1px #fff;
}
@media screen and (max-width: 999px) {
  .topIndex__item {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 599px) {
  .topIndex__item {
    font-size: 3.2vw;
  }
}
.topIndex__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 30px 0;
}
@media screen and (max-width: 999px) {
  .topIndex__item a {
    padding: 3vw 2vw;
  }
}
@media screen and (max-width: 599px) {
  .topIndex__item a {
    padding: 4vw 2vw;
  }
}

.topLead {
  padding: 100px 0 0;
}
@media screen and (max-width: 999px) {
  .topLead {
    padding: 10vw 0 0;
  }
}
@media screen and (max-width: 599px) {
  .topLead {
    padding: 15vw 0;
  }
}
.topLead__ttl {
  font-size: 42px;
  margin-bottom: 40px;
  white-space: pre-wrap;
  word-break: keep-all;
}
@media screen and (max-width: 999px) {
  .topLead__ttl {
    font-size: 42px;
  }
}
@media screen and (max-width: 599px) {
  .topLead__ttl {
    font-size: 8vw;
    margin-bottom: 8vw;
  }
}
.topLead__ttl span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, #F4B0AB 70%);
  margin: 0 10px;
}
.topLead__cardWrap {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .topLead__cardWrap {
    gap: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .topLead__cardWrap {
    flex-direction: column;
    gap: 3.5vw;
  }
}
.topLead__card {
  flex: 1;
  padding: 45px 45px;
  border: solid 3px #000000;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .topLead__card {
    display: flex;
    align-items: flex-start;
    gap: 5vw;
    padding: 55px 5vw;
  }
}
@media screen and (max-width: 599px) {
  .topLead__card {
    flex-direction: column;
    padding: 6.5vw 5.5vw;
    gap: 3.5vw;
  }
}
.topLead__img {
  display: block;
  margin: 0 auto 25px;
}
@media screen and (max-width: 768px) {
  .topLead__img {
    width: 26vw;
  }
}
@media screen and (max-width: 599px) {
  .topLead__img {
    width: 75%;
    margin: 0 auto;
  }
}
.topLead__cardTtl {
  font-size: 32px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .topLead__cardTtl {
    text-align: left;
  }
}
@media screen and (max-width: 599px) {
  .topLead__cardTtl {
    font-size: 5vw;
    margin-bottom: 2vw;
  }
}
.topLead__cardTxt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .topLead__cardTxt {
    font-size: 3.3vw;
    line-height: 1.4;
  }
}
.topLead__cardTxt small {
  display: inline-block;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 5px;
}
.topLead__cardTxt small a {
  text-decoration: underline;
}

.topSolution {
  position: relative;
  background-color: #D1E9F8;
  padding: 100px 0;
}
@media screen and (max-width: 599px) {
  .topSolution {
    padding: 15vw 0 15vw;
  }
}
.topSolution::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 90px 110px 0 110px;
  border-color: #2BABE2 transparent transparent transparent;
  position: absolute;
  top: -2em;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  .topSolution::before {
    border-width: 11vw 16vw 0 16vw;
    top: -1em;
  }
}
.topSolution__ttl {
  color: #1B1464;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 599px) {
  .topSolution__ttl {
    font-size: 5vw;
  }
}
.topSolution__ttl strong {
  font-size: 56px;
}
@media screen and (max-width: 599px) {
  .topSolution__ttl strong {
    font-size: 9vw;
  }
}
.topSolution__ttlSub {
  display: inline-block;
  margin-bottom: 0.4em;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  position: relative;
}
@media screen and (max-width: 599px) {
  .topSolution__ttlSub {
    margin-bottom: 3vw;
    font-size: 3.8vw;
  }
}
.topSolution__ttlSub::before, .topSolution__ttlSub::after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  background-color: #000000;
  position: absolute;
  bottom: 43%;
}
@media screen and (max-width: 599px) {
  .topSolution__ttlSub::before, .topSolution__ttlSub::after {
    width: 33px;
    height: 2px;
  }
}
.topSolution__ttlSub::before {
  transform: rotate(50deg);
  left: -60px;
}
@media screen and (max-width: 599px) {
  .topSolution__ttlSub::before {
    left: -33px;
  }
}
.topSolution__ttlSub::after {
  transform: rotate(-50deg);
  right: -60px;
}
@media screen and (max-width: 599px) {
  .topSolution__ttlSub::after {
    right: -33px;
  }
}
.topSolution__lead {
  font-size: 24px;
  font-weight: 500;
  margin: 30px 0 35px;
}
@media screen and (max-width: 599px) {
  .topSolution__lead {
    font-size: 5vw;
    margin: 7vw 0 9.5vw;
  }
}
.topSolution__small {
  font-size: 15px;
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .topSolution__small {
    text-align: center;
    font-size: 3.2vw;
  }
}

.topFeature {
  padding: 100px 0;
}
@media screen and (max-width: 599px) {
  .topFeature {
    padding: 15vw 0;
  }
}
.topFeature__jumpWrap {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1390px) {
  .topFeature__jumpWrap {
    flex-wrap: wrap;
    gap: 1vw;
  }
}
@media screen and (max-width: 599px) {
  .topFeature__jumpWrap {
    gap: 2vw;
  }
}
.topFeature__jumpArea {
  flex: 1;
  display: block;
  padding: 25px 15px;
  border: solid 3px #000000;
  border-radius: 24px;
}
@media screen and (max-width: 1310px) {
  .topFeature__jumpArea {
    padding: 3vw;
    padding: 2vw 1vw;
  }
}
@media screen and (max-width: 599px) {
  .topFeature__jumpArea {
    flex: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vw 4vw 2vw 7vw;
    border-radius: 3.5vw;
  }
}
.topFeature__jumpNumWrap {
  font-size: 20px;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 1310px) {
  .topFeature__jumpNumWrap {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 599px) {
  .topFeature__jumpNumWrap {
    gap: 3vw;
    line-height: 1.6;
    font-size: 4vw;
    margin-bottom: 0;
  }
}
.topFeature__jumpNumWrap span {
  font-size: 60px;
  line-height: 1;
}
@media screen and (max-width: 1310px) {
  .topFeature__jumpNumWrap span {
    font-size: 4vw;
  }
}
@media screen and (max-width: 599px) {
  .topFeature__jumpNumWrap span {
    font-size: 8vw;
  }
}
.topFeature__jumpImg {
  width: 190px;
}
@media screen and (max-width: 999px) {
  .topFeature__jumpImg {
    width: 23vw;
  }
}
@media screen and (max-width: 599px) {
  .topFeature__jumpImg {
    width: 25vw;
  }
}
.topFeature__btnArw {
  width: 50px;
  display: block;
  margin: -40px auto 0;
}
@media screen and (max-width: 999px) {
  .topFeature__btnArw {
    width: 6vw;
    margin: -5vw auto 0;
  }
}
@media screen and (max-width: 599px) {
  .topFeature__btnArw {
    width: 7vw;
    margin: -8vw auto 0;
  }
}
.topFeature__arw {
  display: block;
  width: 80%;
  margin: 50px auto;
}
@media screen and (max-width: 599px) {
  .topFeature__arw {
    margin: 9vw auto;
  }
}
.topFeature__innerCtrWrap {
  width: min(100%, 1000px);
  margin: 0 auto;
}
.topFeature__innerTtl {
  font-size: 54px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 50px;
  white-space: pre-wrap;
  word-break: keep-all;
}
@media screen and (max-width: 599px) {
  .topFeature__innerTtl {
    font-size: 8vw;
    margin-bottom: 6vw;
  }
}
.topFeature__innerTtl small {
  font-size: 37px;
}
@media screen and (max-width: 599px) {
  .topFeature__innerTtl small {
    font-size: 6vw;
  }
}
.topFeature__innerCtr {
  width: min(1300px, 100%);
  border-radius: var(--bRadius30);
  border: solid 3px #000000;
}
.topFeature__innerCtr:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 999px) {
  .topFeature__innerCtr:not(:last-child) {
    margin-bottom: 5vw;
  }
}
.topFeature__innerCtrTtl {
  font-size: 30px;
  font-weight: 500;
  padding: 30px 30px 30px 2.4em;
  border-radius: var(--bRadius30) var(--bRadius30) 0 0;
  background-color: #D1E9F8;
  position: relative;
  text-indent: -1.4em;
  line-height: 140%;
}
@media screen and (max-width: 999px) {
  .topFeature__innerCtrTtl {
    padding: 5vw 5vw 5vw 2.4em;
  }
}
@media screen and (max-width: 599px) {
  .topFeature__innerCtrTtl {
    text-indent: -6vw;
    padding: 5vw 5vw 5vw 12vw;
    font-size: 5vw;
    line-height: 1.2;
  }
}
.topFeature__innerCtrTtl strong {
  font-size: 49px;
  font-weight: 700;
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .topFeature__innerCtrTtl strong {
    font-size: 5vw;
    margin-right: 2.8vw;
  }
}
.topFeature__innerCtrFlex {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 42px 50px 40px;
}
@media screen and (max-width: 999px) {
  .topFeature__innerCtrFlex {
    gap: 5vw;
    padding: 6vw 5vw 8vw;
  }
}
@media screen and (max-width: 599px) {
  .topFeature__innerCtrFlex {
    flex-direction: column;
    align-items: flex-start;
    padding: 6vw 5vw 8vw;
  }
}
.topFeature__innerCtrFlex img {
  width: 43%;
}
@media screen and (max-width: 599px) {
  .topFeature__innerCtrFlex img {
    width: auto;
  }
}
.topFeature__txt-box {
  width: 60%;
}
@media screen and (max-width: 599px) {
  .topFeature__txt-box {
    width: 100%;
  }
}
.topFeature__productAbout {
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .topFeature__productAbout {
    font-size: 4vw;
  }
}
.topFeature__productName {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.08em;
}
@media screen and (max-width: 768px) {
  .topFeature__productName {
    font-size: 6vw;
  }
}
@media screen and (max-width: 599px) {
  .topFeature__productName {
    font-size: 8vw;
  }
}
.topFeature__productName.small {
  font-size: 38px;
}
@media screen and (max-width: 768px) {
  .topFeature__productName.small {
    font-size: 6vw;
  }
}
@media screen and (max-width: 599px) {
  .topFeature__productName.small {
    font-size: 6vw;
  }
}
.topFeature__innerCatch {
  font-size: 32px;
  line-height: 1.4;
  margin: 20px 0 16px;
}
@media screen and (max-width: 768px) {
  .topFeature__innerCatch {
    font-size: 3vw;
  }
}
@media screen and (max-width: 599px) {
  .topFeature__innerCatch {
    font-size: 4.5vw;
    margin: 4vw 0 3vw;
  }
}
.topFeature__innerCatch span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 65%, #F4B0AB 65%);
  margin: 0 2px;
}
@media screen and (max-width: 599px) {
  .topFeature__innerCatch span {
    margin: 0 0.5vw;
  }
}
.topFeature__innerList {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .topFeature__innerList {
    font-size: 3.8vw;
  }
}

.topCase {
  padding: 80px 0 160px;
  background-color: #D1E9F8;
}
@media screen and (max-width: 599px) {
  .topCase {
    padding: 15vw 0;
  }
}
.topCase .inner {
  width: min(1200px, 90%);
}
.topCase__cardWrap {
  display: flex;
  gap: 25px;
  margin-bottom: 50px;
}
@media screen and (max-width: 999px) {
  .topCase__cardWrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 599px) {
  .topCase__cardWrap {
    gap: 5vw;
    margin-bottom: 7vw;
  }
}
.topCase__card {
  flex: 1;
  background-color: #fff;
  padding: 35px 30px;
  border: solid 3px #000000;
  border-radius: var(--bRadius30);
  box-shadow: 5px 5px 0 #A7BAC6;
}
@media screen and (max-width: 999px) {
  .topCase__card {
    display: flex;
    align-items: flex-start;
    gap: 5vw;
    padding: 55px 5vw;
  }
  .topCase__card > div {
    flex: 1;
  }
}
@media screen and (max-width: 599px) {
  .topCase__card {
    display: block;
    padding: 7vw 5vw;
  }
}
.topCase__card img {
  margin-bottom: 20px;
}
@media screen and (max-width: 999px) {
  .topCase__card img {
    display: block;
    width: 27vw;
  }
}
@media screen and (max-width: 599px) {
  .topCase__card img {
    width: auto;
    margin: 0 auto 6vw;
  }
}
.topCase__caseNameWrap {
  font-size: 24px;
  color: #1B1464;
  margin-bottom: 16px;
}
@media screen and (max-width: 599px) {
  .topCase__caseNameWrap {
    font-size: 6vw;
    margin-bottom: 4vw;
  }
}
.topCase__caseNameWrap p {
  font-size: 18px;
}
@media screen and (max-width: 599px) {
  .topCase__caseNameWrap p {
    font-size: 4.5vw;
  }
}
.topCase__listWrap p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .topCase__listWrap p {
    font-size: 4.5vw;
  }
}
.topCase__list {
  font-weight: 500;
  line-height: 1.5;
}
.topCase__listLinks {
  font-weight: 500;
  line-height: 1.8;
}
.topCase__listLinks a {
  color: #0c0d6a;
  text-decoration: underline;
}
.topCase__listLinks a:hover {
  text-decoration: none;
}
.topCase__btn {
  display: inline-block;
  width: min(400px, 100%);
  font-size: 18px;
  font-weight: 700;
  padding: 24px;
  text-align: center;
  color: #fff;
  border-radius: 100px;
  letter-spacing: 0.02em;
  background-color: #333333;
}
@media screen and (max-width: 599px) {
  .topCase__btn {
    font-size: 5vw;
    padding: 7vw;
  }
}

.topSupport {
  background-color: #F4B0AB;
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 999px) {
  .topSupport {
    padding: 112px 0 113px;
  }
}
@media screen and (max-width: 599px) {
  .topSupport {
    padding: 15vw 0;
  }
}
.topSupport__topTxt {
  width: 790px;
  color: #1B1464;
  font-size: 37px;
  position: absolute;
  left: 50%;
  top: -2.6em;
  transform: translateX(-50%);
  background-color: #F4B0AB;
  padding-top: 85px;
  border-radius: 50%/100% 100% 0 0;
}
@media screen and (max-width: 999px) {
  .topSupport__topTxt {
    font-size: 5vw;
  }
}
@media screen and (max-width: 599px) {
  .topSupport__topTxt {
    position: relative;
    transform: none;
    border-radius: 0;
    font-size: 6vw;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
  }
}
.topSupport__ttl span {
  display: inline-block;
  position: relative;
  z-index: 10;
  color: #1B1464;
  font-size: 54px;
  letter-spacing: -0.07em;
  white-space: pre-wrap;
  word-break: keep-all;
}
@media screen and (max-width: 599px) {
  .topSupport__ttl span {
    font-size: 8vw;
  }
}
.topSupport__ttl span::before, .topSupport__ttl span::after {
  content: "";
  display: block;
  width: 85px;
  height: 5px;
  background-color: #1B1464;
  position: absolute;
  bottom: 0%;
}
@media screen and (max-width: 599px) {
  .topSupport__ttl span::before, .topSupport__ttl span::after {
    width: 50px;
    height: 2px;
  }
}
.topSupport__ttl span::before {
  transform: rotate(230deg);
  transform-origin: left;
  left: -20px;
}
@media screen and (max-width: 999px) {
  .topSupport__ttl span::before {
    left: 10px;
  }
}
.topSupport__ttl span::after {
  transform: rotate(-230deg);
  transform-origin: right;
  right: -20px;
}
@media screen and (max-width: 999px) {
  .topSupport__ttl span::after {
    right: 10px;
  }
}
.topSupport__ctrWrap {
  display: flex;
  gap: 40px;
  margin: 60px 0 40px;
}
@media screen and (max-width: 999px) {
  .topSupport__ctrWrap {
    gap: 3vw;
  }
}
@media screen and (max-width: 599px) {
  .topSupport__ctrWrap {
    flex-direction: column;
    gap: 3vw;
    margin: 8vw 0 5vw;
  }
}
.topSupport__ctr {
  flex: 1;
  border-radius: 30px;
  background-color: #fff;
  padding: 40px 30px 37px;
}
@media screen and (max-width: 599px) {
  .topSupport__ctr {
    padding: 6vw 5vw 4vw;
  }
}
.topSupport__ctrTtl {
  display: inline-block;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (max-width: 999px) {
  .topSupport__ctrTtl {
    font-size: 4vw;
  }
}
@media screen and (max-width: 599px) {
  .topSupport__ctrTtl {
    font-size: 7vw;
    margin-bottom: 4vw;
  }
}
.topSupport__ctrTtl span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 65%, #F4B0AB 65%);
  margin: 0 10px;
}
.topSupport__ctaArea {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 40px;
  background-color: #FFFC83;
  border: solid 3px #000000;
  border-radius: 30px;
  padding: 20px 54px 40px;
  box-shadow: 10px 10px 0 #BB615C;
}
@media screen and (max-width: 999px) {
  .topSupport__ctaArea {
    padding: 7vw 5vw 5vw;
  }
}
@media screen and (max-width: 599px) {
  .topSupport__ctaArea {
    flex-direction: column;
  }
}
.topSupport__ctaArea img {
  width: 190px;
}
@media screen and (max-width: 922px) {
  .topSupport__ctaArea img {
    width: 28%;
  }
}
@media screen and (max-width: 1024px) {
  .topSupport__ctaArea img {
    width: 20%;
  }
}
.topSupport__txtBox {
  width: min(600px, 100%);
}
.topSupport__ctaTxt {
  position: relative;
  display: inline-block;
  font-size: 36px;
}
@media screen and (max-width: 999px) {
  .topSupport__ctaTxt {
    font-size: 4.4vw;
    transform: translateX(2.7vw);
  }
}
@media screen and (max-width: 599px) {
  .topSupport__ctaTxt {
    transform: unset;
    font-size: 5.8vw;
  }
}
.topSupport__ctaTxt::before, .topSupport__ctaTxt::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 3px;
  border-radius: 30px;
  background-color: #000000;
  position: absolute;
  bottom: 22%;
}
@media screen and (max-width: 999px) {
  .topSupport__ctaTxt::before, .topSupport__ctaTxt::after {
    width: 14vw;
    height: 0.8vw;
  }
}
.topSupport__ctaTxt::before {
  transform: rotate(50deg);
  left: -1.5em;
}
@media screen and (max-width: 599px) {
  .topSupport__ctaTxt::before {
    left: -9vw;
  }
}
.topSupport__ctaTxt::after {
  transform: rotate(-50deg);
  right: -1.5em;
}
@media screen and (max-width: 599px) {
  .topSupport__ctaTxt::after {
    right: -9vw;
  }
}
.topSupport__catTxtSub {
  display: inline-block;
  font-size: 24px;
  color: #EA6A60;
  margin-bottom: 10px;
}
@media screen and (max-width: 999px) {
  .topSupport__catTxtSub {
    font-size: 2.6vw;
    margin-bottom: 1vw;
  }
}
@media screen and (max-width: 599px) {
  .topSupport__catTxtSub {
    transform: unset;
    font-size: 4.2vw;
    margin-bottom: 2vw;
  }
}
.topSupport__btn {
  position: relative;
  display: block;
  font-size: 30px;
  width: min(510px, 100%);
  border: solid 3px #000000;
  background-color: #2BABE2;
  border-radius: 30px;
  padding: 30px 50px 30px 60px;
  margin: 37px auto 20px;
  box-shadow: 5px 5px 0 #B3B3B3;
}
@media screen and (max-width: 922px) {
  .topSupport__btn {
    font-size: 3.8vw;
    padding: 4vw 5vw 4vw 10vw;
    margin-top: 3vw;
  }
}
@media screen and (max-width: 599px) {
  .topSupport__btn {
    font-size: 5vw;
    margin-top: 6vw;
  }
}
.topSupport__btn::before {
  content: "";
  display: block;
  width: 100px;
  aspect-ratio: 190/185;
  background: url(../images/top/topSupport_icon01.png) no-repeat center/contain;
  position: absolute;
  bottom: 22px;
  left: 30px;
}
@media screen and (max-width: 922px) {
  .topSupport__btn::before {
    width: 12vw;
    bottom: 4vw;
  }
}
@media screen and (max-width: 599px) {
  .topSupport__btn::before {
    left: 5vw;
    width: 18vw;
    bottom: 3vw;
  }
}
.topSupport__btn::after {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 20/40;
  background: url(../images/top/topMv_arw.svg) no-repeat center/contain;
  position: absolute;
  top: 52%;
  right: 65px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1250px) {
  .topSupport__btn::after {
    width: 3vw;
    right: 4vw;
    bottom: 3vw;
  }
}
@media screen and (max-width: 599px) {
  .topSupport__btn::after {
    width: 6vw;
    bottom: 3vw;
  }
}

.topCta {
  background-color: #D1E9F8;
  padding: 60px 0;
}
@media screen and (max-width: 599px) {
  .topCta {
    padding: 10vw 0;
  }
}
.topCta__box {
  width: min(1000px, 100%);
  padding: 65px 40px 60px;
  margin: 0 auto;
  border-radius: var(--bRadius30);
  background-color: #fff;
}
@media screen and (max-width: 1100px) {
  .topCta__box {
    padding: 8vw 9vw;
  }
}
@media screen and (max-width: 599px) {
  .topCta__box {
    padding: 8vw 5vw;
  }
}
.topCta__message {
  color: #1B1464;
  font-size: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .topCta__message {
    font-size: 6vw;
  }
}
.topCta__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
}
@media screen and (max-width: 1100px) {
  .topCta__flex {
    gap: 4vw;
  }
}
@media screen and (max-width: 599px) {
  .topCta__flex {
    flex-direction: column;
    gap: 4vw;
  }
}
.topCta__btn {
  width: min(470px, 100%);
  padding: 35px 0;
  font-size: 30px;
  text-align: center;
  border-radius: 30px;
  border: solid 3px #000000;
  background-color: #F4B0AB;
  box-shadow: 10px 10px 0 #808080;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .topCta__btn {
    font-size: 2.8vw;
    padding: 5vw;
  }
}
@media screen and (max-width: 599px) {
  .topCta__btn {
    font-size: 4vw;
    padding: 5vw;
    box-shadow: 1vw 1vw 0 #808080;
  }
}
.topCta__badge {
  width: 126px;
  font-size: 20px;
  line-height: 1;
  padding: 30px 0;
  border: solid 5px #000000;
  border-radius: 100px;
  background-color: #FFFC83;
  position: absolute;
  left: -35px;
  top: -38px;
}
@media screen and (max-width: 1100px) {
  .topCta__badge {
    width: 16vw;
    padding: 4vw 0;
    font-size: 2.5vw;
    left: -6vw;
    top: -4vw;
  }
}
@media screen and (max-width: 599px) {
  .topCta__badge {
    width: 23vw;
    padding: 6vw 0;
    font-size: 3.5vw;
    left: -6vw;
  }
}
.topCta__badge strong {
  font-size: 35px;
}
@media screen and (max-width: 1100px) {
  .topCta__badge strong {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 599px) {
  .topCta__badge strong {
    font-size: 4.5vw;
  }
}
.topCta__icon {
  position: absolute;
  width: 70px;
  right: 5%;
  top: 23%;
}
@media screen and (max-width: 1100px) {
  .topCta__icon {
    width: 8vw;
    right: 2vw;
  }
}
@media screen and (max-width: 599px) {
  .topCta__icon {
    width: 12vw;
    right: 5vw;
  }
}
.topCta__img {
  width: 205px;
}
@media screen and (max-width: 1100px) {
  .topCta__img {
    width: 21vw;
  }
}
@media screen and (max-width: 599px) {
  .topCta__img {
    display: none;
  }
}

.topArticle {
  padding: 80px 0 120px;
}
@media screen and (max-width: 599px) {
  .topArticle {
    padding: 15vw 0 30vw;
  }
}
.topArticle__ttl {
  color: #1B1464;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .topArticle__ttl {
    font-size: 10vw;
    margin-bottom: 5vw;
  }
}
.topArticle__wrap {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
@media screen and (max-width: 999px) {
  .topArticle__wrap {
    flex-wrap: wrap;
    gap: 2vw;
  }
}
@media screen and (max-width: 599px) {
  .topArticle__wrap {
    flex-direction: column;
    gap: 5vw;
  }
}
.topArticle__item {
  width: 32.3333333333%;
  padding: 30px;
  border-radius: var(--bRadius30);
  border: solid 3px #000000;
  background-color: #fff;
  box-shadow: 5px 5px 0 #A7BAC6;
}
@media screen and (max-width: 1024px) {
  .topArticle__item {
    padding: 5vw 5vw 4vw;
  }
}
@media screen and (max-width: 999px) {
  .topArticle__item {
    width: calc(50% - 1vw);
  }
}
@media screen and (max-width: 599px) {
  .topArticle__item {
    width: 100%;
  }
}
.topArticle__item img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .topArticle__item img {
    height: 47vw;
  }
}
.topArticle__cate-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.topArticle__cate {
  border-radius: 50px;
  padding: 5px 20px;
  font-size: 13px;
  color: #fff;
  background-color: #1B1464;
}
@media screen and (max-width: 599px) {
  .topArticle__cate {
    font-size: 3.2vw;
    padding: 1vw 5vw;
  }
}
.topArticle__time {
  margin: 10px 0 6px;
}
@media screen and (max-width: 599px) {
  .topArticle__time {
    margin: 2.5vw 0 1vw;
    font-size: 3.2vw;
  }
}
.topArticle__txt-wrap {
  flex: 1;
}
.topArticle__txt {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .topArticle__txt {
    font-size: 3.8vw;
    margin-bottom: 4vw;
  }
}
.topArticle__link {
  color: #1B1464;
  font-weight: 500;
  text-decoration: underline;
}
@media screen and (max-width: 599px) {
  .topArticle__link {
    font-size: 3.2vw;
  }
}

.topCvArea {
  background-color: #F4B0AB;
  padding: 50px 0;
  position: relative;
}
@media screen and (max-width: 999px) {
  .topCvArea {
    padding: 60px 0;
  }
}
@media screen and (max-width: 599px) {
  .topCvArea {
    padding: 8vw 0;
  }
}
.topCvArea .topMv__cta {
  margin: auto;
}
@media screen and (max-width: 599px) {
  .topCvArea .topMv__cta {
    width: 90%;
  }
}

.g-banner-hojokin-popup {
  position: fixed;
  bottom: 30px;
  right: calc(3% + 90px);
  background: #fff;
  z-index: 10000;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
  width: 320px;
  text-align: center;
  display: none;
}
.g-banner-hojokin-popup img {
  max-width: 100%;
}

.g-banner-hojokin-popup-btn-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 42px;
  z-index: 2;
  transition: opacity 0.2s;
}
.g-banner-hojokin-popup-btn-close:hover {
  opacity: 0.8;
}

@media (max-width: 999px) {
  .g-banner-hojokin-popup {
    width: 220px;
    bottom: 140px;
    right: 10px;
  }
  .g-banner-hojokin-popup-btn-close {
    top: 4px;
    right: 4px;
    width: 28px;
  }
}/*# sourceMappingURL=top.css.map */