@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.875rem;
  }
}
.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: 1.125rem;
  line-height: 1.5555555556;
  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 .img_box {
  width: 90%;
  margin: 1.75rem auto 0.625rem;
}
@media screen and (min-width: 768px) {
  .company_logo .img_box {
    max-width: 36.375rem;
    width: 100%;
    margin: 0 auto 1.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/100% 100%;
  --translateX01: -40%;
  --translateX02: -10%;
  padding-bottom: 13.25rem;
  margin-bottom: -8.625rem;
}
@media screen and (min-width: 768px) {
  .fv {
    background: url(../img/kv_bg.png) no-repeat top center/100% 100%;
    padding-top: 9.375rem;
    padding-bottom: 14.2708333333vw;
    margin-bottom: -13.2291666667vw;
  }
}

@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
  .animation-wrap.fv__text03-wrap.only-sp {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .only-pc {
    display: contents;
  }
  .animation-wrap.fv__text03-wrap.only-sp {
    display: none;
  }
}

.fv__text01 {
  display: inline-block;
  color: #fff;
  font-size: 5.8666666667vw;
  font-size: clamp(1.5625rem, 6.6666vw, 3.25rem);
  font-size: clamp(1.5625rem, 3.6666vw, 3.25rem);
}
@media screen and (min-width: 768px) {
  .fv__text01 {
    font-size: 2.6388888889vw;
    font-size: clamp(1.5625rem, 3.3333vw, 3rem);
  }
}

.fv__text01 b {
  font-size: 8vw;
  font-size: clamp(1.5625rem, 3.6666vw, 3.25rem);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .fv__text01 b {
    font-size: 2.6388888889vw;
    font-size: clamp(1.0625rem, 2.5vw, 2.25rem);
    font-weight: 600;
  }
}

.fv__text02,
.fv__text03 {
  display: inline-block;
  color: #fff;
  font-size: 9.6vw;
  font-size: clamp(2.25rem, 9.7333vw, 4.6875rem);
  font-size: clamp(2.9375rem, 6.5641vw, 6.0625rem);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .fv__text02,
  .fv__text03 {
    font-size: 3.8888888889vw;
    font-size: clamp(1.688rem, 3.4722vw, 3.125rem);
    font-size: clamp(2rem, 4.2857vw, 3.75rem);
    line-height: 1.5;
  }
}

.fv__text02 b {
  font-size: clamp(1.5625rem, 3.6666vw, 3.25rem);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .fv__text02 b {
    font-size: clamp(1.25rem, 2.6388888889vw, 2.375rem);
    font-size: clamp(1.5625rem, 3.333333vw, 3rem);
    font-weight: 600;
  }
}

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

.fv__text03-wrap {
  display: inline-block;
}

.fv__text03 {
  width: 20.3125rem;
}

.list_text {
  margin: 1.25rem 0 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  column-gap: 3rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .list_text {
    margin: 0.75rem 0 1.25rem;
    display: flex;
    flex-direction: row;
    column-gap: 3rem;
    color: #fff;
  }
}

.list_text li {
  overflow: hidden;
  text-align: center;
}
.list_text li span {
  display: inline-block;
  font-size: 3.8666666667vw;
  font-size: clamp(0.8725rem, 2.4666666667vw, 1.6875rem);
  font-weight: 500;
  position: relative;
  padding-left: 5.2vw;
}
@media screen and (min-width: 768px) {
  .list_text li span {
    font-size: 1.3888888889vw;
    font-size: clamp(0.5625rem, 1.2111111111vw, 1.125rem);
    padding-left: 2rem;
  }
}

.list_text li span::before {
  content: "";
  display: block;
  background: url(../img/check.png) no-repeat left center/contain;
  width: 3.3333333333vw;
  height: 3.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 (max-width: 767px) {
  .fv_wrap_texts {
    display: flex;
    flex-direction: column;
  }
  .fv__image {
    position: relative;
    display: block;
    padding-bottom: 20px;
  }
  .list_img.kv-list_img {
    order: 1;
    margin: 0 auto;
    margin-top: 3vw;
    margin-bottom: 3vw;
  }
  .fv__flex {
    order: 2;
  }
  .list_text {
    order: 3;
  }
  .fv_wrap_lf {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .fv__cta__col2.fv__static {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 14vw;
    width: 100%;
    order: 4;
  }

  .fv__cta.kv-fv__cta {
    width: 100%;
    margin: 0 auto;
  }
  .fv__computer {
    position: absolute;
    top: 27vw;
    right: -1vw;
    width: 75%;
    z-index: 1;
    pointer-events: none;
  }
}

@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: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1280px;
    margin-inline: auto;
  }
}

.list_img.kv-list_img img {
  width: auto;
  margin: 0 auto;
  margin-left: unset;
}

.fv_wrap_lf {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .list_img.kv-list_img img {
    width: 70%;
    margin: 0 auto;
    margin-left: unset;
  }
  .fv_wrap_lf {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8rem;
  }
}
.fv_wrap_lf .fv__flex {
  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;
}
.fv_wrap_lf .fv__flex .badge {
  width: 27.4666666667vw;
}
@media screen and (min-width: 768px) {
  .fv_wrap_lf .fv__flex .badge {
    max-width: 10.4166666667vw;
  }
}

.fv__computer {
  /*
  animation-name: upDown;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  */
  width: 80%;
  margin: 1.875rem 0 0;
}
@media screen and (min-width: 768px) {
  .fv__computer {
    width: 35%;
    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._col1 {
  display: block;
}
.kv-fv__cta {
  max-width: 300px;
  max-height: 79px;
}
.fv__cta__col2._col1 .fv__cta {
  width: 94%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .fv__cta__col2._col1 .fv__cta {
    max-width: 28.75rem;
  }
}
.fv__cta__col2._col1 .fv__cta .fv__cta-button {
  color: #11A7E5;
  background: #fff;
  border: 1px solid #11A7E5;
}
.fv__cta__col2._col1 .fv__cta .fv__cta-button .contact-button__icon {
  background: #11A7E5;
}
.fv__cta__col2._col1 .fv__cta .fv__cta-button .before_none {
  padding-left: 0;
}
.fv__cta__col2._col1 .fv__cta .fv__cta-button .before_none::before {
  content: none;
}
.fv__cta__col2._col1 .fv__cta .fv__cta-button::before {
  background-color: #11A7E5;
}

.fv__cta:nth-child(2) {
  margin-top: 1rem;
}
@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;
}
.kv-fv__cta.fv__cta:nth-child(2) .fv__cta-button {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-left: 16px;
  padding-left: 1.111vw;
}
.fv__cta:nth-child(2) .fv__cta-button .fv__cta-text {
  padding-left: 1.875rem;
}
.kv-fv__cta.fv__cta:nth-child(2) .fv__cta-button .fv__cta-text {
  padding-left: unset;
  color: #331900;
}
@media screen and (min-width: 768px) {
  .kv-fv__cta.fv__cta:nth-child(2) .fv__cta-button {
    display: flex;
    justify-content: space-between;
  }
  .fv__cta:nth-child(2) .fv__cta-button .fv__cta-text {
    padding-left: 1.25rem;
  }
  .kv-fv__cta.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;
}
.kv-fv__cta .fv__cta-note {
  font-weight: normal;
  line-height: 1.5;
  font-size: clamp(0.75rem, 1.5vw, 1.1rem);
}
@media screen and (min-width: 768px) {
  .fv__cta-note {
    font-size: 1.25rem;
    line-height: 1;
  }
  .kv-fv__cta .fv__cta-note {
    font-size: clamp(0.75rem, 0.9722vw, 0.875rem);
    font-weight: normal;
    line-height: 1.5;
  }
}

/*
.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: 1rem 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;
  }
  .kv-fv__cta .fv__cta-button {
    max-height: 79px;
    max-width: 300px;
    display: flex;
    justify-content: space-between;
    padding-left: 36px;
  }
}

.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;
}
.kv-fv__cta .fv__cta-text {
  font-size: clamp( 1.25rem, 2.6075vw, 1.9rem);
  padding-left: unset;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__cta-text {
    font-size: 1.375rem;
    line-height: 1.0454545455;
    padding-left: 1.875rem;
  }
  .kv-fv__cta .fv__cta-text {
    font-size: clamp(0.875rem, 1.5277777778vw, 1.375rem);
  }
}
.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;
}
.kv-fv__cta .fv__cta-text:before {
  content: none;
}
@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%);
  }
  .kv-fv__cta-image {
    top: 40%;
    left: -5.5rem;
  }
  .fv__cta-image img {
    aspect-ratio: 1.3043478261;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*#################################
scene
#################################*/
.scene {
  padding-top: 7.5rem;
  padding-bottom: 6.25rem;
  position: relative;
  background: url(../img/scene_bg_sp.png) no-repeat top center/100% 100%;
}
@media screen and (min-width: 768px) {
  .scene {
    padding-top: 10rem;
    padding-bottom: 10rem;
    background: url(../img/scene_bg.png) no-repeat top center/100% 100%;
  }
}

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

.scene__title {
  text-align: center;
  font-size: 2.125rem;
  line-height: 1.1764705882;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .scene__title {
    font-size: 3.125rem;
    line-height: 1.36;
    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;
  }
}
.scene__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) {
  .scene__title span.sub {
    display: inline;
    background: none;
  }
}
.scene__title b {
  font-size: 1.75rem;
  line-height: 1.8571428571;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .scene__title b {
    font-size: 2.5rem;
    line-height: 1.7;
  }
}

.scene_img {
  width: 100%;
  margin: 0 auto 2.5rem;
}
@media screen and (min-width: 768px) {
  .scene_img {
    max-width: 45rem;
    margin: 0 auto 4.25rem;
  }
}

/*#################################
worry
#################################*/
.worry {
  padding-top: 1.875rem;
  padding-bottom: 18.2291666667vw;
  position: relative;
  background: url(../img/worry_bg_sp.png) no-repeat top center/cover;
}
@media screen and (min-width: 768px) {
  .worry {
    padding-top: 0.625rem;
    padding-bottom: 9.7222222222vw;
    background: url(../img/worry_bg.png) no-repeat top center/cover;
    margin-bottom: -4.1666666667vw;
  }
}
.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: 1.0625rem;
  line-height: 1.7647058824;
  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: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .solution {
    padding-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .solution__inner {
    max-width: 65.625rem;
  }
}
.solution__inner .solution_lead {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0em;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .solution__inner .solution_lead {
    font-size: 1.125rem;
    line-height: 2;
    margin-bottom: 3.75rem;
  }
}
.solution__inner .sec-title-img {
  max-width: 78.2666666667vw;
  margin-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .solution__inner .sec-title-img {
    max-width: 45.8125rem;
    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%;
  }
}

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

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

.system__title {
  text-align: center;
  font-size: 2.125rem;
  line-height: 1.1764705882;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .system__title {
    font-size: 3.125rem;
    line-height: 1.36;
    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: 1.875rem;
  }
}
.system__title._sh {
  font-size: 1.5625rem;
  line-height: 1.6;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .system__title._sh {
    font-size: 2.375rem;
    line-height: 1.7894736842;
  }
}
.system__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) {
  .system__title span {
    display: inline;
    background: none;
  }
}
.system__title b {
  font-size: 1.75rem;
  line-height: 1.8571428571;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .system__title b {
    font-size: 2.5rem;
    line-height: 1.7;
  }
}

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

/*#################################
issues
#################################*/
.issues {
  padding-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .issues {
    padding-top: 2.25rem;
  }
}
.issues::before {
  content: "";
  display: block;
  background: url(../img/issues_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) {
  .issues::before {
    padding-top: 63.41%;
    background: url(../img/issues_bg.png) no-repeat center center/cover;
  }
}

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

.issues__title {
  text-align: center;
  font-size: 2.125rem;
  line-height: 1.4705882353;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .issues__title {
    font-size: 3.125rem;
    line-height: 1.36;
    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;
  }
}
.issues__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) {
  .issues__title span.sub {
    display: inline;
    background: none;
  }
}
.issues__title b {
  font-size: 1.75rem;
  line-height: 1.8571428571;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .issues__title b {
    font-size: 2.5rem;
    line-height: 1.7;
  }
}

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

/*#################################
reason
#################################*/
.reason {
  padding-top: 7.5rem;
  padding-bottom: 3.125rem;
  position: relative;
  background: url(../img/reason_bg_sp.png) no-repeat top center/100% 100%;
  overflow-x: hidden;
  /*
  &::before {
      content: '';
      display: block;
      background: url(../img/reason_bg_sp.png) no-repeat top center / cover;
      width: 100%;
      padding-top: 256%;
      position: absolute;
      top: rem(-46);
      left: 50%;
      transform: translate(-50%, 0);
      @include mq("md") {
          top: rem(-120);
          padding-top: 76.81%;
          background: url(../img/reason_bg.png) no-repeat top center / cover;
      }
  }*/
}
@media screen and (min-width: 768px) {
  .reason {
    padding-top: 10rem;
    padding-bottom: 6.25rem;
    background: url(../img/reason_bg.png) no-repeat top center/100% 100%;
  }
}

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

.reason_img {
  position: relative;
}
.reason_img .speech_bubble {
  width: 66.8vw;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .reason_img .speech_bubble {
    width: 21.8125rem;
    margin: 0 auto;
  }
}
.reason_img .speech_bubble.w_co01 {
  height: 53.8666666667vw;
}
@media screen and (min-width: 768px) {
  .reason_img .speech_bubble.w_co01 {
    height: 19.1875rem;
  }
}
.reason_img .speech_bubble.w_co01 .text_area {
  top: 7.7333333333vw;
}
@media screen and (min-width: 768px) {
  .reason_img .speech_bubble.w_co01 .text_area {
    top: 3.125rem;
  }
}
.reason_img .speech_bubble.w_co02 {
  height: 48.5333333333vw;
}
@media screen and (min-width: 768px) {
  .reason_img .speech_bubble.w_co02 {
    height: 17.125rem;
  }
}
.reason_img .speech_bubble.w_co02 .text_area {
  top: 9.8666666667vw;
}
@media screen and (min-width: 768px) {
  .reason_img .speech_bubble.w_co02 .text_area {
    top: 3.75rem;
  }
}
.reason_img .speech_bubble.top_left {
  top: -1.6vw;
  left: 0;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .reason_img .speech_bubble.top_left {
    top: 0;
  }
}
.reason_img .speech_bubble.top_right {
  top: 0;
  left: 0;
  right: 0;
  bottom: 10.6666666667vw;
  margin: auto 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .reason_img .speech_bubble.top_right {
    top: 0;
    left: auto;
    right: 0;
    bottom: auto;
    margin: 0;
  }
}
.reason_img .speech_bubble.center {
  top: 37.7333333333vw;
  right: -3.2vw;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .reason_img .speech_bubble.center {
    top: 3.625rem;
    left: 0;
    right: 0;
  }
}
.reason_img .speech_bubble.bottom_left {
  right: -3.2vw;
  bottom: 13.125rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .reason_img .speech_bubble.bottom_left {
    left: 7.5rem;
    right: auto;
    bottom: 13rem;
  }
}
.reason_img .speech_bubble.bottom_right {
  bottom: 21.3333333333vw;
}
@media screen and (min-width: 768px) {
  .reason_img .speech_bubble.bottom_right {
    right: 7.5rem;
    bottom: 13rem;
  }
}
.reason_img .speech_bubble .text_area {
  width: 100%;
  position: absolute;
  left: -0.625rem;
  text-align: center;
}
.reason_img .speech_bubble .text_area span {
  display: inline-block;
  color: #11A7E5;
  font-size: 4.2666666667vw;
  font-weight: 700;
  position: relative;
  margin-bottom: 2.6666666667vw;
  padding-left: 7.4666666667vw;
}
@media screen and (min-width: 768px) {
  .reason_img .speech_bubble .text_area span {
    font-size: 1.4375rem;
    line-height: 1.3043478261;
    letter-spacing: 0em;
    margin-bottom: 1.25rem;
    padding-left: 2.625rem;
  }
}
.reason_img .speech_bubble .text_area span::before {
  content: "";
  display: block;
  background: url(../img/check2.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) {
  .reason_img .speech_bubble .text_area span::before {
    width: 2rem;
    height: 2rem;
  }
}
.reason_img .speech_bubble .text_area p {
  font-size: 3.4666666667vw;
  font-weight: 500;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .reason_img .speech_bubble .text_area p {
    font-size: 1.125rem;
    line-height: 1.6666666667;
    letter-spacing: 0em;
    margin-bottom: 1rem;
  }
}
.reason_img .speech_bubble .text_area a {
  font-size: 3.3333333333vw;
  font-weight: 500;
  color: #002A40;
  border-bottom: 1px solid #002A40;
  position: relative;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
@media screen and (min-width: 768px) {
  .reason_img .speech_bubble .text_area a {
    font-size: 1rem;
    line-height: 1.875;
    letter-spacing: 0em;
  }
}
.reason_img .speech_bubble .text_area a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 1.6vw;
  right: -3.2vw;
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  border: 2px solid #002A40;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .reason_img .speech_bubble .text_area a::after {
    top: 0.5625rem;
    right: -0.875rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}
.reason_img .speech_bubble .text_area a:hover {
  opacity: 0.6;
  border-bottom: 0;
}

/*#################################
introduction
#################################*/
.introduction {
  padding-top: 3.125rem;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .introduction {
    padding-top: 3.75rem;
    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;
  }
}

/*#################################
commission
#################################*/
.commission {
  padding-top: 7.5rem;
  padding-bottom: 6.25rem;
  position: relative;
  background: url(../img/commission_bg_sp.png) no-repeat top center/100% 100%;
}
@media screen and (min-width: 768px) {
  .commission {
    padding-top: 10rem;
    padding-bottom: 6.25rem;
    background: url(../img/commission_bg.png) no-repeat top center/100% 100%;
  }
}

.commission__inner .text_area {
  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) {
  .commission__inner .text_area {
    max-width: 35.625rem;
    padding: 0.625rem 0;
    margin: 0 auto 5rem;
  }
}
.commission__inner .text_area p {
  text-align: center;
  font-family: "Mukta", sans-serif;
  font-size: 1.375rem;
  line-height: 1.3636363636;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .commission__inner .text_area p {
    font-size: 1.875rem;
    line-height: 2.4;
  }
}
.commission__inner .text_area p span {
  font-size: 3.375rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #11A7E5;
}
@media screen and (min-width: 768px) {
  .commission__inner .text_area p span {
    font-size: 4.5rem;
    line-height: 1.25;
  }
}
.commission__inner .img_box {
  margin: 0 auto 3.75rem;
}
@media screen and (min-width: 768px) {
  .commission__inner .img_box {
    max-width: 45rem;
    margin: 0 auto 6.25rem;
  }
}

.commission__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) {
  .commission__title {
    font-size: 3rem;
    line-height: 1.4166666667;
    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;
    margin-bottom: 2.5rem;
  }
}
.commission__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) {
  .commission__title span {
    display: inline;
    background: none;
  }
}
.commission__title b {
  font-size: 1.75rem;
  line-height: 1.8571428571;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .commission__title b {
    font-size: 2.5rem;
    line-height: 1.7;
  }
}

/*#################################
difference
#################################*/
.difference {
  padding-top: 2.5rem;
  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.4705882353;
  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 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: 6.25vw 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.625rem 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;
  position: relative;
}
@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 {
  position: relative;
  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::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.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 td.maru_w::before {
  width: 14.3229166667vw;
  height: 14.3229166667vw;
  background: url(../img/maru_w.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body td.maru_w::before {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.table-wrapper .p_sec_table-body td.maru_g::before {
  width: 14.3229166667vw;
  height: 14.3229166667vw;
  background: url(../img/maru_g.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body td.maru_g::before {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.table-wrapper .p_sec_table-body td.sankaku::before {
  width: 16.9270833333vw;
  height: 14.5833333333vw;
  background: url(../img/sankaku.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body td.sankaku::before {
    width: 4.0625rem;
    height: 3.5rem;
  }
}
.table-wrapper .p_sec_table-body td.batsu::before {
  width: 14.5833333333vw;
  height: 2.6041666667vw;
  background: url(../img/batsu.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body td.batsu::before {
    width: 3.5rem;
    height: 0.625rem;
  }
}
.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;
}
/*#################################
voise
#################################*/
.voise {
  padding-top: 3.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .voise {
    padding-top: 10rem;
  }
}

.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%;
  }
}

/*#################################
business
#################################*/
.business {
  padding-top: 7.5rem;
  padding-bottom: 6.25rem;
  position: relative;
  background: url(../img/business_bg_sp.png) no-repeat top center/100% 100%;
}
@media screen and (min-width: 768px) {
  .business {
    padding-top: 10rem;
    padding-bottom: 6.25rem;
    background: url(../img/business_bg.png) no-repeat top center/100% 100%;
  }
}

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

.business__title {
  text-align: center;
  font-size: 2.125rem;
  line-height: 1.1764705882;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .business__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;
  }
}
.business__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) {
  .business__title span {
    display: inline;
    background: none;
  }
}
.business__title b {
  font-size: 1.75rem;
  line-height: 1.8571428571;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .business__title b {
    font-size: 2.5rem;
    line-height: 1.7;
  }
}

.business_list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.625rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .business_list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.875rem;
  }
}
.business_list::after {
  content: "";
  display: block;
  width: 30.6666666667%;
}
@media screen and (min-width: 768px) {
  .business_list::after {
    content: none;
  }
}
.business_list li {
  width: 30.6666666667%;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .business_list li {
    width: 8.75rem;
  }
  .business_list li:first-child {
    margin-left: 0.375rem;
  }
  .business_list li:nth-child(5) {
    margin-right: 0.375rem;
  }
}
.business_list li a {
  display: inline-block;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.business_list li a img {
  border-radius: 50vh;
  -webkit-box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.05);
          box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.05);
}
.business_list li a span {
  display: inline-block;
  color: #012A3F;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
  font-weight: 700;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .business_list li a span {
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: 0.03em;
    margin-top: 1.25rem;
  }
}
.business_list li a:hover {
  opacity: 0.6;
}

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

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

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

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

.function_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem 0;
  margin-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .function_list {
    gap: 1.375rem 0;
    margin-top: 5rem;
  }
}
.function_list .function_item {
  width: calc((100% - 0.875rem) / 2);
  border-radius: 0.625rem;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.08);
  padding: 1.875rem 0;
}
@media screen and (min-width: 768px) {
  .function_list .function_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc((100% - 2.5rem) / 3);
    border-radius: 1rem;
    padding: 2.5rem 1.25rem;
  }
}
.function_list .function_item .img_box img {
  width: 8.5rem;
  height: 3.875rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .function_list .function_item .text_area {
    width: 17.5rem;
    margin-left: 0.625rem;
  }
}
.function_list .function_item .text_area h3 {
  color: #11A7E5;
  font-size: 0.975rem;
  line-height: 3.2051282051;
  letter-spacing: 0em;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .function_list .function_item .text_area h3 {
    text-align: left;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }
}
.function_list .function_item .text_area p {
  text-align: left;
  padding: 0 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .function_list .function_item .text_area p {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
    padding: 0;
  }
}

/*#################################
package
#################################*/
.package {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  position: relative;
  background: url(../img/package_bg_sp.png) no-repeat top center/100% 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .package {
    padding-top: 10rem;
    padding-bottom: 7.5rem;
    background: url(../img/package_bg.png) no-repeat top center/100% 100%;
  }
}

.package__title {
  font-size: 2.0625rem;
  line-height: 1.2121212121;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .package__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: 3rem;
  }
}
.package__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) {
  .package__title span {
    display: inline;
    background: none;
  }
}
.package__title b {
  font-size: 1.75rem;
  line-height: 1.8571428571;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .package__title b {
    font-size: 2.5rem;
    line-height: 1.7;
  }
}

.package_lead {
  font-size: 1.375rem;
  line-height: 1.4545454545;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .package_lead {
    font-size: 1.75rem;
    line-height: 1.2857142857;
    margin-bottom: 2.5rem;
  }
}
.package_lead span {
  display: block;
  font-size: 1rem;
  padding-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .package_lead span {
    font-size: 1.25rem;
    padding-top: 1rem;
  }
}

.package_sub_lead {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0em;
  font-weight: 500;
  margin-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .package_sub_lead {
    font-size: 1.125rem;
    line-height: 2;
    margin-bottom: 3.25rem;
  }
}

.package_plan {
  padding: 2.5rem 1.125rem;
  background: #fff;
  border-radius: 0.625rem;
  -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) {
  .package_plan {
    padding: 2.875rem 0.625rem;
    border-radius: 1rem;
  }
}
.package_plan .img_box {
  margin: 1.875rem auto 0;
}
@media screen and (min-width: 768px) {
  .package_plan .img_box {
    width: 30rem;
    margin: 2.5rem auto 0;
  }
}
.package_plan + .package_plan {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .package_plan + .package_plan {
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .package_plan + .package_plan .img_box {
    width: 51.875rem;
  }
}
.package_plan .ttl_sub {
  color: #11A7E5;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .package_plan .ttl_sub {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}
.package_plan .ttl {
  color: #11A7E5;
  font-size: 1.5625rem;
  line-height: 1.12;
  letter-spacing: 0em;
  font-weight: 700;
  margin: 0.75rem 0 1.75rem;
}
@media screen and (min-width: 768px) {
  .package_plan .ttl {
    font-size: 2rem;
    line-height: 1.0625;
    margin: 0.875rem 0 1.875rem;
  }
}
.package_plan .text {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .package_plan .text {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.precautions {
  text-align: left;
}
.precautions p {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 700;
  margin: 1.875rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .precautions p {
    font-size: 1.0625rem;
    line-height: 1.6470588235;
    margin: 2.5rem 0 0.625rem;
  }
}
.precautions ul li {
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  letter-spacing: 0em;
  font-weight: 500;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .precautions ul li {
    font-size: 0.9375rem;
    line-height: 1.8666666667;
  }
}

/*#################################
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__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: 0.625rem;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-top: 2.5rem;
  }
}

.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.8666666667;
  }
}

/*#################################
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;
  }
}