@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;
  position: relative;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 65.625rem;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.sec_add_title {
  text-align: center;
  font-size: 1.4375rem;
  line-height: 1.3913043478;
  letter-spacing: 0em;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .sec_add_title {
    font-size: 2rem;
    line-height: 1.375;
  }
}
.sec_add_title span {
  color: #0CC1F6;
  font-size: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .sec_add_title span {
    font-size: 2.25rem;
  }
}

.sec_sub_title {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .sec_sub_title {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

.floating {
  position: fixed;
  right: 0.625rem;
  bottom: 0.75rem;
  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.125rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .floating__image {
    width: 10rem;
  }
}

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

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

.fv {
  padding-top: 5rem;
  overflow: hidden;
  position: relative;
  background: url(../img/kv_sp.png) no-repeat top center/contain;
  --translateX01: -40%;
  --translateX02: -10%;
  padding-bottom: 3rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .fv {
    background: url(../img/kv_bg.png) no-repeat top center/contain;
    padding-top: 8.75rem;
    padding-bottom: 13.8888888889vw;
    margin-bottom: -5.5555555556vw;
  }
}
@media screen and (min-width: 1920px) {
  .fv {
    margin-bottom: 0;
  }
}

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

.fv__text02 {
  display: inline-block;
  width: 100%;
}

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

.sub_wrap div {
  overflow: hidden;
}
.sub_wrap div .sub_ttl {
  font-size: 4.8vw;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .sub_wrap div .sub_ttl {
    font-size: 1.6666666667vw;
    font-weight: 500;
  }
}
.sub_wrap div .fukidashi {
  padding: 1.5rem 0 0.625rem;
  margin-inline: 12vw;
}
@media screen and (min-width: 768px) {
  .sub_wrap div .fukidashi {
    padding: 2.5rem 0 0.625rem;
    margin-inline: 5.5555555556vw 0;
  }
}
.sub_wrap div .fukidashi span {
  position: relative;
  display: block;
  padding: 0.625rem 1.875rem;
  outline: 1px solid #002A40;
  outline-offset: 1px;
  background: rgba(255, 255, 255, 0.5);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .sub_wrap div .fukidashi span {
    font-size: 1rem;
  }
}
.sub_wrap div .fukidashi span::before, .sub_wrap div .fukidashi span::after {
  content: "";
  display: block;
  position: absolute;
}
.sub_wrap div .fukidashi span::before {
  top: calc(100% + -0.0625rem);
  left: 50%;
  height: 0.1875rem;
  width: 0.875rem;
  background: #c9eaf6;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 1;
}
.sub_wrap div .fukidashi span::after {
  top: calc(100% + 0.25rem);
  left: 44.8%;
  height: 0.875rem;
  width: 0.875rem;
  border-right: 1px solid #002A40;
  rotate: -40deg;
  z-index: 2;
}

.list_text {
  margin: 0 0 1.375rem;
}
@media screen and (min-width: 768px) {
  .list_text {
    margin: 0 0 2.5rem;
  }
}

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

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

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

.fv__computer {
  width: 90%;
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 768px) {
  .fv__computer {
    width: 31.9444444444vw;
    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__col1 {
    max-width: 28.75rem;
    width: 100%;
    margin: 0 auto;
    bottom: 14.4444444444vw;
  }
}
.fv__cta__col1._col2 .fv__cta .fv__cta-button {
  padding: 0.625rem 0;
}
@media screen and (min-width: 768px) {
  .fv__cta__col1._col2 .fv__cta .fv__cta-button {
    padding: 1rem 0;
  }
}
.fv__cta__col1._col2 .fv__cta .fv__cta-button .text_area {
  display: inline-block;
}
.fv__cta__col1._col2 .fv__cta .fv__cta-button .text_area p {
  text-align: left;
  padding-left: 3.125rem;
}
.fv__cta__col1._col2 .fv__cta .fv__cta-button .text_area p.fv__cta-subtext {
  font-size: 0.725rem;
  line-height: 1.724137931;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .fv__cta__col1._col2 .fv__cta .fv__cta-button .text_area p.fv__cta-text {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}
.fv__cta__col1._col2 .fv__cta .fv__cta-button .fv__cta-image {
  top: -1.25rem;
  left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .fv__cta__col1._col2 .fv__cta .fv__cta-button .fv__cta-image {
    top: -1.4375rem;
    left: 1.25rem;
  }
}
.fv__cta__col1._col2 .fv__cta:nth-child(2) {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .fv__cta__col1._col2 .fv__cta:nth-child(2) {
    margin-top: 1.375rem;
  }
}
.fv__cta__col1._col2 .fv__cta:nth-child(2) .fv__cta-button {
  background-color: #fff;
}
.fv__cta__col1._col2 .fv__cta:nth-child(2) .fv__cta-button .text_area p {
  padding-left: 0;
}
.fv__cta__col1._col2 .fv__cta:nth-child(2) .fv__cta-button .text_area p.fv__cta-subtext {
  color: #FF7733;
}
.fv__cta__col1._col2 .fv__cta:nth-child(2) .fv__cta-button .text_area p.fv__cta-text {
  color: #012A3F;
}
.fv__cta__col1._col2 .fv__cta:nth-child(2) .fv__cta-button::before {
  background-color: #ff7733;
}
.fv__cta__col1.fv__btn {
  width: 88%;
  left: 50%;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .fv__cta__col1.fv__btn {
    max-width: 31.9444444444vw;
    margin: 4.0277777778vw 0 0;
  }
}
.fv__cta__col1.fv__btn .fv__cta .fv__cta-button {
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .fv__cta__col1.fv__btn .fv__cta .fv__cta-button {
    padding: 1.6666666667vw 0;
  }
}
.fv__cta__col1.fv__btn .fv__cta .fv__cta-button .fv__cta-image {
  top: -0.875rem;
  left: -2.375rem;
}
@media screen and (min-width: 768px) {
  .fv__cta__col1.fv__btn .fv__cta .fv__cta-button .fv__cta-image {
    left: -1.5rem;
  }
}
.fv__cta__col1.fv__btn .fv__cta .fv__cta-button .text_area p {
  padding-left: 0;
}
.fv__cta__col1.fv__btn .fv__cta .fv__cta-button .text_area p.fv__cta-text {
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .fv__cta__col1.fv__btn .fv__cta .fv__cta-button .text_area p.fv__cta-text {
    font-size: 1.3194444444vw;
  }
}
.fv__cta__col1.fv__btn .fv__cta:nth-child(2) {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .fv__cta__col1.fv__btn .fv__cta:nth-child(2) {
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .fv__cta__col1.fv__btn .fv__cta .contact-button__icon {
    width: 2.3611111111vw;
    height: 2.3611111111vw;
  }
}

.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: 0.9375rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .fv__cta-note {
    font-size: 1.25rem;
    line-height: 1;
  }
}

.fv__cta-button {
  background-color: #FF7733;
  color: #ffffff;
  border-radius: 0.3125rem;
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  padding: 1.375rem 0;
  margin-top: 0.75rem;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border: 1px solid #FF7733;
}
@media screen and (min-width: 768px) {
  .fv__cta-button {
    margin-top: 1.125rem;
    padding: 1.78125rem 0;
  }
}

.fv__cta-text {
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: 0em;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__cta-text {
    font-size: 1.375rem;
    line-height: 1.0454545455;
  }
}

.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-subtext,
.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: 5rem;
  display: block;
  left: -1.625rem;
  top: -0.625rem;
}
.fv__cta-image img {
  aspect-ratio: 1.125;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .fv__cta-image {
    width: 6.875rem;
    height: 6.125rem;
    display: block;
    top: -0.875rem;
    left: -2.625rem;
  }
  .fv__cta-image img {
    aspect-ratio: 1.1224489796;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*#################################
cta
#################################*/
.cta {
  padding: 2.5rem 0 0;
  margin-bottom: -5.375rem;
}
@media screen and (min-width: 768px) {
  .cta {
    padding: 1.875rem 0 0;
    margin-bottom: -5.375rem;
  }
}
.cta .cta__inner {
  width: 86%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cta .cta__inner {
    width: 100%;
    max-width: 53.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.cta .cta__inner .ambassador {
  width: 100%;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .cta .cta__inner .ambassador {
    width: 20.875rem;
    margin: 0 0;
  }
}

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

/*#################################
about
#################################*/
.about {
  padding: 3.75rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 7.5rem 0 6.25rem;
  }
}
.about .about__inner {
  text-align: center;
}
.about .about__inner .about__title {
  background: -webkit-gradient(linear, left top, right top, from(#0cc1f6), color-stop(10%, #333), color-stop(88.67%, #2e434a), to(#0cc1f6));
  background: linear-gradient(90deg, #0cc1f6 0%, #333 10%, #2e434a 88.67%, #0cc1f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-size: 1.875rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .about .about__inner .about__title {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
}
.about .about__inner .lead {
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0em;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .about .about__inner .lead {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    margin-bottom: 2.25rem;
  }
}

/*#################################
automatic
#################################*/
.automatic {
  position: relative;
  padding: 5.625rem 0;
  background: url(../img/automatic_bg_sp.png) no-repeat center center/100% 100%;
}
@media screen and (min-width: 768px) {
  .automatic {
    padding: 6.25rem 0;
    background: url(../img/automatic_bg.png) no-repeat center center/100% 100%;
  }
}
.automatic .automatic__inner .sec_add_title {
  margin-bottom: 1.875rem;
}
.automatic .automatic__inner .lead {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0em;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .automatic .automatic__inner .lead {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.automatic .automatic__inner .automatic_wrap {
  text-align: center;
  background: #fff;
  padding: 1.875rem 0;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .automatic .automatic__inner .automatic_wrap {
    padding: 1.5rem 0 2rem;
    border-radius: 0.375rem;
  }
}
.automatic .automatic__inner .automatic_wrap_ttl {
  font-size: 1.375rem;
  line-height: 1.4545454545;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .automatic .automatic__inner .automatic_wrap_ttl {
    font-size: 1.875rem;
    line-height: 2.1333333333;
  }
}
.automatic .automatic__inner .automatic_wrap_ttl span {
  color: #0CC1F6;
}
.automatic .automatic__inner .automatic_wrap_list {
  padding: 0 3.75rem;
}
@media screen and (min-width: 768px) {
  .automatic .automatic__inner .automatic_wrap_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 2.5rem;
  }
}
.automatic .automatic__inner .automatic_wrap_list li {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .automatic .automatic__inner .automatic_wrap_list li {
    width: calc((100% - 5.625rem) / 3);
    margin-top: 1.5rem;
  }
}
.automatic .automatic__inner .automatic_wrap_list li:first-child {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .automatic .automatic__inner .automatic_wrap_list li:first-child {
    margin-top: 1.5rem;
  }
}
.automatic .automatic__inner .automatic_wrap_list li p {
  font-size: 0.9375rem;
  line-height: 1.5333333333;
  letter-spacing: 0em;
  font-weight: 400;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .automatic .automatic__inner .automatic_wrap_list li p {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    margin-top: 1.25rem;
  }
}
.automatic .automatic__inner .automatic_wrap_list li p span {
  color: #0275C2;
  font-weight: 700;
}

/*#################################
means
#################################*/
.means {
  position: relative;
  padding: 5.625rem 0;
  background: url(../img/means_bg_sp.png) no-repeat center center/100% 100%;
  margin-bottom: -5.625rem;
}
@media screen and (min-width: 768px) {
  .means {
    padding: 10rem 0;
    background: url(../img/means_bg.png) no-repeat center center/100% 100%;
    margin-bottom: -5rem;
  }
}
.means .means__inner .sec_add_title {
  margin-bottom: 1.875rem;
}
.means .means__inner .lead {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0em;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .means .means__inner .lead {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.means .means__inner .img_box:first-of-type {
  margin-bottom: 4.25rem;
}

/*#################################
worry
#################################*/
.worry {
  position: relative;
  padding: 6.25rem 0;
  margin: 2.5rem 0 0;
  background: url(../img/worry_bg_sp.png) no-repeat center center/100% 100%;
}
@media screen and (min-width: 768px) {
  .worry {
    padding: 8.75rem 0;
    margin: 0;
    background: url(../img/worry_bg.png) no-repeat center center/100% 100%;
  }
}
.worry .worry__inner .worry_wrap {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 2.5rem 0 0;
    margin-bottom: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.worry .worry__inner .worry_wrap ul li + li {
  margin-top: 3.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap ul li + li {
    margin-top: 0;
    margin-left: 3.25rem;
  }
}
.worry .worry__inner .worry_wrap ul li + li::after {
  content: "";
  display: block;
  position: absolute;
  top: -2.375rem;
  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: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-left: 0.875rem solid rgba(0, 42, 64, 0.7);
  border-right: 0;
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap ul li + li::after {
    top: 5rem;
    left: -2rem;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    border-top: 0.75rem solid transparent;
    border-bottom: 0.75rem solid transparent;
    border-left: 0.875rem solid rgba(0, 42, 64, 0.7);
  }
}
.worry .worry__inner .worry_wrap ul li .img_box {
  margin: 0 auto 0.875rem;
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap ul li .img_box {
    margin: 0 auto 1rem;
  }
}
.worry .worry__inner .worry_wrap ul li p.ttl {
  color: #0275C2;
  font-size: 1.0625rem;
  line-height: 1.4117647059;
  letter-spacing: 0em;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap ul li p.ttl {
    font-size: 1.125rem;
    line-height: 1.3333333333;
    margin-bottom: 0.5rem;
  }
}
.worry .worry__inner .worry_wrap ul li p.text {
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap ul li p.text {
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}
.worry .worry__inner .worry_wrap .col1 {
  width: 60%;
  margin: 0 auto 3.75rem;
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap .col1 {
    width: 20%;
    margin: 0 0;
    padding: 2.625rem 0 0;
  }
  .worry .worry__inner .worry_wrap .col1 .img_box {
    padding-right: 4%;
  }
}
.worry .worry__inner .worry_wrap .col2 {
  width: 97%;
  margin: 0 auto;
  padding: 3.125rem 18% 2.5rem;
  background: #fff;
  border: 0.125rem solid #0275C2;
  border-radius: 0.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap .col2 {
    width: 75%;
    margin: 0 0;
    padding: 2.5rem 2.375rem 1.25rem;
    border-radius: 0.625rem;
  }
}
.worry .worry__inner .worry_wrap .col2::after {
  content: "";
  display: block;
  position: absolute;
  top: -3rem;
  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: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-left: 0.875rem solid rgba(0, 42, 64, 0.7);
  border-right: 0;
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap .col2::after {
    top: 7.75rem;
    left: -2.25rem;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    border-top: 0.75rem solid transparent;
    border-bottom: 0.75rem solid transparent;
    border-left: 0.875rem solid rgba(0, 42, 64, 0.7);
  }
}
.worry .worry__inner .worry_wrap .col2 .img_ttl {
  width: 18rem;
  position: absolute;
  top: -1.125rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap .col2 .img_ttl {
    top: -1.5rem;
    width: auto;
  }
}
.worry .worry__inner .worry_wrap2 {
  background: #fff;
  padding: 2.5rem 1.8125rem;
  border-radius: 0.375rem;
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 3rem 3.125rem;
    border-radius: 0.625rem;
  }
}
.worry .worry__inner .worry_wrap2 div {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap2 div {
    width: 47%;
  }
}
.worry .worry__inner .worry_wrap2 div h3 {
  width: 17.5rem;
  margin: 1.875rem auto 1.25rem;
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap2 div h3 {
    width: 19rem;
    margin: 0 0 1.25rem;
  }
}
.worry .worry__inner .worry_wrap2 div p {
  font-size: 0.875rem;
  line-height: 2.1428571429;
  letter-spacing: 0em;
  font-weight: 400;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap2 div p {
    font-size: 1rem;
    line-height: 1.875;
  }
}
.worry .worry__inner .worry_wrap2 div ul li {
  font-size: 0.8125rem;
  padding-left: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap2 div ul li {
    font-size: 1rem;
  }
}
.worry .worry__inner .worry_wrap2 div ul li + li {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap2 div ul li + li {
    margin-top: 0.375rem;
  }
}
.worry .worry__inner .worry_wrap2 div ul li::before {
  content: "";
  display: block;
  background: url(../img/check.png) no-repeat left center/contain;
  width: 4.5333333333vw;
  height: 4.5333333333vw;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .worry .worry__inner .worry_wrap2 div ul li::before {
    width: 1.125rem;
    height: 1.125rem;
  }
}

/*#################################
solution
#################################*/
.solution {
  position: relative;
  padding: 6.25rem 0;
  background: url(../img/solution_bg_sp.png) no-repeat center center/100% 100%;
  margin-bottom: -3.125rem;
}
@media screen and (min-width: 768px) {
  .solution {
    padding: 10rem 0;
    background: url(../img/solution_bg.png) no-repeat center center/100% 100%;
    margin-bottom: -5rem;
  }
}
.solution .solution__inner .solution__title {
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .solution .solution__inner .solution__title {
    font-size: 2.4375rem;
    line-height: 1.4358974359;
    background: -webkit-gradient(linear, left top, right top, from(#0cc1f6), color-stop(4%, #333), color-stop(88.67%, #2e434a), to(#0cc1f6));
    background: linear-gradient(90deg, #0cc1f6 0%, #333 4%, #2e434a 88.67%, #0cc1f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 3.75rem;
  }
}
.solution .solution__inner .solution__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) {
  .solution .solution__inner .solution__title span {
    display: inline;
    background: none;
  }
}
.solution .solution__inner .solution__title b {
  font-size: 1.75rem;
  line-height: 1.8571428571;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .solution .solution__inner .solution__title b {
    font-size: 2.5rem;
    line-height: 1.7;
  }
}
.solution .solution__inner .solution_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4.375rem 0;
}
@media screen and (min-width: 768px) {
  .solution .solution__inner .solution_list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3.25rem 1.25rem;
  }
}
.solution .solution__inner .solution_list .solution_item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .solution .solution__inner .solution_list .solution_item {
    width: 31.6666666667%;
  }
}
.solution .solution__inner .solution_list .solution_item .solution_item_top {
  padding: 2.5rem 1.75rem 1.875rem;
  border-radius: 0.375rem;
  -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) {
  .solution .solution__inner .solution_list .solution_item .solution_item_top {
    padding: 1.875rem 1.875rem 2.5rem;
  }
}
.solution .solution__inner .solution_list .solution_item .solution_item_top:last-of-type {
  margin-top: 3.75rem;
  padding: 2.125rem 1.75rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .solution .solution__inner .solution_list .solution_item .solution_item_top:last-of-type {
    margin-top: 2.875rem;
    padding: 2.375rem 1.75rem 2.5rem;
  }
}
.solution .solution__inner .solution_list .solution_item .solution_item_top:last-of-type::after {
  content: "";
  display: block;
  position: absolute;
  top: -3.125rem;
  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: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-left: 1rem solid rgba(0, 42, 64, 0.7);
  border-right: 0;
}
@media screen and (min-width: 768px) {
  .solution .solution__inner .solution_list .solution_item .solution_item_top:last-of-type::after {
    top: -2.375rem;
    border-top: 0.75rem solid transparent;
    border-bottom: 0.75rem solid transparent;
    border-left: 0.875rem solid rgba(0, 42, 64, 0.7);
  }
}
.solution .solution__inner .solution_list .solution_item .solution_item_top .num {
  display: inline-block;
  color: #fff;
  text-align: center;
  width: 8.75rem;
  background: #002A40;
  border-radius: 50vh;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  letter-spacing: 0em;
  font-weight: 500;
  position: absolute;
  top: -0.875rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  padding: 0.25rem 0;
}
@media screen and (min-width: 768px) {
  .solution .solution__inner .solution_list .solution_item .solution_item_top .num {
    width: 8.125rem;
    top: -0.9375rem;
    font-size: 0.8125rem;
    line-height: 1.2307692308;
    padding: 0.375rem 0;
  }
}
.solution .solution__inner .solution_list .solution_item .solution_item_top .num b {
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .solution .solution__inner .solution_list .solution_item .solution_item_top .num b {
    font-size: 1.1875rem;
    line-height: 1;
  }
}
.solution .solution__inner .solution_list .solution_item .solution_item_top .num.check {
  top: -1rem;
  background: #0275C2;
  font-size: 1rem;
  line-height: 1.125;
  letter-spacing: 0em;
  font-weight: 500;
  padding: 0.375rem 0 0.4375rem;
}
@media screen and (min-width: 768px) {
  .solution .solution__inner .solution_list .solution_item .solution_item_top .num.check {
    top: -0.5rem;
    font-size: 1rem;
    line-height: 1.125;
  }
}
.solution .solution__inner .solution_list .solution_item .solution_item_top .num.check::before {
  content: "";
  display: block;
  background: url(../img/solution_check.png) no-repeat left center/contain;
  width: 5.3333333333vw;
  height: 5.3333333333vw;
  position: absolute;
  top: 50%;
  left: 0.375rem;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .solution .solution__inner .solution_list .solution_item .solution_item_top .num.check::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.solution .solution__inner .solution_list .solution_item .solution_item_top h3 {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .solution .solution__inner .solution_list .solution_item .solution_item_top h3 {
    margin-bottom: 0.75rem;
  }
}
.solution .solution__inner .solution_list .solution_item .solution_item_top h3 img {
  width: auto;
  height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .solution .solution__inner .solution_list .solution_item .solution_item_top h3 img {
    height: 3.125rem;
  }
}
.solution .solution__inner .solution_list .solution_item .solution_item_top h3 b {
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .solution .solution__inner .solution_list .solution_item .solution_item_top h3 b {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}
.solution .solution__inner .solution_list .solution_item .solution_item_top h3 b span {
  display: inline-block;
  text-align: left;
  color: #0275C2;
  font-size: 1.25rem;
  line-height: 1.4;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .solution .solution__inner .solution_list .solution_item .solution_item_top h3 b span {
    font-size: 1.25rem;
  }
}
.solution .solution__inner .solution_list .solution_item .solution_item_top p {
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .solution .solution__inner .solution_list .solution_item .solution_item_top p {
    font-size: 0.75rem;
    line-height: 2;
  }
}
.solution .solution__inner .solution_list .solution_item .solution_item_top p + p {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .solution .solution__inner .solution_list .solution_item .solution_item_top p + p {
    margin-top: 1rem;
  }
}

/*#################################
four-things
#################################*/
.four-things {
  padding: 6.25rem 0;
  background: url(../img/four-things_bg_sp.png) no-repeat center center/100% 100%;
}
@media screen and (min-width: 768px) {
  .four-things {
    padding: 12.5rem 0 10rem;
    background: url(../img/four-things_bg.png) no-repeat center center/100% 100%;
  }
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner {
    max-width: 53.125rem;
  }
}
.four-things .four-things__inner .four-things_col {
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner .four-things_col {
    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;
    margin-bottom: 4.25rem;
  }
}
.four-things .four-things__inner .four-things_col .text_area {
  width: 88%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner .four-things_col .text_area {
    width: 59.3%;
    margin-right: 1.5rem;
  }
}
.four-things .four-things__inner .four-things_col .text_area h2 {
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0em;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner .four-things_col .text_area h2 {
    font-size: 1.3375rem;
    line-height: 1.5887850467;
    margin-bottom: 0.875rem;
  }
}
.four-things .four-things__inner .four-things_col .text_area h2 span {
  color: #0CC1F6;
}
.four-things .four-things__inner .four-things_col .text_area p {
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0em;
  font-weight: 400;
  margin-bottom: 1.375rem;
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner .four-things_col .text_area p {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    margin-bottom: 0;
  }
}
.four-things .four-things__inner .four-things_detail_item {
  width: 97%;
  margin: 0 auto;
  background-color: #fff;
  padding: 2.125rem 2.25rem 1.875rem 5.125rem;
  position: relative;
  border-radius: 0.375rem;
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner .four-things_detail_item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1.25rem 2.5rem 1.25rem 5.8125rem;
  }
}
.four-things .four-things__inner .four-things_detail_item + .four-things_detail_item {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner .four-things_detail_item + .four-things_detail_item {
    margin-top: 3.75rem;
  }
}
.four-things .four-things__inner .four-things_detail_item + .four-things_detail_item::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 1.25rem solid transparent;
  border-right: 1.25rem solid transparent;
  border-top: 1rem solid rgba(0, 42, 64, 0.7);
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner .four-things_detail_item + .four-things_detail_item::before {
    top: -2.5rem;
    border-left: 1.375rem solid transparent;
    border-right: 1.375rem solid transparent;
    border-top: 1.125rem solid rgba(0, 42, 64, 0.7);
  }
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner .four-things_detail_item .four-things_detail_item_content {
    max-width: 30.84375rem;
    width: 100%;
  }
}
.four-things .four-things__inner .four-things_detail_item .four-things_detail_item_content span {
  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;
  color: #fff;
  width: 4.25rem;
  height: 4.25rem;
  position: absolute;
  top: -0.375rem;
  left: -0.375rem;
  background: #0275C2;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.3846153846;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner .four-things_detail_item .four-things_detail_item_content span {
    top: -0.625rem;
    left: -0.625rem;
    width: 4.4375rem;
    height: 4.4375rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.2857142857;
  }
}
.four-things .four-things__inner .four-things_detail_item .four-things_detail_item_content span b {
  font-size: 1.75rem;
  line-height: 1.0714285714;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner .four-things_detail_item .four-things_detail_item_content span b {
    font-size: 2rem;
    line-height: 1;
  }
}
.four-things .four-things__inner .four-things_detail_item .four-things_detail_item_content h3 {
  color: #1f75c2;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 500;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner .four-things_detail_item .four-things_detail_item_content h3 {
    font-size: 1.125rem;
    line-height: 1.8888888889;
    padding-top: 0.625rem;
    margin-bottom: 0.375rem;
  }
}
.four-things .four-things__inner .four-things_detail_item .four-things_detail_item_content .text {
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner .four-things_detail_item .four-things_detail_item_content .text {
    font-size: 0.8125rem;
    line-height: 1.5384615385;
    margin-bottom: 0;
  }
}
.four-things .four-things__inner .four-things_detail_item .four-things_detail_item_image._w01 {
  width: 8.75rem;
  margin-left: 1.75rem;
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner .four-things_detail_item .four-things_detail_item_image._w01 {
    width: 7.8125rem;
    margin-left: 0;
  }
}
.four-things .four-things__inner .four-things_detail_item .four-things_detail_item_image._w02 {
  width: 11.3125rem;
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner .four-things_detail_item .four-things_detail_item_image._w02 {
    width: 10rem;
  }
}
.four-things .four-things__inner .four-things_detail_item .four-things_detail_item_image._w03 {
  width: 11.25rem;
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner .four-things_detail_item .four-things_detail_item_image._w03 {
    width: 9.5rem;
  }
}
.four-things .four-things__inner .four-things_detail_item .four-things_detail_item_image._w04 {
  width: 7.375rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .four-things .four-things__inner .four-things_detail_item .four-things_detail_item_image._w04 {
    width: 6.5625rem;
    margin: 0;
  }
}

/*#################################
difference
#################################*/
.difference {
  position: relative;
  padding: 6.25rem 0;
  background: url(../img/difference_bg_sp.png) no-repeat center center/100% 100%;
}
@media screen and (min-width: 768px) {
  .difference {
    padding: 10rem 0;
    background: url(../img/difference_bg.png) no-repeat center center/100% 100%;
  }
}
.difference .difference__inner .difference__title {
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 2.1875rem;
  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;
}
@media screen and (min-width: 768px) {
  .difference .difference__inner .difference__title {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
}
.difference .difference__inner .lead {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0em;
  font-weight: 400;
  margin-bottom: 2.625rem;
}
@media screen and (min-width: 768px) {
  .difference .difference__inner .lead {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    margin-bottom: 3.75rem;
  }
}

.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: 74.32%;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-head {
    width: 74.26%;
  }
}
.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: 3.90625vw 2.6041666667vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #EDF0F2;
  font-size: 3.90625vw;
  font-weight: 400;
  text-align: center;
  border-radius: 0.625rem 0.625rem 0 0;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-head th {
    font-size: 1.125rem;
    padding: 0.875rem 0.625rem;
  }
}
.table-wrapper .p_sec_table-head th.p_sec_table_first {
  width: 20%;
  position: relative;
}
.table-wrapper .p_sec_table-head th.p_sec_table_first::before {
  content: "";
  display: block;
  width: 100%;
  height: 88%;
  border-right: 1px solid #fff;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.table-wrapper .p_sec_table-head th.p_sec_table_last {
  width: 20%;
}
.table-wrapper .p_sec_table-head th.p_sec_table_robot {
  width: 20.45%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-head th.p_sec_table_robot {
    width: 20.34%;
  }
}
.table-wrapper .p_sec_table-head th.p_sec_table_robot div {
  position: absolute;
  left: 0;
  top: -5.2083333333vw;
  padding: 5.9895833333vw 0 0;
  width: 100%;
  height: calc(100% + 5.2083333333vw);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #0275C2;
  border-radius: 0.625rem 0.625rem 0 0;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-head th.p_sec_table_robot div {
    top: -1.875rem;
    height: calc(100% + 1.875rem);
    padding: 1.375rem 0 0 0;
  }
}
.table-wrapper .p_sec_table-head th.p_sec_table_robot div img {
  width: 39.0625vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-head th.p_sec_table_robot div img {
    width: 12.5rem;
  }
}
.table-wrapper .p_sec_table-body {
  width: 192.7083333333vw;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0.75rem 0px 0.875rem 0.875rem;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body {
    width: 62.5rem;
  }
}
.table-wrapper .p_sec_table-body tbody {
  background: #fff;
}
.table-wrapper .p_sec_table-body th, .table-wrapper .p_sec_table-body td {
  padding: 6.5104166667vw 1.5625vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  vertical-align: middle;
}
@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: 21%;
  border-left: none;
  background-color: rgba(12, 193, 246, 0.1);
  font-weight: 400;
  font-size: 3.3854166667vw;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body th {
    font-size: 1rem;
  }
}
.table-wrapper .p_sec_table-body td {
  text-align: center;
  font-weight: 400;
  font-size: 3.3854166667vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body td {
    font-size: 1rem;
  }
}
.table-wrapper .p_sec_table-body td span {
  display: inline-block;
  position: relative;
  font-weight: 500;
}
.table-wrapper .p_sec_table-body td span b {
  font-weight: 500;
}
.table-wrapper .p_sec_table-body td b {
  display: inline-block;
  font-size: 2.4739583333vw;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body td b {
    font-size: 0.75rem;
  }
}
.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: 20%;
  background: rgba(2, 117, 194, 0.1);
  border-left: 4px solid #0275C2;
  border-right: 4px solid #0275C2;
  border-bottom: 1px solid #fff;
}
.table-wrapper .p_sec_table-body td.p_sec_table_robot.last {
  border-bottom: 4px solid #0275C2;
  padding: 5.2083333333vw 1.5625vw;
}
@media screen and (min-width: 768px) {
  .table-wrapper .p_sec_table-body td.p_sec_table_robot.last {
    padding: 1.25rem 0.375rem;
  }
}
.table-wrapper .p_sec_table-body td.p_sec_table_robot span {
  font-weight: 500;
  color: #0275C2;
}
.table-wrapper .p_sec_table-body td.p_sec_table_robot span b {
  font-weight: 500;
}
.table-wrapper .p_sec_table-body td.p_sec_table_first {
  width: 20%;
  border-right: 1px solid rgba(12, 193, 246, 0.2);
  border-bottom: 1px solid rgba(12, 193, 246, 0.2);
}
.table-wrapper .p_sec_table-body td.p_sec_table_last {
  width: 20%;
  border-bottom: 1px solid rgba(12, 193, 246, 0.2);
}
.table-wrapper .p_sec_table-body td.maru_w::before {
  width: 16.1458333333vw;
  height: 16.1458333333vw;
  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.875rem;
    height: 3.875rem;
  }
}
.table-wrapper .p_sec_table-body td.maru_g::before {
  width: 16.1458333333vw;
  height: 16.1458333333vw;
  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.875rem;
    height: 3.875rem;
  }
}
.table-wrapper .p_sec_table-body td.sankaku::before {
  width: 17.4479166667vw;
  height: 15.234375vw;
  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.25rem;
    height: 3.6875rem;
  }
}
.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;
}
.table-wrapper .p_sec_table-body tr:last-of-type th, .table-wrapper .p_sec_table-body tr:last-of-type td {
  border-bottom: none;
}

/*#################################
merit
#################################*/
.merit {
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .merit {
    padding: 5.625rem 0;
  }
}
.merit .merit__inner .merit__title {
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 1.875rem;
  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;
}
@media screen and (min-width: 768px) {
  .merit .merit__inner .merit__title {
    font-size: 2.5rem;
    line-height: 1.4;
  }
}
.merit .merit__inner .lead {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0em;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .merit .merit__inner .lead {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    margin-bottom: 3.125rem;
  }
}

.merit_detail {
  padding: 1.875rem;
  background: #F4F9FA;
  border-radius: 0.375rem;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .merit_detail {
    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: 2.375rem 0rem;
  }
}
.merit_detail + .merit_detail {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .merit_detail + .merit_detail {
    margin-top: 1.5rem;
  }
}
.merit_detail .merit_detail_ar {
  margin-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .merit_detail .merit_detail_ar {
    max-width: 44.375rem;
    width: 100%;
    margin-right: 2.5rem;
    margin-bottom: 0;
  }
}
.merit_detail .merit_detail_ar .ttl {
  color: #0275C2;
  margin-bottom: 1.25rem;
  padding-left: 2.125rem;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .merit_detail .merit_detail_ar .ttl {
    font-size: 1.125rem;
    line-height: 1.4444444444;
    margin-bottom: 0.625rem;
    padding-left: 0;
  }
}
.merit_detail .merit_detail_ar .ttl::before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/check3.png) no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .merit_detail .merit_detail_ar .ttl::before {
    top: 50%;
    left: -1.625rem;
    width: 1.25rem;
    height: 1.25rem;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.merit_detail .merit_detail_ar .txt {
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .merit_detail .merit_detail_ar .txt {
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}
.merit_detail .merit_detail_img {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .merit_detail .merit_detail_img {
    margin: 0;
  }
}
.merit_detail .merit_detail_img.icon01 {
  width: 4.875rem;
}
@media screen and (min-width: 768px) {
  .merit_detail .merit_detail_img.icon01 {
    width: 4.625rem;
  }
}
.merit_detail .merit_detail_img.icon02 {
  width: 5.5625rem;
}
@media screen and (min-width: 768px) {
  .merit_detail .merit_detail_img.icon02 {
    width: 4.75rem;
  }
}
.merit_detail .merit_detail_img.icon03 {
  width: 6.9375rem;
}
@media screen and (min-width: 768px) {
  .merit_detail .merit_detail_img.icon03 {
    width: 5.375rem;
  }
}

.merit_detail_plus_icon {
  width: 3.125rem;
  margin: 1.875rem auto;
}
@media screen and (min-width: 768px) {
  .merit_detail_plus_icon {
    width: 2.875rem;
    margin: 1.375rem auto;
  }
}

.merit_detail_plus {
  background: #F4F9FA;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 0.375rem;
  overflow: hidden;
}
.merit_detail_plus .ttl_b {
  text-align: center;
  color: #FFF;
  padding: 0.875rem 0;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 400;
  background: linear-gradient(166deg, #a0d7ed 0%, #71b9df 100%);
}
@media screen and (min-width: 768px) {
  .merit_detail_plus .ttl_b {
    padding: 1.25rem 0;
    font-size: 1.375rem;
    line-height: 1.4545454545;
    background: linear-gradient(168deg, #a0d7ed 44%, #77BCE0 56%, #71b9df 100%);
  }
}
.merit_detail_plus .merit_detail_plus_col {
  padding: 1.875rem 1.875rem 2.375rem;
}
@media screen and (min-width: 768px) {
  .merit_detail_plus .merit_detail_plus_col {
    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.875rem 0 2.375rem;
  }
}
.merit_detail_plus .merit_detail_plus_col .txt_c {
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .merit_detail_plus .merit_detail_plus_col .txt_c {
    max-width: 46.125rem;
    width: 100%;
    font-size: 1.125rem;
    line-height: 1.7777777778;
    margin-right: 3.125rem;
  }
}
.merit_detail_plus .merit_detail_plus_col .txt_c .line_c {
  border-bottom: 3px solid #FF7733;
}
.merit_detail_plus .merit_detail_plus_col .icon {
  width: 5.375rem;
  margin: 2.125rem auto 0;
}
@media screen and (min-width: 768px) {
  .merit_detail_plus .merit_detail_plus_col .icon {
    width: 4.5rem;
    margin: 0;
  }
}

/*#################################
function
#################################*/
.function {
  position: relative;
  padding: 6.25rem 0;
  background: url(../img/function_bg_sp.png) no-repeat center center/100% 100%;
}
@media screen and (min-width: 768px) {
  .function {
    padding: 10rem 0;
    background: url(../img/function_bg.png) no-repeat center center/100% 100%;
  }
}
@media screen and (min-width: 768px) {
  .function .function__inner {
    max-width: 53.125rem;
  }
}
.function .function__inner .sec_add_title {
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .function .function__inner .sec_add_title {
    margin-top: 0;
  }
}
.function .function__inner .sec_add_title img {
  display: inline-block;
  width: 11.25rem;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .function .function__inner .sec_add_title img {
    width: 15.5rem;
  }
}
.function .function__inner .function_ttl {
  text-align: center;
  font-size: 1.3125rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 500;
  padding: 3.125rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .function .function__inner .function_ttl {
    font-size: 1.25rem;
    line-height: 1.4;
    padding: 5rem 0 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .function .function__inner .function_wrap {
    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;
  }
}
.function .function__inner .function_wrap .function_item {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .function .function__inner .function_wrap .function_item {
    width: calc(33.3333333333% - 1.25rem);
  }
}
.function .function__inner .function_wrap .function_item .img_box {
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .function .function__inner .function_wrap .function_item .img_box {
    margin-bottom: 1.125rem;
  }
}
.function .function__inner h4 {
  color: #0275C2;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 500;
  margin-bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .function .function__inner h4 {
    font-size: 1rem;
    line-height: 1.375;
    margin-bottom: 0.75rem;
  }
}
.function .function__inner .text {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .function .function__inner .text {
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}
@media screen and (min-width: 768px) {
  .function .function__inner .col2 .text_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.function .function__inner .col2 .text_area .item {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .function .function__inner .col2 .text_area .item {
    width: calc(50% - 1.25rem);
  }
}

/*#################################
case
#################################*/
.case {
  position: relative;
  padding: 6.25rem 0;
  background: url(../img/cace_bg_sp.png) no-repeat center center/100% 100%;
}
@media screen and (min-width: 768px) {
  .case {
    padding: 10rem 0;
    background: url(../img/cace_bg.png) no-repeat center center/100% 100%;
  }
}
.case .case__inner .case__title {
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 2.125rem;
  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;
}
@media screen and (min-width: 768px) {
  .case .case__inner .case__title {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .case_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.case_list .case_item {
  padding: 1.875rem 1.75rem;
  border-radius: 0.375rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .case_list .case_item {
    width: calc(33.3333333333% - 0.625rem);
  }
}
.case_list .case_item + .case_item {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .case_list .case_item + .case_item {
    margin-top: 0;
  }
}
.case_list .case_item .img_box {
  margin-bottom: 1.25rem;
}
.case_list .case_item h3 {
  font-size: 1.1875rem;
  line-height: 1.4736842105;
  letter-spacing: 0em;
  font-weight: 500;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .case_list .case_item h3 {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}
.case_list .case_item .name {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  font-weight: 400;
  margin-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .case_list .case_item .name {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
.case_list .case_item .text_area {
  padding: 1.875rem 1.25rem 1.25rem;
  border-radius: 0.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .case_list .case_item .text_area {
    padding: 1.875rem 1rem 1.125rem;
  }
}
.case_list .case_item .text_area span {
  display: inline-block;
  width: 8.75rem;
  text-align: center;
  color: #fff;
  background: #002A40;
  border-radius: 50vh;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  letter-spacing: 0em;
  font-weight: 400;
  position: absolute;
  top: -0.875rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .case_list .case_item .text_area span {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}
.case_list .case_item .text_area.navy {
  margin-bottom: 3.75rem;
  background: #F8F8F8;
}
.case_list .case_item .text_area.navy::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -2.375rem;
  -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: 0.875rem solid transparent;
  border-bottom: 0.875rem solid transparent;
  border-left: 1.125rem solid rgba(0, 42, 64, 0.7);
  border-right: 0;
}
.case_list .case_item .text_area.orange {
  background: #FFF5F3;
}
.case_list .case_item .text_area.orange .text {
  color: #FF7733;
}
.case_list .case_item .text_area.orange span {
  width: 10rem;
  background: #FF7733;
}
@media screen and (min-width: 768px) {
  .case_list .case_item .text_area.orange span {
    width: 10rem;
  }
}
.case_list .case_item .text_area.orange span::before {
  content: "";
  display: block;
  background: url(../img/case_check.png) no-repeat left center/contain;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  left: 0.375rem;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .case_list .case_item .text_area.orange span::before {
    left: 0.375rem;
    width: 1.25rem;
    height: 1.25rem;
  }
}
.case_list .case_item .text_area .text {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .case_list .case_item .text_area .text {
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}

/*#################################
contact
#################################*/
.contact {
  padding: 3.75rem 0 2.5rem;
}

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

/*#################################
call_staff
#################################*/
.call_staff__inner {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .call_staff__inner {
    padding-bottom: 6.25rem;
  }
}
.call_staff__inner .call_staff_wrap {
  padding: 1.875rem;
  background: #F4F9FA;
  border: 2px solid #0275C2;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .call_staff__inner .call_staff_wrap {
    padding: 1.875rem 5.625rem 2.5rem;
    border-radius: 0.375rem;
  }
}
.call_staff__inner .call_staff_wrap_ttl {
  text-align: center;
  margin: 0 0 1.25rem;
}
.call_staff__inner .call_staff_wrap_ttl span {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 500;
  padding-left: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .call_staff__inner .call_staff_wrap_ttl span {
    font-size: 1.875rem;
    line-height: 2.1333333333;
    padding-left: 3.25rem;
  }
}
.call_staff__inner .call_staff_wrap_ttl span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/check3.png) no-repeat left center/contain;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .call_staff__inner .call_staff_wrap_ttl span::before {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.call_staff__inner .call_staff_wrap_text {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0em;
  font-weight: 700;
  margin: 1.25rem 0 0;
}
@media screen and (min-width: 768px) {
  .call_staff__inner .call_staff_wrap_text {
    font-size: 1rem;
    line-height: 1.625;
    margin: 1.875rem 0 0;
  }
}