@charset "UTF-8";
/*--------------------------
文字に対して、一括でfont-size、line-height、letter-spacing、font-weightを指定する
line-heightがpxの場合
---------------------------*/
/*--------------------------
文字に対して、一括でfont-size、line-height、letter-spacing、font-weightを指定する
line-heightが％の場合
---------------------------*/
/*--------------------------------
    remの換算
--------------------------------*/
/*--------------------------------
    vwにする
--------------------------------*/
/*--------------------------------
    親要素に対する割合
--------------------------------*/
/*--------------------------------
背景のグラデーション
--------------------------------*/
/*--------------------------------
一次関数
画面幅 1440pxの時は、120pxで、そこからどんどん小さくなり、1000pxの時に20pxになるという実装の際に使える関数。
--------------------------------*/
/*--------------------------------
擬似要素の背景
--------------------------------*/
/*--------------------------------
三角形
--------------------------------*/
/*--------------------------
  フォント読み込み
---------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #012A3F;
}

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

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

/*--------------------------------
リキッドの設定
--------------------------------*/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3888888889vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

.main {
  overflow: hidden;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 70.625rem;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.floating {
  position: fixed;
  right: 0.625rem;
  bottom: 0.625rem;
  z-index: 8000000;
  display: none;
}
@media screen and (min-width: 768px) {
  .floating {
    right: 1.25rem;
    bottom: 1.25rem;
  }
}

.floating__inner {
  position: relative;
}

.floating__close {
  display: block;
  position: absolute;
  right: 0.4375rem;
  top: -1rem;
  width: 0.8125rem;
  height: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .floating__close {
    width: 1rem;
    height: 1rem;
    top: -1.5rem;
  }
}

.floating__link {
  display: block;
  cursor: pointer;
}

.floating__image {
  position: relative;
  width: 8.4375rem;
  height: 8.4375rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0.125rem 0.125rem 1.5625rem #A0D8ED;
          box-shadow: 0.125rem 0.125rem 1.5625rem #A0D8ED;
}
@media screen and (min-width: 768px) {
  .floating__image {
    width: 14.375rem;
    height: 14.375rem;
  }
}

.floating__image:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sec-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sec-title__en {
  background: -webkit-gradient(linear, left top, right top, from(#008fcc), to(#002a40));
  background: linear-gradient(to right, #008fcc 0%, #002a40 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-family: "Mukta", sans-serif;
  font-size: 1rem;
  line-height: 1.6875;
  letter-spacing: 0.05em;
  font-weight: 300;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .sec-title__en {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}

.sec-title__ja {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.4166666667;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .sec-title__ja {
    font-size: 2.5rem;
    line-height: 1.45;
  }
}

.sec-title__ja.grad {
  background: linear-gradient(280deg, #0cc1f6 0%, #333 10.34%, #2e434a 88.67%, #0cc1f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

/*#################################
header
#################################*/
.layout-header {
  position: fixed;
  z-index: 10000000;
  top: 0rem;
  margin-top: 1.25rem;
  left: 0;
  right: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .layout-header {
    margin-top: 1.5rem;
  }
}

.header {
  height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .header {
    height: 5rem;
  }
}

.header__inner {
  padding: 0 1.5625rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50vh;
  border: 1px solid transparent;
}
@media screen and (min-width: 768px) {
  .header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 82.875rem;
    width: 98%;
    margin-inline: auto;
    padding: 0 2.125rem 0 2.5rem;
    gap: clamp(0.625rem, -50 * (100vw - 1280px) / -130 + 60px, 3.75rem);
  }
}

@media screen and (min-width: 768px) {
  .header .header__inner {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-backdrop-filter: blur(30px) brightness(1.18);
            backdrop-filter: blur(30px) brightness(1.18);
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  }
}

.header__logo {
  max-width: 10rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header__logo {
    height: inherit;
    max-width: 11.0625rem;
  }
}

.header__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    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;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 62.3125rem;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 500;
  text-transform: uppercase;
  color: #012A3F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header__nav-item a {
    padding: 0 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .header__nav-item a {
    padding: 0 0.75rem;
  }
}
.header__nav-item a:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__cta-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.625rem, -10 * (100vw - 1280px) / -130 + 20px, 1.25rem);
}

.header__cta-item p:nth-of-type(1) {
  color: #707070;
  font-size: 0.6875rem;
  line-height: 1.38;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.header__cta-item p:nth-of-type(1) span {
  font-size: 0.875rem;
  line-height: 1.64;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.header__cta-item p:nth-of-type(2) {
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  color: #012A3F;
}

.header__cta-item p:nth-of-type(2)::before {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  background-image: url(../img/header-tel.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 0.1875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__cta-item p:nth-of-type(2)::before img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__cta-item.header__nav-item--contact a {
  padding: 0.71875rem 1.875rem;
  position: relative;
  height: initial;
  color: #fff;
  background-color: #FF7733;
  display: inline-block;
  border-radius: 50vh;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__cta-item.header__nav-item--contact a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0.875rem;
  width: 0.5rem;
  height: 0.5rem;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: translate(-25%, -50%) rotate(45deg);
      -ms-transform: translate(-25%, -50%) rotate(45deg);
          transform: translate(-25%, -50%) rotate(45deg);
}
.header__cta-item.header__nav-item--contact a:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 9999999999;
  width: 3.75rem;
  height: inherit;
  background: linear-gradient(-45deg, #022B40 50%, #0ABAF5 100%);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.3125rem;
}

.header__hamburger.is-open {
  background: #E9F1F4;
}

.header__hamburger.is-open span {
  background-color: #012B41;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0.125rem;
  -webkit-transform: translateX(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  -webkit-transform: translateX(-50%) rotate(-45deg);
      -ms-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 5rem 0;
  position: absolute;
  z-index: 90000000;
  top: -1.25rem;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow-y: scroll;
  scrollbar-width: none;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media screen and (min-width: 768px) {
  .header__drawer {
    display: none;
  }
}

.header__drawer-nav {
  padding: 0rem 1.625rem;
}

.header__drawer__logo {
  max-width: 13.125rem;
}

.header__drawer.is-open {
  right: 0;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-list {
  padding-top: 3.4375rem;
  padding-bottom: 3.4375rem;
}

.header__drawer-item a {
  padding: 0.3125rem 0;
  display: block;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0em;
  font-weight: 700;
  color: #012A3F;
  text-align: left;
  text-transform: uppercase;
}

.header__drawer-item.header__drawer-item--download {
  padding-top: 3.4375rem;
}

.header__drawer-item.header__drawer-item--download a {
  padding: initial;
}

.header__drawer-item.header__drawer-item--contact a {
  padding: 0.1875rem 0 0 0;
}

/*#################################
footer
#################################*/
.footer {
  padding: 3.75rem 0rem;
  background-color: #002A40;
}

@media screen and (min-width: 768px) {
  .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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer__logo-wrapper {
  width: 13.375rem;
}
@media screen and (min-width: 768px) {
  .footer__logo-wrapper {
    width: 16.5rem;
  }
}

.footer__logo-section {
  width: 16.5625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer__copyright {
  font-size: 0.625rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: #ffffff;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    line-height: 1.25;
    letter-spacing: 0.03em;
    font-weight: 400;
  }
}

.footer__nav {
  margin-top: 3.40625rem;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    margin-top: -0.46875rem;
    margin-left: 3.75rem;
  }
}

.footer__nav-list {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -ms-grid-rows: (auto)[6];
  grid-template-rows: repeat(6, auto);
}

.footer__nav-list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.footer__nav-list > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}

.footer__nav-list > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.footer__nav-list > *:nth-child(4) {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}

.footer__nav-list > *:nth-child(5) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.footer__nav-list > *:nth-child(6) {
  -ms-grid-row: 6;
  -ms-grid-column: 1;
}

.footer__nav-list > *:nth-child(7) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.footer__nav-list > *:nth-child(8) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}

.footer__nav-list > *:nth-child(9) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}

.footer__nav-list > *:nth-child(10) {
  -ms-grid-row: 4;
  -ms-grid-column: 2;
}

.footer__nav-list > *:nth-child(11) {
  -ms-grid-row: 5;
  -ms-grid-column: 2;
}

.footer__nav-list > *:nth-child(12) {
  -ms-grid-row: 6;
  -ms-grid-column: 2;
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    -webkit-column-gap: 3.75rem;
       -moz-column-gap: 3.75rem;
            column-gap: 3.75rem;
  }
}

.footer__nav-link {
  color: #ffffff;
  display: block;
  padding: 0.34375rem 0rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__nav-link:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .footer__nav-link {
    padding: 0.46875rem 0rem;
    font-size: 0.8125rem;
    line-height: 1.4615384615;
    letter-spacing: 0.03em;
    font-weight: 500;
  }
}

.footer__contact {
  color: #ffffff;
  margin-top: 4.65625rem;
}
@media screen and (min-width: 768px) {
  .footer__contact {
    margin-top: initial;
    margin-left: 10.625rem;
    text-align: right;
  }
}

.footer__contact-text {
  font-size: 0.875rem;
  line-height: 1.645;
  letter-spacing: 0em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .footer__contact-text {
    font-size: 1rem;
    line-height: 1.645;
    letter-spacing: 0em;
    font-weight: 600;
  }
}

.footer__contact-phone {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
  font-family: "Mukta", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 0.625rem;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .footer__contact-phone {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.footer__contact-phone a {
  color: #ffffff;
}

.footer__contact-phone::before {
  content: "";
  content: "";
  position: absolute;
  width: 1.375rem;
  height: 1.375rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.375rem 1.375rem;
  background-image: url(../img/tel-icon.svg);
  position: static;
  margin-right: 0.625rem;
}

.footer__contact-hours {
  margin-top: 0.3125rem;
  font-size: 0.625rem;
  line-height: 1.38;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.footer__contact-hours span {
  font-size: 0.875rem;
  line-height: 1.64;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.js-fuwa {
  -webkit-transform: translateY(120%);
      -ms-transform: translateY(120%);
          transform: translateY(120%);
  display: inline-block;
}

.animation-wrap {
  overflow: hidden;
  display: inline-block;
}

.js-section {
  --translateX: 10%;
  --scale: 1.5;
}

.js-section-center {
  --translateX: 10%;
  --scale: 1.5;
}

/*#################################
アニメーション
#################################*/
.js-bounce {
  opacity: 0;
}

.company_logo {
  position: relative;
}
.company_logo .ttl {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .company_logo .ttl {
    font-size: 1.875rem;
    line-height: 1;
    margin-bottom: 1.625rem;
  }
}
.company_logo .ttl span {
  display: inline-block;
  font-family: "Mukta", sans-serif;
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .company_logo .ttl span {
    font-size: 3.125rem;
  }
}
.company_logo .ttl span.c_blue {
  color: #11A7E5;
}
.company_logo .ttl b {
  font-weight: 700;
  color: #11A7E5;
}
.company_logo .add_ttl {
  text-align: center;
  font-size: 0.8375rem;
  line-height: 2.0895522388;
  letter-spacing: 0em;
  font-weight: 500;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .company_logo .add_ttl {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 0.875rem;
  }
}
.company_logo .bl_loop_inner {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.company_logo .bl_loop_inner .bl_loop_target2,
.company_logo .bl_loop_inner .bl_loop_target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.company_logo .bl_loop_inner .bl_loop_target2 img,
.company_logo .bl_loop_inner .bl_loop_target img {
  max-width: 187.5rem;
  width: auto;
}
.company_logo.mt {
  margin: 5rem 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .company_logo.mt {
    margin: 0;
  }
}

.fv {
  padding-top: 5.625rem;
  overflow: hidden;
  position: relative;
  background: url(../img/kv_sp.png) no-repeat top center/cover;
  --translateX01: -40%;
  --translateX02: -10%;
  padding-bottom: 26.25rem;
  margin-bottom: -4.25rem;
}
@media screen and (min-width: 768px) {
  .fv {
    background: url(../img/kv_bg.png) no-repeat top center/cover;
    padding-top: 8.125rem;
    padding-bottom: 29.6875vw;
    margin-bottom: -6.25vw;
  }
}

.fv__text01 {
  display: inline-block;
  color: #fff;
  font-size: 9.0666666667vw;
}
@media screen and (min-width: 768px) {
  .fv__text01 {
    font-size: 3.4722222222vw;
  }
}

.fv__text02 {
  display: inline-block;
  color: #fff;
  font-size: 9.2vw;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .fv__text02 {
    font-size: 3.4722222222vw;
    line-height: 1.5;
  }
}

.fv__text02-wrap {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .fv__text02-wrap {
    margin-top: -1rem;
  }
}

.fv__text03-wrap {
  display: inline-block;
  margin-top: -1rem;
}

.fv__text03 {
  width: 20.3125rem;
}

/*
.fv::before {
    @include bgimage_double(1402, 1664);
    background-image: url(../img/fv-bg_sp.png);
    top: rem(137);
    left: calc(50% + 3.8125rem);
    transform: translateX(var(--translateX01));
    z-index: -1;

    @include mq('md') {
        @include bgimage(1160.97, 1315.23);
        background-image: url(../img/fv-bg-left.png);
        top: rem(-161);
        left: rem(440);
        // transform: none;

    }
}

.fv::after {
    @include mq('md') {
        transform: translateX(var(--translateX02));
        @include bgimage_double(1360, 1432);
        background-image: url(../img/fv-bg-right.png);
        top: rem(240);
        right: rem(-370);
        z-index: -1;
    }
}
*/
.list_text {
  margin: 0 0 1.375rem;
}
@media screen and (min-width: 768px) {
  .list_text {
    margin: 0 0 2.5rem;
  }
}

.list_text li {
  overflow: hidden;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .list_text li {
    margin-top: 0.625rem;
  }
}
.list_text li span {
  display: inline-block;
  font-size: 3.4666666667vw;
  font-weight: 500;
  position: relative;
  padding-left: 7.2vw;
}
@media screen and (min-width: 768px) {
  .list_text li span {
    font-size: 1.3888888889vw;
    padding-left: 2rem;
  }
}
.list_text li span::before {
  content: "";
  display: block;
  background: url(../img/check.png) no-repeat left center/contain;
  width: 5.3333333333vw;
  height: 5.3333333333vw;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .list_text li span::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.fv__image {
  max-width: 400px;
  width: 90%;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 80.5555555556vw;
    margin-inline: auto;
  }
}

.fv_wrap_lf {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv_wrap_lf {
    width: 34.8611111111vw;
  }
}

.fv__computer {
  /*
  animation-name: upDown;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  */
  width: 100%;
  margin: 1.875rem 0 0;
}
@media screen and (min-width: 768px) {
  .fv__computer {
    width: 37.5vw;
    margin: 0;
  }
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translate(0%, -1.5vw);
            transform: translate(0%, -1.5vw);
  }
  38% {
    -webkit-transform: translate(0%, 1vw);
            transform: translate(0%, 1vw);
  }
  100% {
    -webkit-transform: translate(0%, -1.5vw);
            transform: translate(0%, -1.5vw);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translate(0%, -1.5vw);
            transform: translate(0%, -1.5vw);
  }
  38% {
    -webkit-transform: translate(0%, 1vw);
            transform: translate(0%, 1vw);
  }
  100% {
    -webkit-transform: translate(0%, -1.5vw);
            transform: translate(0%, -1.5vw);
  }
}
@media screen and (min-width: 768px) {
  .fv__cta__col2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 58.125rem;
    width: 100%;
    margin: 0 auto;
    bottom: 14.4444444444vw;
  }
}
.fv__cta__col2.fv__static {
  width: 86%;
  position: absolute;
  left: 50%;
  bottom: 41.3333333333vw;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .fv__cta__col2.fv__static {
    bottom: 18.75vw;
  }
}
.fv__cta__col2._col1 {
  display: block;
}
@media screen and (min-width: 768px) {
  .fv__cta__col2._col1 .fv__cta {
    max-width: 28.75rem;
    margin: 0 auto;
  }
}
.fv__cta__col2._col1 .fv__cta .before_none {
  padding-left: 0;
}
.fv__cta__col2._col1 .fv__cta .before_none::before {
  content: none;
}

.fv__cta:nth-child(2) {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .fv__cta:nth-child(2) {
    margin-top: 0;
  }
}
.fv__cta:nth-child(2) .fv__cta-button {
  color: #FF7733;
  background-color: #fff;
}
.fv__cta:nth-child(2) .fv__cta-button .fv__cta-text {
  padding-left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .fv__cta:nth-child(2) .fv__cta-button .fv__cta-text {
    padding-left: 1.25rem;
  }
}
.fv__cta:nth-child(2) .fv__cta-button .fv__cta-text::before {
  color: #fff;
  background-color: #FF7733;
  left: -1rem;
}
@media screen and (min-width: 768px) {
  .fv__cta:nth-child(2) .fv__cta-button .fv__cta-text::before {
    left: -2.5rem;
  }
}
.fv__cta:nth-child(2) .fv__cta-button::before {
  background-color: #ff7733;
}
.fv__cta .contact-button__icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .fv__cta .contact-button__icon {
    right: 1.625rem;
  }
}

.fv__cta-note {
  font-size: 1rem;
  line-height: 1.0625;
  letter-spacing: 0em;
  font-weight: 500;
  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;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .fv__cta-note {
    font-size: 1.25rem;
    line-height: 1;
  }
}

/*
.fv__cta-note::before {
    content: '';
    display: block;
    width: 1px;
    height: rem(23.77);
    background-color: #022B40;
    transform: rotate(-25deg);

    @include mq('md') {
        margin-top: rem(5);
    }
}

.fv__cta-note::after {
    content: '';
    display: block;
    width: 1px;
    height: rem(23.77);
    background-color: #022B40;
    transform: rotate(25deg);

    @include mq('md') {
        margin-top: rem(5);
    }
}
*/
.fv__cta-button {
  background-color: #FF7733;
  color: #ffffff;
  border-radius: 0.3125rem;
  display: block;
  position: relative;
  width: 100%;
  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;
  padding: 1.375rem 0;
  margin-top: 0.75rem;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border: 1px solid #FF7733;
}
@media screen and (min-width: 768px) {
  .fv__cta-button {
    margin-top: 1.125rem;
    padding: 1.78125rem 0;
  }
}

.fv__cta-text {
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: 0em;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  padding-left: 2.875rem;
}
@media screen and (min-width: 768px) {
  .fv__cta-text {
    font-size: 1.375rem;
    line-height: 1.0454545455;
    padding-left: 1.875rem;
  }
}
.fv__cta-text:before {
  content: "無料";
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 500;
  color: #FF7733;
  background-color: #fff;
  border-radius: 50%;
  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;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .fv__cta-text:before {
    width: 3.125rem;
    height: 3.125rem;
    font-size: 0.9375rem;
    line-height: 0.8666666667;
    left: -1.875rem;
  }
}

.fv__cta-button::before {
  content: "";
  background-color: #fff;
  opacity: 0.1;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.fv__cta-button:hover::before {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.fv__cta-button:hover .fv__cta-text {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.fv__cta-image {
  position: absolute;
  width: 5.625rem;
  height: 4.25rem;
  display: block;
  left: -1.625rem;
  top: -0.375rem;
}
.fv__cta-image img {
  aspect-ratio: 1.3235294118;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .fv__cta-image {
    width: 7.5rem;
    height: 5.75rem;
    display: block;
    top: 50%;
    left: -3.5rem;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .fv__cta-image img {
    aspect-ratio: 1.3043478261;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*#################################
worry
#################################*/
.worry {
  padding-top: 3.75rem;
  position: relative;
  background: url(../img/worry_bg_sp.png) no-repeat top center/cover;
}
@media screen and (min-width: 768px) {
  .worry {
    padding-top: 8.125rem;
    padding-bottom: 6.25vw;
    background: url(../img/worry_bg.png) no-repeat top center/cover;
  }
}
.worry::before {
  content: "";
  display: block;
  background: url(../img/worry_bg_c_sp.png) no-repeat bottom center/cover;
  width: 100%;
  padding-top: 17.6%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .worry::before {
    padding-top: 9.66%;
    background: url(../img/worry_bg_c.png) no-repeat bottom center/cover;
  }
}

.worry__inner {
  text-align: center;
  position: relative;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .worry__inner {
    max-width: 73.75rem;
  }
}

.worry-title {
  display: inline-block;
  font-size: 1.75rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 700;
  border-bottom: 1px solid #707070;
  position: relative;
  padding-bottom: 0.625rem;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .worry-title {
    font-size: 2.8125rem;
    line-height: 1.2888888889;
    padding-bottom: 1rem;
    margin-bottom: 3.75rem;
  }
}
.worry-title::before {
  content: "";
  display: block;
  width: 1px;
  height: 2.5rem;
  background: #707070;
  position: absolute;
  left: 50%;
  bottom: -1.875rem;
  -webkit-transform: translate(-50%, 0) rotate(-25deg);
      -ms-transform: translate(-50%, 0) rotate(-25deg);
          transform: translate(-50%, 0) rotate(-25deg);
}
@media screen and (min-width: 768px) {
  .worry-title::before {
    height: 3.25rem;
    bottom: -2.25rem;
  }
}

.worry-title span {
  display: block;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .worry-title span {
    font-size: 1.25rem;
    line-height: 2.8;
  }
}

/*#################################
solution
#################################*/
.solution {
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .solution {
    padding-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .solution__inner {
    max-width: 65.625rem;
  }
}
.solution__inner .sec-title-img {
  max-width: 73.3333333333vw;
  margin-top: 0.625rem;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .solution__inner .sec-title-img {
    max-width: 44.625rem;
    margin-top: -0.6rem;
    margin-bottom: 1.875rem;
  }
}

.solution_list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .solution_list {
    gap: 1.875rem;
    margin-bottom: 3.75rem;
  }
}
.solution_list li {
  width: 47%;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .solution_list li {
    width: 22.5%;
  }
}
.solution_list li span {
  display: block;
  color: #fff;
  border-radius: 50vh;
  background: #11A7E5;
  padding-left: 4vw;
  font-size: 0.875rem;
  line-height: 2.5714285714;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .solution_list li span {
    padding-left: 1.25rem;
    font-size: 1.0625rem;
    line-height: 2.3529411765;
    letter-spacing: 0.03em;
  }
}
.solution_list li::before {
  content: "";
  display: block;
  background: url(../img/check.png) no-repeat left center/contain;
  width: 4.8vw;
  height: 4.8vw;
  position: absolute;
  top: 50%;
  left: 2.1333333333vw;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .solution_list li::before {
    left: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}

.solution_img {
  width: 82%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .solution_img {
    width: 100%;
  }
}

/*#################################
credit
#################################*/
.credit {
  padding-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .credit {
    padding-top: 2.25rem;
  }
}
.credit::before {
  content: "";
  display: block;
  background: url(../img/credit_bg_c_sp.png) no-repeat center center/cover;
  width: 100%;
  padding-top: 231.33%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .credit::before {
    padding-top: 63.41%;
    background: url(../img/credit_bg.png) no-repeat center center/cover;
  }
}

.credit__inner {
  text-align: center;
  position: relative;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .credit__inner {
    max-width: 68.75rem;
  }
}

.credit-title {
  display: inline-block;
  font-size: 1.75rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 700;
  border-bottom: 1px solid #707070;
  position: relative;
  padding-bottom: 0.625rem;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .credit-title {
    font-size: 2.8125rem;
    line-height: 1.2888888889;
    padding-bottom: 1rem;
    margin-bottom: 1.875rem;
  }
}
.credit-title::before {
  content: "";
  display: block;
  width: 1px;
  height: 2.5rem;
  background: #707070;
  position: absolute;
  left: 50%;
  bottom: -1.875rem;
  -webkit-transform: translate(-50%, 0) rotate(-25deg);
      -ms-transform: translate(-50%, 0) rotate(-25deg);
          transform: translate(-50%, 0) rotate(-25deg);
}
@media screen and (min-width: 768px) {
  .credit-title::before {
    height: 3.25rem;
    bottom: -2.25rem;
  }
}

.credit-title span {
  display: block;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .credit-title span {
    font-size: 1.25rem;
    line-height: 2.8;
  }
}

.credit_img {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .credit_img {
    width: 100%;
  }
}

/*#################################
industry
#################################*/
.industry {
  position: relative;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .industry {
    padding-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .industry__inner {
    max-width: 65.625rem;
  }
}
.industry__inner .sec-title-img {
  max-width: 77.8666666667vw;
  margin-top: 0.625rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .industry__inner .sec-title-img {
    max-width: 27.5625rem;
    margin-bottom: 3.125rem;
  }
}

.industry_list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.625rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .industry_list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 2.125rem;
    margin-bottom: 3.75rem;
  }
}
.industry_list li {
  width: 44%;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .industry_list li {
    width: 25%;
  }
}
.industry_list li span {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.03em;
  font-weight: 700;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .industry_list li span {
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: 0.03em;
    margin-top: 1.25rem;
  }
}

/*#################################
case
#################################*/
.case {
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .case {
    padding-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .case__inner {
    max-width: 65.625rem;
  }
}

.case__title {
  text-align: center;
  font-size: 2.125rem;
  line-height: 1.5294117647;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .case__title {
    font-size: 3rem;
    line-height: 1.4166666667;
    background: -webkit-gradient(linear, left top, right top, from(#0cc1f6), color-stop(10.34%, #333), color-stop(88.67%, #2e434a), to(#0cc1f6));
    background: linear-gradient(90deg, #0cc1f6 0%, #333 10.34%, #2e434a 88.67%, #0cc1f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 3.75rem;
  }
}
.case__title span {
  background: -webkit-gradient(linear, left top, right top, from(#0cc1f6), color-stop(10.34%, #333), color-stop(84%, #2e434a), to(#0cc1f6));
  background: linear-gradient(90deg, #0cc1f6 0%, #333 10.34%, #2e434a 84%, #0cc1f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .case__title span {
    display: inline;
    background: none;
  }
}
.case__title b {
  font-size: 1.75rem;
  line-height: 1.8571428571;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .case__title b {
    font-size: 2.5rem;
    line-height: 1.7;
  }
}

.case_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.125rem 0;
}
@media screen and (min-width: 768px) {
  .case_list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3.25rem 2.25rem;
  }
}
.case_list .case_item {
  width: 100%;
  padding: 3.125rem 1.75rem 2.5rem;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.08);
  background: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .case_list .case_item {
    width: 48%;
    padding: 2.625rem 2.375rem 2.5rem;
    border-radius: 1rem;
  }
}
.case_list .case_item .num {
  display: inline-block;
  color: #fff;
  text-align: center;
  width: 9.375rem;
  background: #11A7E5;
  border-radius: 50vh;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Mukta", sans-serif;
  position: absolute;
  top: -1.125rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  padding: 0.375rem 0;
}
@media screen and (min-width: 768px) {
  .case_list .case_item .num {
    width: 10rem;
    top: -0.9375rem;
    font-size: 1rem;
    line-height: 1;
  }
}
.case_list .case_item .num b {
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .case_list .case_item .num b {
    font-size: 1.5rem;
    line-height: 1;
  }
}
.case_list .case_item h3 {
  text-align: center;
  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;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .case_list .case_item h3 {
    margin-bottom: 1.5rem;
  }
}
.case_list .case_item h3 b {
  font-size: 0.96875rem;
  line-height: 1.6774193548;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .case_list .case_item h3 b {
    font-size: 1.375rem;
    line-height: 1.5454545455;
  }
}
.case_list .case_item h3 b span {
  color: #11A7E5;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .case_list .case_item h3 b span {
    font-size: 1.5rem;
  }
}
.case_list .case_item .text {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0em;
  font-weight: 500;
  margin: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .case_list .case_item .text {
    font-size: 1rem;
    line-height: 1.75;
    margin: 1.625rem 0;
  }
}
.case_list .case_item .text_area {
  border-radius: 0.375rem;
  background: #F4F9FA;
  padding: 1.125rem 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .case_list .case_item .text_area {
    padding: 1rem 1.5rem 1.25rem;
  }
}
.case_list .case_item .text_area span {
  display: inline-block;
  color: #11A7E5;
  font-size: 0.9rem;
  line-height: 2.0833333333;
  letter-spacing: 0em;
  font-weight: 700;
  position: relative;
  padding-left: 6.1333333333vw;
}
@media screen and (min-width: 768px) {
  .case_list .case_item .text_area span {
    font-size: 0.875rem;
    line-height: 0;
    margin-bottom: 1.25rem;
    padding-left: 1.375rem;
  }
}
.case_list .case_item .text_area span::before {
  content: "";
  display: block;
  background: url(../img/check2.png) no-repeat left center/contain;
  width: 4.5333333333vw;
  height: 4.5333333333vw;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .case_list .case_item .text_area span::before {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.case_list .case_item .text_area .tag {
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .case_list .case_item .text_area .tag {
    font-size: 0.925rem;
    line-height: 1.6216216216;
  }
}

/*#################################
reason
#################################*/
.reason {
  padding-top: 5.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .reason {
    padding-top: 11.25rem;
    padding-bottom: 0.625rem;
  }
}
.reason::before {
  content: "";
  display: block;
  background: url(../img/reason_bg_sp.png) no-repeat top center/cover;
  width: 100%;
  padding-top: 256%;
  position: absolute;
  top: -2.875rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .reason::before {
    top: -7.5rem;
    padding-top: 76.81%;
    background: url(../img/reason_bg.png) no-repeat top center/cover;
  }
}

.reason__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .reason__inner {
    max-width: 66.25rem;
  }
}
.reason__inner .sec-title-img {
  max-width: 72.6666666667vw;
  margin-top: 0.625rem;
  margin-bottom: 2.875rem;
}
@media screen and (min-width: 768px) {
  .reason__inner .sec-title-img {
    max-width: 50.6875rem;
    margin-bottom: 4rem;
  }
}

/*#################################
introduction
#################################*/
.introduction {
  padding-top: 2.5rem;
  padding-bottom: 4.25rem;
}
@media screen and (min-width: 768px) {
  .introduction {
    padding-top: 2.5rem;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .introduction__inner {
    max-width: 65.625rem;
  }
}

.introduction__title {
  text-align: center;
  font-size: 2.125rem;
  line-height: 1.5294117647;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .introduction__title {
    font-size: 3rem;
    line-height: 1.4166666667;
    background: linear-gradient(280deg, #0cc1f6 8.4%, #333 10.34%, #2e434a 88.67%, #0cc1f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 2.5rem;
  }
}
.introduction__title span {
  background: -webkit-gradient(linear, left top, right top, from(#0cc1f6), color-stop(10.34%, #333), color-stop(84%, #2e434a), to(#0cc1f6));
  background: linear-gradient(90deg, #0cc1f6 0%, #333 10.34%, #2e434a 84%, #0cc1f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .introduction__title span {
    display: inline;
    background: none;
  }
}
.introduction__title b {
  font-size: 1.75rem;
  line-height: 1.8571428571;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .introduction__title b {
    font-size: 2.5rem;
    line-height: 1.7;
  }
}

.introduction_lead {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .introduction_lead {
    font-size: 1.125rem;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .introduction_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.introduction_list .introduction_item {
  width: 74%;
  margin: 4.5rem auto 0;
  padding: 3.125rem 0 2.5rem;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.08);
  background: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .introduction_list .introduction_item {
    width: calc(100% / 4 - 2rem);
    margin: 4.5rem 0 0;
    padding: 3.125rem 0 2.125rem;
    border-radius: 1rem;
  }
}
.introduction_list .introduction_item .num {
  display: inline-block;
  color: #fff;
  text-align: center;
  width: 9.375rem;
  background: #11A7E5;
  border-radius: 50vh;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Mukta", sans-serif;
  position: absolute;
  top: -1.125rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  padding: 0.375rem 0;
}
@media screen and (min-width: 768px) {
  .introduction_list .introduction_item .num {
    width: 8.125rem;
    top: -0.9375rem;
    font-size: 0.9375rem;
    line-height: 1;
  }
}
.introduction_list .introduction_item .num b {
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .introduction_list .introduction_item .num b {
    font-size: 1.375rem;
    line-height: 1;
  }
}
.introduction_list .introduction_item:nth-of-type(n+2)::after {
  content: "";
  display: block;
  position: absolute;
  top: -3.75rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0) rotate(90deg);
      -ms-transform: translate(-50%, 0) rotate(90deg);
          transform: translate(-50%, 0) rotate(90deg);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1.125rem solid #11A7E5;
  border-right: 0;
}
@media screen and (min-width: 768px) {
  .introduction_list .introduction_item:nth-of-type(n+2)::after {
    top: 50%;
    left: -1.75rem;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    border-top: 0.75rem solid transparent;
    border-bottom: 0.75rem solid transparent;
    border-left: 0.875rem solid #11A7E5;
  }
}
.introduction_list .introduction_item h3 {
  color: #11A7E5;
  text-align: center;
  font-size: 1.375rem;
  line-height: 1.2727272727;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .introduction_list .introduction_item h3 {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
.introduction_list .introduction_item .icon {
  margin: 1.5rem auto;
}
@media screen and (min-width: 768px) {
  .introduction_list .introduction_item .icon {
    margin: 1.875rem auto;
  }
}
.introduction_list .introduction_item .icon img {
  width: auto;
  margin: 0 auto;
}
.introduction_list .introduction_item .icon.h_comn img {
  height: 4.25rem;
}
.introduction_list .introduction_item .icon.h_ireg {
  padding-left: 1.625rem;
}
.introduction_list .introduction_item .icon.h_ireg img {
  height: 4.625rem;
}
.introduction_list .introduction_item .text {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .introduction_list .introduction_item .text {
    font-size: 1rem;
    line-height: 1.625;
  }
}

/*#################################
voise
#################################*/
.voise {
  padding-top: 5.625rem;
  padding-bottom: 5.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .voise {
    padding-top: 11.25rem;
    padding-bottom: 6.25rem;
  }
}
.voise::before {
  content: "";
  display: block;
  background: url(../img/voise_bg_sp.png) no-repeat top center/cover;
  width: 100%;
  padding-top: 256%;
  position: absolute;
  top: -0.625rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .voise::before {
    top: -3.75rem;
    padding-top: 76.83%;
    background: url(../img/voise_bg.png) no-repeat center center/cover;
  }
}

.voise__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .voise__inner {
    max-width: 65.625rem;
  }
}
.voise__inner .note {
  text-align: center;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 500;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .voise__inner .note {
    font-size: 0.9375rem;
    line-height: 2.2666666667;
  }
}

.voise__title {
  text-align: center;
  font-size: 2.125rem;
  line-height: 1.5294117647;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .voise__title {
    font-size: 3rem;
    line-height: 1.4166666667;
    background: -webkit-gradient(linear, left top, right top, from(#0cc1f6), color-stop(10.34%, #333), color-stop(88.67%, #2e434a), to(#0cc1f6));
    background: linear-gradient(90deg, #0cc1f6 0%, #333 10.34%, #2e434a 88.67%, #0cc1f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 3.75rem;
  }
}
.voise__title img {
  display: inline-block;
  width: 2.125rem;
  vertical-align: sub;
}
@media screen and (min-width: 768px) {
  .voise__title img {
    width: 2.9375rem;
  }
}
.voise__title span {
  background: -webkit-gradient(linear, left top, right top, from(#0cc1f6), color-stop(10.34%, #333), color-stop(84%, #2e434a), to(#0cc1f6));
  background: linear-gradient(90deg, #0cc1f6 0%, #333 10.34%, #2e434a 84%, #0cc1f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .voise__title span {
    display: inline;
    background: none;
  }
}
.voise__title b {
  font-size: 1.75rem;
  line-height: 1.8571428571;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .voise__title b {
    font-size: 2.5rem;
    line-height: 1.7;
  }
}

.voise_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.625rem;
}
@media screen and (min-width: 768px) {
  .voise_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.25rem;
  }
}
.voise_list li {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .voise_list li {
    width: 49%;
  }
}

/*#################################
difference
#################################*/
.difference {
  padding-top: 5.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .difference {
    padding-top: 2.5rem;
  }
}

.difference__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .difference__inner {
    max-width: 65.625rem;
  }
}

.difference__title {
  text-align: center;
  font-size: 2.125rem;
  line-height: 1.5294117647;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .difference__title {
    font-size: 3rem;
    line-height: 1.4166666667;
    background: -webkit-gradient(linear, left top, right top, from(#0cc1f6), color-stop(10.34%, #333), color-stop(88.67%, #2e434a), to(#0cc1f6));
    background: linear-gradient(90deg, #0cc1f6 0%, #333 10.34%, #2e434a 88.67%, #0cc1f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 4.25rem;
  }
}
.difference__title img {
  display: inline-block;
  width: 2.125rem;
  vertical-align: sub;
}
@media screen and (min-width: 768px) {
  .difference__title img {
    width: 2.9375rem;
  }
}
.difference__title span {
  background: -webkit-gradient(linear, left top, right top, from(#0cc1f6), color-stop(10.34%, #333), color-stop(84%, #2e434a), to(#0cc1f6));
  background: linear-gradient(90deg, #0cc1f6 0%, #333 10.34%, #2e434a 84%, #0cc1f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .difference__title span {
    display: inline;
    background: none;
  }
}
.difference__title b {
  font-size: 1.75rem;
  line-height: 1.8571428571;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .difference__title b {
    font-size: 2.5rem;
    line-height: 1.7;
  }
}

.table-wrapper table {
  border-collapse: collapse;
  border-spacing: 0;
}
.table-wrapper .p_sec_table_scroll {
  width: 100%;
  padding: 0 1.3020833333vw 7.8125vw 0.78125vw;
  overflow-x: scroll;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table_scroll {
    overflow-x: inherit;
    padding: 0 0;
  }
}
.table-wrapper .p_sec_table_scroll::-webkit-scrollbar {
  background: #F7F7F7;
  height: 1.125rem;
  border-radius: 50vh;
}
.table-wrapper .p_sec_table_scroll::-webkit-scrollbar-thumb {
  background: #E2E2E2;
  border-radius: 50vh;
}
.table-wrapper .p_sec_table-head {
  width: 77.26%;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-head {
    width: 77.2%;
  }
}
.table-wrapper .p_sec_table-head_wrap {
  width: 192.7083333333vw;
  margin: 5.2083333333vw auto 0;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-head_wrap {
    width: 62.5rem;
    margin: 0.625rem auto 0;
  }
}
.table-wrapper .p_sec_table-head th {
  padding: 5.2083333333vw 2.6041666667vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #002A40;
  color: #fff;
  font-size: 4.4270833333vw;
  text-align: center;
  border-radius: 0.25rem 0.25rem 0 0;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-head th {
    font-size: 1.125rem;
    padding: 1.625rem 0.625rem;
  }
}
.table-wrapper .p_sec_table-head th.p_sec_table_first {
  width: 19.1%;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-head th.p_sec_table_first {
    width: 19.1%;
  }
}
.table-wrapper .p_sec_table-head th.p_sec_table_last {
  width: 19.1%;
  border-left: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-head th.p_sec_table_last {
    width: 19.1%;
  }
}
.table-wrapper .p_sec_table-head th.p_sec_table_robot {
  width: 29.4%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-head th.p_sec_table_robot {
    width: 29.4%;
  }
}
.table-wrapper .p_sec_table-head th.p_sec_table_robot div {
  position: absolute;
  left: 0;
  top: -3.90625vw;
  padding: 7.8125vw 0 0;
  width: 100%;
  height: calc(100% + 3.90625vw);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #11A7E5;
  border-radius: 0.25rem 0.25rem 0 0;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-head th.p_sec_table_robot div {
    top: -1rem;
    height: calc(100% + 1rem);
    padding: 1.875rem 0 0 0;
  }
}
.table-wrapper .p_sec_table-head th.p_sec_table_robot div img {
  width: 45.5729166667vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-head th.p_sec_table_robot div img {
    width: 14.125rem;
  }
}
.table-wrapper .p_sec_table-body {
  width: 192.7083333333vw;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body {
    width: 62.5rem;
  }
}
.table-wrapper .p_sec_table-body th, .table-wrapper .p_sec_table-body td {
  padding: 5.2083333333vw 1.5625vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  vertical-align: middle;
  border: 1px solid rgba(0, 42, 64, 0.08);
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body th, .table-wrapper .p_sec_table-body td {
    padding: 1.25rem 0.375rem;
  }
}
.table-wrapper .p_sec_table-body th {
  width: 20%;
  border-left: none;
  background-color: #F7F7F7;
  font-weight: 500;
  font-size: 3.3854166667vw;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body th {
    width: 20%;
    font-size: 1rem;
  }
}
.table-wrapper .p_sec_table-body th span {
  font-size: 2.8645833333vw;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body th span {
    font-size: 0.875rem;
  }
}
.table-wrapper .p_sec_table-body th.add_last {
  border-bottom: 1px solid #F7F7F7;
}
.table-wrapper .p_sec_table-body td {
  text-align: center;
  font-weight: 500;
  font-size: 3.125vw;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body td {
    font-size: 0.875rem;
  }
}
.table-wrapper .p_sec_table-body td:last-of-type {
  border-right: 1px solid rgba(0, 42, 64, 0.08);
}
.table-wrapper .p_sec_table-body td span {
  font-size: 3.2552083333vw;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body td span {
    font-size: 0.9375rem;
  }
}
.table-wrapper .p_sec_table-body td span b {
  font-size: 5.2083333333vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body td span b {
    font-size: 1.5rem;
  }
}
.table-wrapper .p_sec_table-body td.p_sec_table_robot {
  width: 29%;
  background: rgba(17, 167, 229, 0.12);
  border-left: 4px solid #11A7E5;
  border-right: 4px solid #11A7E5;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body td.p_sec_table_robot {
    width: 29%;
  }
}
.table-wrapper .p_sec_table-body td.p_sec_table_robot.last {
  border-bottom: 4px solid #11A7E5;
}
.table-wrapper .p_sec_table-body td.p_sec_table_first {
  width: 19%;
  border-right: 1px solid rgba(0, 42, 64, 0.08);
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body td.p_sec_table_first {
    width: 19%;
  }
}
.table-wrapper .p_sec_table-body td.p_sec_table_last {
  width: 19%;
  border-left: none;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body td.p_sec_table_last {
    width: 19%;
  }
}
.table-wrapper .p_sec_table-body tr:first-of-type th, .table-wrapper .p_sec_table-body tr:first-of-type td {
  border-top: none;
}
/*#################################
cta
#################################*/
.cta {
  padding: 26.6666666667vw 0;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .cta {
    padding: 19.4444444444vw 0;
  }
}
.cta::before {
  content: "";
  display: block;
  background: url(../img/cv_bg_sp.png) no-repeat center center/cover;
  width: 100%;
  padding-top: 160%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .cta::before {
    padding-top: 58.56%;
    background: url(../img/cv_bg.png) no-repeat center center/auto 100%;
  }
}
.cta dl {
  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;
  border-top: 1px solid #002A40;
  border-bottom: 1px solid #002A40;
  padding: 0.75rem 0;
  width: 90%;
  margin: 0 auto 2rem;
}
@media screen and (min-width: 768px) {
  .cta dl {
    max-width: 32.5rem;
    padding: 0.625rem 0;
    margin: 0 auto 2.5rem;
  }
}
.cta dl dt {
  text-align: right;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .cta dl dt {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}
.cta dl dd {
  font-family: "Mukta", sans-serif;
  font-size: 1.375rem;
  line-height: 1.3636363636;
  letter-spacing: 0em;
  font-weight: 700;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .cta dl dd {
    font-size: 1.875rem;
    line-height: 2.4;
    padding-left: 1.25rem;
  }
}
.cta dl dd span {
  font-size: 3.375rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .cta dl dd span {
    font-size: 4.5rem;
    line-height: 1.25;
  }
}

.cta__inner {
  width: 86%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cta__inner {
    width: 100%;
    max-width: 85.375rem;
  }
}

.cta__main-title {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 500;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .cta__main-title {
    font-size: 1.5rem;
    line-height: 1.4583333333;
    margin-bottom: 3.75rem;
  }
}

.contact-button {
  border: 0.125rem solid #ff7733;
  display: block;
  padding: 1.3125rem 1rem 1.3125rem 3.5rem;
  position: relative;
  border-radius: 0.25rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .contact-button {
    padding: 3.125rem 1.25rem 3.125rem 3.75rem;
    border-radius: 0.3125rem;
  }
}

.contact-button::before {
  content: "";
  background-color: #ff7733;
  opacity: 0.05;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.contact-button:hover::before {
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.contact-button:hover .contact-button__text {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact-button:hover .contact-button__title {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact-button--orange {
  background-color: #ff7733;
}

.contact-button--orange::before {
  content: "";
  background-color: #fff;
  opacity: 0.1;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.contact-button--orange:hover::before {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.contact-button__title--orange {
  color: #ffffff;
}

.contact-button__icon {
  width: 1.625rem;
  height: 1.625rem;
  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;
  background-color: #FF8F51;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .contact-button__icon {
    width: 2.125rem;
    height: 2.125rem;
  }
}

.contact-button__icon--orange {
  background-color: #ff8f51;
}

.contact-button__arrow {
  display: inline-block;
  width: 0.375rem;
  height: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .contact-button__arrow {
    width: 0.375rem;
    height: 0.625rem;
  }
}

.contact-button__arrow--orange {
  width: 0.6875rem;
  height: 0.625rem;
}
@media screen and (min-width: 768px) {
  .contact-button__arrow--orange {
    width: 0.75rem;
    height: 0.6875rem;
  }
}

.contact-button__image {
  width: 5.75rem;
  height: 3.53125rem;
  display: block;
  position: absolute;
  top: -1.6875rem;
  right: -0.625rem;
}
.contact-button__image img {
  aspect-ratio: 1.6283185841;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .contact-button__image {
    width: 11.375rem;
    height: 6.78125rem;
    display: block;
    top: -4.0625rem;
    right: 1.5625rem;
  }
  .contact-button__image img {
    aspect-ratio: 1.6774193548;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*#################################
faq
#################################*/
.faq {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-top: 2.5rem;
    padding-bottom: 0.625rem;
  }
}

.faq__title {
  font-size: 2.125rem;
  line-height: 1.5294117647;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .faq__title {
    font-size: 3rem;
    line-height: 1.4166666667;
    margin-bottom: 3.75rem;
  }
}

.faq_accordion__item {
  padding: 0 1.75rem;
  background: #fff;
  border-radius: 1rem;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .faq_accordion__item {
    padding: 0 2.125rem;
    border-radius: 1rem;
  }
}
.faq_accordion__item:nth-of-type(n+2) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .faq_accordion__item:nth-of-type(n+2) {
    margin-top: 1.875rem;
  }
}

.faq_accordion__header {
  padding: 1rem 2.125rem 1.25rem 0;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (min-width: 768px) {
  .faq_accordion__header {
    padding: 2.125rem 0;
  }
}
.faq_accordion__header span {
  display: inline-block;
  color: #11A7E5;
  font-family: "Mukta", sans-serif;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 700;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .faq_accordion__header span {
    font-size: 2.5rem;
    line-height: 0.325;
    margin-right: 1.25rem;
  }
}
.faq_accordion__header p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .faq_accordion__header p {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}
.faq_accordion__header.is-active::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.faq_accordion__header::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 0.125rem;
  background-color: #11A7E5;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq_accordion__header::before {
  content: "";
  display: inline-block;
  width: 0.125rem;
  height: 1.25rem;
  background-color: #11A7E5;
  position: absolute;
  top: 50%;
  right: 0.5625rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .faq_accordion__header::before {
    right: 0.5625rem;
  }
}

.faq_accordion__content {
  overflow: hidden;
  border-top: 1px solid #EBEBEB;
}

.faq_accordion__contentInner {
  padding: 1rem 2.125rem 1.5rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (min-width: 768px) {
  .faq_accordion__contentInner {
    padding: 2.125rem 0 2.125rem 3.375rem;
  }
}
.faq_accordion__contentInner span {
  display: inline-block;
  color: #11A7E5;
  font-family: "Mukta", sans-serif;
  font-size: 1.375rem;
  line-height: 1.3636363636;
  letter-spacing: 0em;
  font-weight: 700;
  margin-right: 0.375rem;
}
@media screen and (min-width: 768px) {
  .faq_accordion__contentInner span {
    font-size: 1.25rem;
    line-height: 0.85;
    margin-right: 0.25rem;
  }
}
.faq_accordion__contentInner p {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .faq_accordion__contentInner p {
    font-size: 0.9375rem;
    line-height: 1.1333333333;
  }
}

/*#################################
contact
#################################*/
.contact {
  padding-top: 2.5rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 3.125rem;
    padding-bottom: 3.75rem;
  }
}

.contact iframe {
  width: 100%;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact iframe {
    margin-top: 2.5rem;
  }
}