@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.25rem;
    line-height: 1.65;
  }
}

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

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

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

.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: 0.625rem;
  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: 80.8125rem;
    margin-inline: auto;
    padding: 0 3.125rem;
    gap: clamp(0.625rem, -50 * (100vw - 1280px) / -130 + 60px, 3.75rem);
  }
}

@media screen and (min-width: 768px) {
  .header.changeColor .header__inner {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
  }
}

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

.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 {
  padding: 0 0.625rem;
  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;
}
.header__nav-item a:hover {
  -webkit-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: #012A3F;
  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: 0.6875rem;
  height: 0.6875rem;
  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 0.625rem;
  position: relative;
  height: initial;
  color: #fff;
  background-color: #FF7733;
  display: inline-block;
  border-radius: 0.25rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__cta-item.header__nav-item--contact a:hover {
  -webkit-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%);
          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);
          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);
          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.875rem;
  max-width: 375px;
}

.header__drawer__logo {
  max-width: 160px;
}

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

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

.header__drawer-list {
  padding-top: 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: #002433;
}

@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: 11.25rem;
}
@media screen and (min-width: 768px) {
  .footer__logo-wrapper {
    width: 15.296875rem;
  }
}

.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: grid;
  grid-auto-flow: column;
  grid-template-columns: auto auto;
  grid-template-rows: repeat(6, auto);
}
@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);
          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%);
          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;
}

.task-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 20.9375rem;
  width: 100%;
  top: 43.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .task-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 29.25rem;
    top: 19.5833333333vw;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}

.task-list__item {
  padding: 0.9375rem 0.625rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .task-list__item {
    font-size: 1.125rem;
    line-height: 1.4444444444;
    letter-spacing: 0.05em;
    font-weight: 500;
    padding: 0.875rem 1.25rem;
  }
}

.task-list__item__caution {
  width: 100%;
  color: #34778F;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 600px) {
  .task-list__item__caution {
    font-size: 2.1333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .task-list__item__caution {
    font-size: 1.0416666667vw;
  }
}
@media screen and (min-width: 1024px) {
  .task-list__item__caution {
    font-size: 0.9765625vw;
  }
}
@media screen and (min-width: 1440px) {
  .task-list__item__caution {
    font-size: 0.6944444444vw;
  }
}

.fv {
  padding-top: 4.75rem;
  overflow: hidden;
  position: relative;
  --translateX01: -40%;
  --translateX02: -10%;
  padding-bottom: 21.875rem;
  margin-bottom: -12.5rem;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-top: 8.75rem;
    padding-bottom: 18.75rem;
    margin-bottom: -18.75rem;
  }
}

.fv__text-container {
  position: absolute;
  top: 17.5rem;
  left: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .fv__text-container {
    top: 3.1944444444vw;
    left: 0;
  }
}

.fv__text01 {
  display: inline-block;
  width: 20.3125rem;
}
@media screen and (min-width: 768px) {
  .fv__text01 {
    width: 21.0416666667vw;
  }
}

.fv__text02 {
  display: inline-block;
  width: 10.1875rem;
}
@media screen and (min-width: 768px) {
  .fv__text02 {
    width: 35.6944444444vw;
  }
}

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

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

.fv__text03 {
  width: 20.3125rem;
}

.fv::before {
  content: "";
  position: absolute;
  width: 43.8125rem;
  height: 52rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 43.8125rem 52rem;
  background-image: url(../img/fv-bg_sp.png);
  top: 8.5625rem;
  left: calc(50% + 3.8125rem);
  -webkit-transform: translateX(var(--translateX01));
          transform: translateX(var(--translateX01));
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .fv::before {
    content: "";
    position: absolute;
    width: 72.560625rem;
    height: 82.201875rem;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 72.560625rem 82.201875rem;
    background-image: url(../img/fv-bg-left.png);
    top: -10.0625rem;
    left: 27.5rem;
  }
}

@media screen and (min-width: 768px) {
  .fv::after {
    -webkit-transform: translateX(var(--translateX02));
            transform: translateX(var(--translateX02));
    content: "";
    position: absolute;
    width: 42.5rem;
    height: 44.75rem;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 42.5rem 44.75rem;
    background-image: url(../img/fv-bg-right.png);
    top: 15rem;
    right: -23.125rem;
    z-index: -1;
  }
}

.fv__image {
  max-width: 400px;
  width: 100%;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__image {
    padding-right: 3.4722222222vw;
    max-width: 75vw;
    margin-inline: auto;
  }
}

.fv__computer {
  width: 12.0625rem;
  height: 10.28125rem;
  display: block;
  position: absolute;
  top: 4rem;
  right: 0;
  -webkit-animation-name: upDown;
          animation-name: upDown;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.fv__computer img {
  aspect-ratio: 1.1732522796;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .fv__computer {
    width: 29.40625rem;
    height: 22.8125rem;
    display: block;
    width: 32.6736111111vw;
    height: 25.3472222222vw;
    top: 11.4583333333vw;
    right: -5.5555555556vw;
  }
  .fv__computer img {
    aspect-ratio: 1.2890410959;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@-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);
  }
}
.fv__cta {
  width: 15.625rem;
  position: absolute;
  top: 30.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .fv__cta {
    width: 22.904375rem;
    bottom: 3.125rem;
  }
}

.fv__cta-note {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0em;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .fv__cta-note {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    letter-spacing: 0em;
    font-weight: 500;
  }
}

.fv__cta-note::before {
  content: "";
  display: block;
  width: 1px;
  height: 1.485625rem;
  background-color: #022B40;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
@media screen and (min-width: 768px) {
  .fv__cta-note::before {
    margin-top: 0.3125rem;
  }
}

.fv__cta-note::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.485625rem;
  background-color: #022B40;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
@media screen and (min-width: 768px) {
  .fv__cta-note::after {
    margin-top: 0.3125rem;
  }
}

.fv__cta-button {
  background-color: #FF7733;
  color: #ffffff;
  border-radius: 0.3125rem;
  display: block;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.15625rem 3.3125rem;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .fv__cta-button {
    margin-top: 1.0625rem;
    padding: 1.46875rem 6.9375rem;
  }
}

.fv__cta-free {
  font-size: 0.5625rem;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  font-weight: 700;
  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: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.625rem;
  height: 1.625rem;
}
@media screen and (min-width: 768px) {
  .fv__cta-free {
    width: 1.8125rem;
    height: 1.8125rem;
    font-size: 0.6875rem;
    line-height: 1.1818181818;
    letter-spacing: 0em;
    font-weight: 700;
    left: 3.1875rem;
  }
}

.fv__cta-text {
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: 0em;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.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;
          transform-origin: right;
  -webkit-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;
          transform-origin: left;
  -webkit-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);
          transform: scale(1.05);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.fv__cta-image {
  position: absolute;
  width: 5.75rem;
  height: 3.5625rem;
  display: block;
  right: -2.8125rem;
  top: -1.11375rem;
}
.fv__cta-image img {
  aspect-ratio: 1.6140350877;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .fv__cta-image {
    width: 7.4375rem;
    height: 4.5rem;
    display: block;
    top: -1.9375rem;
    right: -2.5rem;
  }
  .fv__cta-image img {
    aspect-ratio: 1.6527777778;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

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

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

.worry-title {
  font-size: 1.625rem;
  line-height: 1.5384615385;
  letter-spacing: 0em;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .worry-title {
    font-size: 1.875rem;
    line-height: 1.3333333333;
  }
}

.worry-title span {
  font-size: 1.375rem;
  line-height: 1.3181818182;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .worry-title span {
    font-size: 1.875rem;
    line-height: 1.3333333333;
  }
}

.worry-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .worry-list {
    margin-top: 3.75rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6875rem;
  }
}

.worry-item {
  background-color: #f4f9fa;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 3.90625rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  row-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .worry-item {
    padding: 2.5rem;
    row-gap: 1.25rem;
    grid-template-columns: 1fr 6.125rem;
  }
}

.worry-item-number {
  grid-area: 1/1/2/2;
  padding: 0.0625rem 0.1625rem;
  background-color: #0cc1f6;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: "Mukta", sans-serif;
}
@media screen and (min-width: 768px) {
  .worry-item-number {
    padding: 0.25rem 0.625rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
    letter-spacing: 0.1em;
    font-weight: 600;
  }
}

.worry-item-text {
  grid-area: 2/1/3/2;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .worry-item-text {
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.worry-item-icon {
  grid-area: 1/2/3/3;
}
.worry-item-icon img {
  aspect-ratio: 62.5/50;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .worry-item-icon img {
    aspect-ratio: 100/80;
  }
}

.impact-notice {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .impact-notice {
    margin-top: 5.875rem;
  }
}

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

.impact-notice__header.sp {
  color: #ffffff;
  background-color: #71badf;
  background-image: url(../img/noise-bg.svg);
  background-size: 100vw;
  background-position: center;
  border-radius: 0.25rem;
  text-align: center;
  position: relative;
  padding: 2.5rem 1.875rem;
}
.impact-notice__header.sp::after {
  width: 22px;
  height: 50px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #71badf;
  content: "";
  display: block;
  position: absolute;
  bottom: 0.0625rem;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  background-color: #71badf;
  background-image: url(../img/noise-bg.svg);
  background-size: 100vw;
  background-position: center;
}

.impact-notice__header-text {
  display: inline-block;
  padding: 0.1875rem 1.875rem;
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: 0.03em;
  font-weight: 700;
  background-color: #589fc3;
}
@media screen and (min-width: 768px) {
  .impact-notice__header-text {
    font-size: 1.25rem;
    line-height: 1.45;
    letter-spacing: 0.03em;
    font-weight: 700;
  }
}

.impact-notice__header-message {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 700;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .impact-notice__header-message {
    font-size: 2.125rem;
    line-height: 1.7647058824;
  }
}

.impact-notice__details {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.3125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .impact-notice__details {
    margin-top: 5.8125rem;
    gap: 0.6875rem;
  }
}

.impact-notice__details::before {
  content: none;
}
@media screen and (min-width: 768px) {
  .impact-notice__details::before {
    content: "";
    position: absolute;
    width: 12.0625rem;
    height: 13.375rem;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12.0625rem 13.375rem;
    background-image: url(../img/man.png);
    left: 5rem;
    bottom: 0;
  }
}

.impact-notice__details::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .impact-notice__details::after {
    content: "";
    position: absolute;
    width: 9.415rem;
    height: 15.75rem;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9.415rem 15.75rem;
    background-image: url(../img/woman.png);
    bottom: -2.375rem;
    right: 6.4375rem;
  }
}

.impact-notice__detail-item {
  background-color: #edf1f2;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.03em;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .impact-notice__detail-item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    padding: 0.625rem 0.455625rem;
    font-size: 0.875rem;
    line-height: 2.5;
  }
}

@media screen and (min-width: 768px) {
  .impact-notice__detail-item:nth-of-type(1) {
    padding: 0.625rem 1.25rem;
  }
}

/*#################################
rp
#################################*/
.rp__bg {
  position: relative;
}

.rp__bg-image {
  top: 3.75rem;
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 100vw;
  height: 103.5%;
}
@media screen and (min-width: 768px) {
  .rp__bg-image {
    display: none;
  }
}

.rp__bg::before {
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 3.75rem;
  left: 0;
  right: 0;
  display: block;
  width: 100vw;
  height: 103.5%;
}
@media screen and (min-width: 768px) {
  .rp__bg::before {
    content: "";
    height: 125%;
    top: 5.625rem;
    background-position: top;
    background-image: url(../img/rp-bg.png);
  }
}

.rp {
  padding-top: 7.5rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-bottom: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .rp {
    padding-top: 16.125rem;
  }
}

.rp__computer {
  width: 11rem;
  height: 10.625rem;
  display: block;
  position: absolute;
  top: 3rem;
  right: 0rem;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.rp__computer img {
  aspect-ratio: 1.0352941176;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .rp__computer {
    width: 37.335rem;
    height: 29.663125rem;
    display: block;
    right: calc(50% - 20.625rem);
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    top: 5rem;
  }
  .rp__computer img {
    aspect-ratio: 1.2586334043;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@-webkit-keyframes upDown2 {
  0% {
    -webkit-transform: translate(50%, -1.25vw);
            transform: translate(50%, -1.25vw);
  }
  38% {
    -webkit-transform: translate(50%, 1vw);
            transform: translate(50%, 1vw);
  }
  100% {
    -webkit-transform: translate(50%, -1.25vw);
            transform: translate(50%, -1.25vw);
  }
}

@keyframes upDown2 {
  0% {
    -webkit-transform: translate(50%, -1.25vw);
            transform: translate(50%, -1.25vw);
  }
  38% {
    -webkit-transform: translate(50%, 1vw);
            transform: translate(50%, 1vw);
  }
  100% {
    -webkit-transform: translate(50%, -1.25vw);
            transform: translate(50%, -1.25vw);
  }
}
.rp__title {
  font-size: 2rem;
  line-height: 1.5625;
  letter-spacing: 0.03em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .rp__title {
    font-size: 3.125rem;
    line-height: 1.4;
    letter-spacing: 0.03em;
    font-weight: 700;
  }
}

.rp__title.sp span:nth-of-type(2) {
  display: block;
  margin-top: -0.75rem;
}

.rp__title.sp span:nth-of-type(3) {
  display: block;
  margin-top: -0.25rem;
}

.rp__title-01 {
  background: linear-gradient(280deg, #002a40 83%, #008fcc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
@media screen and (min-width: 768px) {
  .rp__title-01 {
    display: inline-block;
  }
}

.rp__title-02 {
  background: linear-gradient(280deg, #012a3f 14%, #008fcc 22%, #012a3f 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .rp__title-02 {
    display: inline-block;
  }
}

.rp__lead {
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.03em;
  font-weight: 500;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .rp__lead {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.rp__circles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1.875rem;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .rp__circles {
    margin-top: 6.0625rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 1.875rem;
    max-width: 56.4375rem;
    margin-inline: auto;
  }
}

.rp__circle {
  width: calc(50% - 0.65625rem);
}
@media screen and (min-width: 768px) {
  .rp__circle {
    width: calc(33.33333% - 1.25rem);
  }
}

.rp__circle:nth-of-type(3) {
  margin-top: -0.875rem;
}
@media screen and (min-width: 768px) {
  .rp__circle:nth-of-type(3) {
    margin-top: initial;
  }
}

.rp__table-title {
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  font-weight: 500;
  text-align: center;
  padding: 1.375rem 0rem;
  border-top: 4px solid #002940;
  border-bottom: 4px solid #002940;
  position: relative;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .rp__table-title {
    margin-top: 6.25rem;
    max-width: 36.25rem;
    margin-inline: auto;
    padding: 1.625rem 0rem;
    font-size: 1.875rem;
    line-height: 1.4333333333;
    letter-spacing: 0em;
    font-weight: 500;
  }
}
.rp__table-title::after {
  width: 30px;
  height: 13px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #002940;
  content: "";
  display: block;
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}
@media screen and (min-width: 768px) {
  .rp__table-title::after {
    width: 47px;
    height: 20px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: #002940;
    bottom: -0.25rem;
  }
}

.rp__table {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.625rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .rp__table {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3.75rem;
  }
}

.rp__table-image {
  position: relative;
}

.rp__table-num01 {
  position: absolute;
  font-size: min(13.3333333333vw, 68px);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-family: "Mukta", sans-serif;
  z-index: 5;
  top: 15%;
  left: 12%;
}
@media screen and (min-width: 768px) {
  .rp__table-num01 {
    font-size: 5.625rem;
    line-height: 1.062;
    letter-spacing: -0.04em;
    font-weight: 700;
    top: 16.6%;
    left: 13.2%;
  }
}

.rp__table-num02 {
  position: absolute;
  font-size: min(13.3333333333vw, 68px);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-family: "Mukta", sans-serif;
  z-index: 5;
  top: 19%;
  left: 11.7%;
}
@media screen and (min-width: 768px) {
  .rp__table-num02 {
    font-size: 5.625rem;
    line-height: 1.062;
    letter-spacing: -0.04em;
    font-weight: 700;
    top: 19.5%;
    left: 13.7%;
  }
}

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

.cta__inner {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .cta__inner {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 6.25rem;
  }
}

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

.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;
          transform-origin: right top;
  -webkit-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;
          transform-origin: left top;
  -webkit-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);
          transform: scale(1.05);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact-button:hover .contact-button__title {
  -webkit-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;
          transform-origin: right;
  -webkit-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;
          transform-origin: left;
  -webkit-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__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact-button__badge {
  font-size: 0.625rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 700;
  color: #ffffff;
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 50%;
  background-color: #ff7733;
  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: 0.75rem;
  left: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .contact-button__badge {
    font-size: 0.8125rem;
    line-height: 1;
    width: 2.9375rem;
    height: 2.9375rem;
  }
}

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

.contact-button__text {
  color: #ff7733;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  letter-spacing: 0em;
  font-weight: 400;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .contact-button__text {
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}
.contact-button__text::before {
  content: "";
  position: absolute;
  width: 1.4425rem;
  height: 0.511875rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.4425rem 0.511875rem;
  background-image: url(../img/line4-orange.png);
  top: -0.6875rem;
  right: -1rem;
  -webkit-transform: rotate(19deg);
          transform: rotate(19deg);
}
@media screen and (min-width: 768px) {
  .contact-button__text::before {
    content: "";
    position: absolute;
    width: 1.890625rem;
    height: 0.670625rem;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.890625rem 0.670625rem;
    right: -0.625rem;
  }
}

.contact-button__text--orange {
  color: #ffffff;
}
.contact-button__text--orange::before {
  content: "";
  position: absolute;
  width: 1.4425rem;
  height: 0.511875rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.4425rem 0.511875rem;
  background-image: url(../img/line4-white.svg);
  top: -0.6875rem;
  right: -0.3125rem;
  -webkit-transform: rotate(19deg);
          transform: rotate(19deg);
}
@media screen and (min-width: 768px) {
  .contact-button__text--orange::before {
    content: "";
    position: absolute;
    width: 1.890625rem;
    height: 0.670625rem;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.890625rem 0.670625rem;
    right: 0.75rem;
  }
}

.contact-button__title {
  margin-top: 0.1875rem;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  font-weight: 700;
  color: #012A3F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .contact-button__title {
    font-size: 1.5rem;
    line-height: 1.4583333333;
    margin-top: 0rem;
  }
}

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

.contact-button__icon {
  width: 1.875rem;
  height: 1.875rem;
  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: #ffceb5;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .contact-button__icon {
    width: 2.8125rem;
    height: 2.8125rem;
  }
}

.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.4375rem;
    height: 0.8125rem;
  }
}

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

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

/*#################################
feature
#################################*/
.feature {
  padding-top: 3.75rem;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .feature {
    padding-top: 12.3125rem;
  }
}

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

.feature__list {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .feature__list {
    margin-top: 5rem;
  }
}

.feature__item {
  background-color: #e8f2f5;
  padding: 1.875rem 1.25rem 3.125rem;
  margin-right: -20px;
}
@media screen and (min-width: 768px) {
  .feature__item {
    margin-right: initial;
    padding: 3.125rem 5rem;
    display: grid;
    grid-template-columns: 1fr 38.5rem;
  }
}

@media screen and (min-width: 768px) {
  .feature__item + .feature__item {
    margin-top: 1.25rem;
  }
}

.feature__item-header {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .feature__item-header {
    display: block;
  }
}

.feature__item-header--02 {
  grid-template-columns: 3.375rem 1fr;
}

.feature__item-num {
  font-size: 3.125rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 500;
  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;
  font-family: "Mukta", sans-serif;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .feature__item-num {
    font-size: 6.25rem;
    line-height: 0.96;
  }
}

.feature__item-title {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .feature__item-title {
    font-size: 1.75rem;
    line-height: 1.7857142857;
  }
}

.feature__item-image-wrap {
  margin-top: 2rem;
  overflow-x: scroll;
  margin-right: -20px;
}
@media screen and (min-width: 768px) {
  .feature__item-image-wrap {
    margin-right: initial;
    overflow: initial;
    margin-top: initial;
  }
}

.feature__item-image {
  min-width: 31.25rem;
}

.reason {
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .reason {
    padding-top: 8.375rem;
  }
}

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

.reason__table-wrap {
  margin-top: 2.5rem;
  overflow-x: scroll;
  margin-right: -20px;
}
@media screen and (min-width: 768px) {
  .reason__table-wrap {
    margin-top: 4.4375rem;
    overflow: initial;
    margin-right: initial;
  }
}

.reason__table {
  min-width: 33.5625rem;
}

/*#################################
five
#################################*/
.five {
  padding-top: 9.9375rem;
  padding-bottom: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .five {
    padding-top: 8.3125rem;
    padding-bottom: initial;
    max-width: 90rem;
    margin-inline: auto;
  }
}

.five::before {
  content: "";
  position: absolute;
  width: 23.4375rem;
  height: 23.6875rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 23.4375rem 23.6875rem;
  background-image: url(../img/five-bgi.png);
  top: 3.125rem;
  left: calc(50% - 11.71875rem);
  margin-left: -6.25rem;
  z-index: -1;
  -webkit-transform: scale(var(--scale));
          transform: scale(var(--scale));
}
@media screen and (min-width: 768px) {
  .five::before {
    content: "";
    position: absolute;
    top: -11.25rem;
    left: calc((100% - 75rem) / 2);
    margin-left: -18.75rem;
    content: "";
    position: absolute;
    width: 59.40625rem;
    height: 60.09375rem;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 59.40625rem 60.09375rem;
    z-index: -1;
  }
}

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

.five__title {
  color: #ffffff;
}

.five__title-sub {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .five__title-sub {
    font-size: 3.125rem;
    line-height: 1.4;
  }
}

.five__title-main {
  font-size: 1.875rem;
  line-height: 1.3333333333;
  letter-spacing: 0.03em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .five__title-main {
    font-size: 3.125rem;
    line-height: 1.4;
  }
}

.five__body {
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .five__body {
    margin-top: 0rem;
  }
}

.five__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0rem 0.3125rem;
}
@media screen and (min-width: 768px) {
  .five__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.five__item {
  width: calc(50% - 0.15625rem);
  background: linear-gradient(-45deg, #ffffff 0%, #e8f2f5 81%);
  border-radius: 0 0.375rem 0 0.375rem;
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}
@media screen and (min-width: 768px) {
  .five__item {
    width: 100%;
    height: 21.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.five__item:nth-of-type(1) {
  z-index: 1;
}
.five__item:nth-of-type(2) {
  z-index: 2;
}
.five__item:nth-of-type(3) {
  z-index: 3;
}
.five__item:nth-of-type(4) {
  z-index: 4;
}
.five__item:nth-of-type(5) {
  z-index: 5;
}
.five__item:nth-of-type(6) {
  z-index: 6;
}

.five__item:nth-of-type(1) {
  display: contents;
}
@media screen and (min-width: 768px) {
  .five__item:nth-of-type(1) {
    display: block;
    background: transparent;
  }
}

.five__item:nth-of-type(3) {
  margin-top: 4.125rem;
}
@media screen and (min-width: 768px) {
  .five__item:nth-of-type(3) {
    margin-top: initial;
  }
}

.five__item:nth-of-type(4) {
  margin-top: -3.5rem;
}
@media screen and (min-width: 768px) {
  .five__item:nth-of-type(4) {
    margin-top: initial;
  }
}

.five__item:nth-of-type(5) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .five__item:nth-of-type(5) {
    margin-top: initial;
  }
}

.five__item:nth-of-type(6) {
  margin-top: -2.1875rem;
}
@media screen and (min-width: 768px) {
  .five__item:nth-of-type(6) {
    margin-top: initial;
  }
}

.five__number {
  font-size: 0.75rem;
  line-height: 2.1666666667;
  letter-spacing: 0.03em;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  background-color: #002636;
  width: 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;
  color: #ffffff;
}

.five__content {
  padding: 1.5rem 0.9375rem 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .five__content {
    height: 100%;
    padding: 3.125rem 2.5rem;
  }
}

.five__text {
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .five__text {
    font-size: 1.25rem;
    line-height: 1.75;
    letter-spacing: 0.03em;
    font-weight: 500;
  }
}

.five__icon-wrapper {
  position: absolute;
  width: 5.3125rem;
  height: 5.3125rem;
  right: -0.6875rem;
  bottom: -1.25rem;
}
@media screen and (min-width: 768px) {
  .five__icon-wrapper {
    width: 10.875rem;
    height: 10.875rem;
    right: -1.1875rem;
    bottom: -2.75rem;
  }
}

.gradation-bg {
  background: -webkit-gradient(linear, right top, left top, from(#FFFFFF), color-stop(57%, #EBF4F7));
  background: linear-gradient(to left, #FFFFFF 0%, #EBF4F7 57%);
  margin-top: 2.5rem;
  padding-top: 3.75rem;
  padding-bottom: 5.5625rem;
}
@media screen and (min-width: 768px) {
  .gradation-bg {
    margin-top: 7.4375rem;
    margin-bottom: 8.4375rem;
    padding-top: 6.3125rem;
    padding-bottom: 10.125rem;
  }
}

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

.voice__inner {
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .voice__inner {
    max-width: 90rem;
    padding: initial;
  }
}

.voice-sample {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .voice-sample {
    margin-top: 4.1875rem;
  }
}

.swiper {
  z-index: 2;
}

.voice-sample__item {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(30px);
  border-radius: 0.375rem;
  min-height: 22.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .voice-sample__item {
    padding: 2.5rem 2.5rem 1.875rem;
    min-height: 26.25rem;
  }
}

.voice-sample__title {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .voice-sample__title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.voice-sample__text {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .voice-sample__text {
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }
}

.voice-sample__link {
  color: #0CC1F6;
}

.voice-sample__profile {
  display: grid;
  grid-template-columns: 3.125rem 1fr;
  gap: 1.25rem;
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .voice-sample__profile {
    width: calc(100% - 5rem);
    grid-template-columns: 3.75rem 1fr;
    bottom: 1.875rem;
  }
}

.voice-sample__img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.voice-sample__name {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 400;
}

.service-swiper .swiper-pagination {
  bottom: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .service-swiper .swiper-pagination {
    bottom: 7.5rem;
  }
}

.service-swiper .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #333;
  background: #fff9ee;
}

.service-swiper__button-wrap {
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 1.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .service-swiper__button-wrap {
    margin-top: 4.375rem;
    max-width: 67.5rem;
    margin-inline: auto;
  }
}

.service-swiper__button-wrap .swiper-button-prev,
.service-swiper__button-wrap .swiper-button-next {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #002536;
  border-radius: 0.375rem;
  left: 0;
  right: 0;
}
.service-swiper__button-wrap .swiper-button-next {
  margin-left: 0.25rem;
}

.service-swiper__button-wrap .swiper-button-prev::before,
.service-swiper__button-wrap .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8125rem;
  height: 0.8125rem;
  border-top: 0.09375rem solid #fff;
  border-right: 0.09375rem solid #fff;
}
@media screen and (min-width: 768px) {
  .service-swiper__button-wrap .swiper-button-prev::before,
  .service-swiper__button-wrap .swiper-button-next::before {
    width: 0.8125rem;
    height: 0.8125rem;
  }
}

.service-swiper__button-wrap .swiper-button-prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}

.service-swiper__button-wrap .swiper-button-next::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

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

.works::before {
  content: "";
  position: absolute;
  width: 23.4375rem;
  height: 44.75rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 23.4375rem 44.75rem;
  background-image: url(../img/solution-bg_sp.png);
  top: -14.375rem;
  left: 56%;
  -webkit-transform: scale(var(--scale)) translateX(-50%);
          transform: scale(var(--scale)) translateX(-50%);
}
@media screen and (min-width: 768px) {
  .works::before {
    content: "";
    position: absolute;
    width: 52.9525rem;
    height: 50.929375rem;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 52.9525rem 50.929375rem;
    background-image: url(../img/solution-bg.png);
    top: -15.625rem;
    left: 50%;
  }
}

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

.works__title {
  text-align: center;
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.works__title-sub {
  font-size: 1.5rem;
  line-height: 1.33;
  letter-spacing: 0.08em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .works__title-sub {
    font-size: 2.5rem;
    line-height: 1.43;
    letter-spacing: 0.08em;
    font-weight: 400;
  }
}

.works__title-main {
  font-size: 2rem;
  line-height: 1.33;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .works__title-main {
    font-size: 3.125rem;
    line-height: 1.43;
  }
}

.work-list {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .work-list {
    margin-top: 5.0625rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5.875rem;
    gap: clamp(25px, -69 * (100vw - 1440px) / -540 + 94px, 94px);
  }
}

.case-study {
  background: rgba(255, 255, 255, 0.7);
  padding: 0.625rem;
  position: relative;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .case-study {
    padding: 1.25rem;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
}

.case-study__image {
  aspect-ratio: 315/180;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .case-study__image {
    aspect-ratio: 466/233;
  }
}

.case-study__content {
  margin-top: 1.875rem;
}

.case-study__headline {
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.03em;
  font-weight: 700;
  padding: 0rem 0.3125rem;
}
@media screen and (min-width: 768px) {
  .case-study__headline {
    padding: 0rem 1.25rem;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.case-study__company {
  display: grid;
  gap: 1.25rem;
  padding: 0rem 0.3125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .case-study__company {
    padding: 0rem 1.25rem;
    margin-top: 0.625rem;
  }
}

.case-study__company-info {
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .case-study__company-info {
    margin-top: initial;
  }
}

.case-study__company-name {
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0.03em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .case-study__company-name {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.case-study__person {
  font-size: 0.75rem;
  line-height: 2.9166666667;
  letter-spacing: 0.03em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .case-study__person {
    font-size: 0.8125rem;
    line-height: 2.6923076923;
  }
}

.case-study__status {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background-color: #f8f8f8;
}

.case-study__status-title {
  font-size: 0.8125rem;
  line-height: 2.3076923077;
  letter-spacing: 0em;
  font-weight: 400;
  padding: 0rem 0.625rem;
  background-color: #002536;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .case-study__status-title {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.case-study__status-list {
  margin-top: 0.625rem;
  list-style-type: disc;
  margin-left: 1.3em;
}
@media screen and (min-width: 768px) {
  .case-study__status-list {
    margin-top: 1.25rem;
  }
}

.case-study__status-item {
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.case-study__status-item + .case-study__status-item {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .case-study__status-item + .case-study__status-item {
    margin-top: 1.25rem;
  }
}

.case-study__effect {
  background-color: #fff5f3;
  padding: 1.25rem;
  margin-top: 1.25rem;
  position: relative;
}

.case-study__effect::before {
  width: 70px;
  height: 16px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: transparent;
  content: "";
  display: block;
  background-color: #d7d8d8;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}

.case-study__effect-title {
  font-size: 0.8125rem;
  line-height: 2.3076923077;
  letter-spacing: 0em;
  font-weight: 400;
  padding: 0rem 0.625rem;
  background-color: #ff7733;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .case-study__effect-title {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.case-study__effect-item {
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  font-weight: 500;
  color: #FF7733;
}
@media screen and (min-width: 768px) {
  .case-study__effect-item {
    margin-top: 1.25rem;
    font-size: 0.75rem;
    line-height: 2;
    letter-spacing: 0em;
    font-weight: 500;
  }
}

.case-study__icon {
  background-image: url(../img/check.svg);
  background-size: contain;
  width: 1.125rem;
  height: 1.125rem;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.3em;
}

.case-study__effect-item--alert {
  color: #ff7733;
}

/*#################################
price
#################################*/
.price {
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .price {
    background-image: url(../img/price-head.jpg);
    background-size: cover;
    background-position: center;
    padding: 4.3125rem 0rem 6.25rem;
  }
}

.price::before {
  content: "";
  display: block;
  width: 100vw;
  height: 17.5rem;
  background-image: url(../img/price-head_sp.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .price::before {
    content: none;
  }
}

.price__bg {
  background: linear-gradient(45deg, #49a8df 0%, #a0d7ed 100%);
  padding: 2.5rem 1.25rem;
  margin-inline: 0.625rem;
  margin-top: -2.4375rem;
}
@media screen and (min-width: 768px) {
  .price__bg {
    margin-top: initial;
    max-width: 67.5rem;
    margin-inline: auto;
    padding: 3.75rem 5.53125rem 2.5rem;
  }
}

.price__inner {
  padding: 0;
}

.price__main-title {
  color: #ffffff;
}

.price__content {
  background-color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 11.25rem);
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .price__content {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    padding: 3.75rem 0rem;
  }
}

.price__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .price__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
  }
}

.price__item + .price__item {
  border-top: 1px solid #c9e7f0;
}
@media screen and (min-width: 768px) {
  .price__item + .price__item {
    border-top: initial;
    border-left: 1px solid #c9e7f0;
  }
}

.price__item-header {
  background: -webkit-gradient(linear, left top, right top, from(#0cc1f6), to(#149de1));
  background: linear-gradient(90deg, #0cc1f6 0%, #149de1 100%);
  text-align: center;
  width: 8.6875rem;
  padding: 0.46875rem 0rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 700;
  -webkit-clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
}
@media screen and (min-width: 768px) {
  .price__item-header {
    margin-inline: auto;
  }
}

.price__item-body {
  margin-top: 0.625rem;
  font-family: "Mukta", sans-serif;
}

.price__item-label {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#0cc1f6), to(#1595dc));
  background: linear-gradient(90deg, #0cc1f6 0%, #1595dc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.price__item-value {
  background: -webkit-gradient(linear, left top, right top, from(#0cc1f6), to(#1595dc));
  background: linear-gradient(90deg, #0cc1f6 0%, #1595dc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .price__item-value {
    font-size: 5.625rem;
    line-height: 1;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .price__item:nth-of-type(1) .price__item-value {
    margin-top: -0.625rem;
  }
}

.price__item:nth-of-type(2) .price__item-value {
  font-size: 4.375rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .price__item:nth-of-type(2) .price__item-value {
    font-size: 7.5rem;
    line-height: 1;
    margin-top: -0.625rem;
  }
}

.price__item:nth-of-type(3) .price__item-value {
  font-size: 2.5rem;
  line-height: 1.75;
  letter-spacing: -0.1em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price__item:nth-of-type(3) .price__item-value {
    font-size: 4.375rem;
    line-height: 1;
  }
}

.price__item-unit {
  font-size: 1.875rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 700;
}

.price__item-dot {
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.price__note {
  font-size: 0.625rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 500;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .price__note {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    font-size: 0.75rem;
    line-height: 1.25;
  }
}

/*#################################
support
#################################*/
.support {
  padding-top: 3.75rem;
  position: relative;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .support {
    padding-top: 7.5rem;
    padding-bottom: 6.25rem;
    max-width: 90rem;
    margin-inline: auto;
  }
}

.support::before {
  content: none;
  content: "";
  position: absolute;
  width: 23.4375rem;
  height: 35.78125rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 23.4375rem 35.78125rem;
  background-image: url(../img/support-bg_sp.png);
  top: -9.375rem;
  left: 0%;
  z-index: -1;
  -webkit-transform: scale(var(--scale));
          transform: scale(var(--scale));
}
@media screen and (min-width: 768px) {
  .support::before {
    content: "";
    position: absolute;
    width: 46.65625rem;
    height: 54.96875rem;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 46.65625rem 54.96875rem;
    background-image: url(../img/support-bgi.png);
    top: -15.625rem;
    content: "";
    position: absolute;
    top: -16.25rem;
    left: calc((100% - 75rem) / 2);
    margin-left: -15rem;
    content: "";
    position: absolute;
    width: 53.96875rem;
    height: 54.59375rem;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 53.96875rem 54.59375rem;
    z-index: -1;
  }
}

@media screen and (min-width: 768px) {
  .support__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8.75rem;
    padding-right: 4.25rem;
  }
}

.support__intro {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .support__intro {
    max-width: 19.6875rem;
    width: 100%;
  }
}

.support__title-area {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.support__title {
  color: #ffffff;
}

.support__title::before {
  content: "＋";
  display: inline-block;
  color: #ffffff;
  -webkit-text-stroke: 0.4375rem #ffffff;
  text-stroke: 1px #ffffff;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .support__title::before {
    font-size: 3.125rem;
    line-height: 0.8;
    letter-spacing: 0em;
    font-weight: 700;
    -webkit-text-stroke: 0.625rem #ffffff;
  }
}

.support__description {
  margin-top: 1.875rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .support__description {
    margin-top: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.6666666667;
    letter-spacing: 0.03em;
    font-weight: 500;
  }
}

.support__list {
  margin-top: 2.5rem;
  gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .support__list {
    margin-top: initial;
    max-width: 34.875rem;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.support__item {
  background-color: #fff;
  border: 1px solid #1499de;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.25rem;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .support__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1.875rem;
    padding: 1.25rem 1.1875rem;
  }
}

.support__item-icon {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .support__item-icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.support__item:nth-of-type(1) .support__item-icon {
  aspect-ratio: 50/62.38;
  width: 3.125rem;
}
@media screen and (min-width: 768px) {
  .support__item:nth-of-type(1) .support__item-icon {
    aspect-ratio: 70/87.33;
    width: 4.375rem;
  }
}

.support__item:nth-of-type(2) .support__item-icon {
  aspect-ratio: 1/1;
  width: 3.75rem;
}
@media screen and (min-width: 768px) {
  .support__item:nth-of-type(2) .support__item-icon {
    width: 5.3125rem;
  }
}

.support__item-text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .support__item-text {
    margin-top: initial;
  }
}

.support__item:nth-of-type(2) .support__item-text {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .support__item:nth-of-type(2) .support__item-text {
    margin-top: initial;
  }
}

.support__item-title {
  color: #1499de;
  font-size: 1.375rem;
  line-height: 1.3636363636;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.support__item-description {
  margin-top: 0.3125rem;
  font-size: 0.8125rem;
  line-height: 1.7692307692;
  letter-spacing: 0em;
  font-weight: 500;
}

/*#################################
faq
#################################*/
.faq {
  padding: 3.75rem 0rem;
  background-color: #f4f9fa;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 6.25rem 0rem;
    margin-top: 10rem;
  }
}

.faq__tabs {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 3.625rem 3.625rem;
  gap: 0.375rem 0.4375rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .faq__tabs {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 3.6875rem;
    margin-bottom: 3.6875rem;
    grid-template-rows: initial;
  }
}

.faq__tab {
  background-color: #002636;
  color: #ffffff;
  font-size: 0.8125rem;
  line-height: 1.4615384615;
  letter-spacing: 0em;
  font-weight: 500;
  padding: 0.625rem 1.21875rem;
  display: grid;
  grid-template-columns: 1fr 1.5625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .faq__tab {
    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;
  }
}

.faq__tab::after {
  content: "";
  display: inline-block;
  background-image: url(../img/tab-arrow.png);
  background-size: contain;
  width: 2.1875rem;
  height: 2.125rem;
}
@media screen and (min-width: 768px) {
  .faq__tab::after {
    margin-top: 0.125rem;
  }
}

.faq__tab.active {
  background-color: #1499DE;
}

.faq__item {
  padding: 1.25rem 0.625rem;
  background-color: #fff;
  display: grid;
  grid-template-columns: 1.4375rem 1fr;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .faq__item {
    padding: 2.5rem 3.125rem;
    grid-template-columns: 3.125rem 1fr;
    gap: 0;
  }
}

.faq__item + .faq__item {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .faq__item + .faq__item {
    margin-top: 1.25rem;
  }
}

.faq__question {
  color: #1499DE;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: -0.03em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .faq__question {
    font-size: 1.25rem;
    line-height: 1.45;
  }
}

.faq__icon {
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Mukta", sans-serif;
  color: #1499DE;
}
@media screen and (min-width: 768px) {
  .faq__icon {
    font-size: 3.125rem;
    line-height: 1;
    margin-top: -0.625rem;
  }
}

.faq__answer {
  font-size: 0.8125rem;
  line-height: 1.6153846154;
  letter-spacing: 0em;
  font-weight: 400;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .faq__answer {
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }
}

.contact {
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 4.125rem;
  }
}

.contact iframe {
  margin-top: 1.5rem;
  height: 1320px !important;
}
@media screen and (min-width: 768px) {
  .contact iframe {
    margin-top: 2.5rem;
    height: 1000px !important;
  }
}

/*#################################
service
#################################*/
.related-service {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), color-stop(30%, #A9DEF3));
  background: linear-gradient(to bottom, #FFFFFF 0%, #A9DEF3 30%);
  padding: 3.75rem 0rem;
}
@media screen and (min-width: 768px) {
  .related-service {
    background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#A9DEF3));
    background: linear-gradient(to bottom, #FFFFFF 0%, #A9DEF3 100%);
  }
}

.related-service__list {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .related-service__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-service__list li {
  overflow: hidden;
  position: relative;
  display: block;
  background-color: #fff;
}

.related-service__list li::before {
  content: "";
  display: block;
  width: 140%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(46%, #CBF2FF), to(#45A3DE));
  background: linear-gradient(to bottom, #CBF2FF 46%, #45A3DE 100%);
  position: absolute;
  top: 0;
  left: -170%;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  pointer-events: none;
}

.related-service__list li:hover::before {
  left: 0%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.related-service__content {
  background-color: #fff;
  padding: 2.5rem 3.125rem;
  position: relative;
  display: block;
}
@media screen and (min-width: 768px) {
  .related-service__content {
    padding: 5rem 3.0625rem;
  }
}

.related-service__list li + li {
  border-top: 1px solid #55AFE2;
}
@media screen and (min-width: 768px) {
  .related-service__list li + li {
    border-top: none;
    border-left: 1px solid #55AFE2;
  }
}

.related-service__tag {
  font-size: 0.9375rem;
  line-height: 2.6;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#0CBBF3), to(#1499DF));
  background: linear-gradient(to right, #0CBBF3 0%, #1499DF 100%);
  min-width: 91.914893617%;
  padding: 0rem 0.75rem;
  text-align: center;
  border-radius: 0.3125rem;
  width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.related-service__tag-image {
  margin-inline: auto;
  z-index: 2;
  position: relative;
}

.related-service__list li:nth-of-type(1) .related-service__tag-image {
  width: 13.5rem;
  height: 3.1875rem;
}

.related-service__list li:nth-of-type(2) .related-service__tag-image {
  width: 13.5rem;
  height: 3.1875rem;
}

.related-service__list li:nth-of-type(3) .related-service__tag-image {
  width: 14.0625rem;
  height: 3.1875rem;
}

.related-service__tag::before {
  width: 22px;
  height: 15px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#0CBBF3), to(#1499DF));
  background: linear-gradient(to right, #0CBBF3 0%, #1499DF 100%);
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 2px;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  z-index: -1;
}

.related-service__info {
  margin-top: 1.5625rem;
  z-index: 2;
  position: relative;
}

.related-service__category {
  font-size: 1rem;
  line-height: 2.1875;
  letter-spacing: 0.03em;
  font-weight: 500;
  text-align: center;
  color: #012A3F;
}

.related-service__logo {
  width: 12.5rem;
  margin-inline: auto;
}

.related-service__description {
  margin-top: 1.875rem;
  font-size: 0.8125rem;
  line-height: 1.6923076923;
  letter-spacing: 0em;
  font-weight: 500;
  color: #012A3F;
}

.related-service__btn-wrapper {
  text-align: center;
  z-index: 2;
  position: relative;
}

.related-service__btn {
  margin-top: 1.875rem;
  padding: 0.625rem 2.5rem;
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  letter-spacing: 0em;
  font-weight: 700;
  background-color: #fff;
  border-radius: 0.25rem;
  display: inline-block;
  margin-inline: auto;
  color: #012A3F;
  border: 1px solid #012A3F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.related-service__list li:hover .related-service__btn {
  background-color: #002131;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}