@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
body {
  /* font-family: "Noto Sans CJK JP", "NotoSansCJKjp", "Noto Sans JP", sans-serif; */
  font-family: 'Noto Sans JP', sans-serif;
}

body {
  color: #262221;
}

.no-links {
	pointer-events: none;
	cursor: default;
	text-decoration:none;
}

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

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

@-webkit-keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes slide {
  from {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slide {
  from {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  -webkit-animation: slideTextX100 1.3s ease 0s;
  animation: slideTextX100 1.3s ease 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.slideAnimeRightLeft {
  -webkit-animation: slideTextX-100 1.3s ease 0s;
  animation: slideTextX-100 1.3s ease 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
}

.fadeInAnime {
  opacity: 0;
}

.fadeIn {
  -webkit-animation: show 2s ease 0s;
  animation: show 2s ease 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2903225806vw;
  }
}
@media (min-width: 1240px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
    color: inherit;
  }
}

.main-container {
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .main-container {
    padding-top: 8.625rem;
    padding-bottom: 4.375rem;
  }
}

*,
*::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 */
html {
  scroll-behavior: smooth;
}

/* 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 elements that don't have a class get default styles */
a:not([class]) {
  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]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -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;
}

/* default */
.btn {
  font-size: 18px;
  font-size: 1.125rem;
  border-radius: 2.1875rem;
  border: 2px solid #fff;
  border: 0.125rem solid #fff;
  background-color: #2b6ea0;
  color: #fff;
  position: relative;
  display: block;
  width: 277px;
  width: 17.3125rem;
  padding: 13px 0;
  padding: 0.8125rem 0;
  text-align: center;
  letter-spacing: 0.3px;
  letter-spacing: 0.01875rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}

.btn_sec {
  font-size: 18px;
  font-size: 1.125rem;
  border-radius: 2.1875rem;
  padding: 15px 45px;
  padding: 0.9375rem 2.8125rem;
}

.btn-blue_sec {
  background-color: #2b6ea0;
  color: #fff;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
}

@media screen and (min-width: 768px) {
  .btn-blue_sec:hover {
    color: #2b6ea0;
    background-color: #fff;
    border: 0.125rem solid #2b6ea0;
    opacity: 1;
  }

  .btn-blue_sec:hover .arrow-white {
    display: none;
  }

  .btn-blue_sec:hover .arrow-navy {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .btn:hover {
    color: #2b6ea0;
    background-color: #fff;
    border: 0.125rem solid #2b6ea0;
    opacity: 1;
  }
}

/* bg-white */
.btn-white {
  background-color: #fff;
  color: #2b6ea0;
  border: 2px solid #2b6ea0;
  border: 0.125rem solid #2b6ea0;
}

@media screen and (min-width: 768px) {
  .btn-white:hover {
    background-color: #2b6ea0;
    color: #fff;
  }
}

/* saas */
.btn-saas {
  background-color: #3192c4;
  border: 2px solid #fff;
  border: 0.125rem solid #fff;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .btn-saas:hover {
    background-color: #fff;
    color: #3192c4;
    border: 0.125rem solid #3192c4;
  }
}

/* saas bg-white */
.btn-saas--white {
  background-color: #fff;
  border: 2px solid #3192c4;
  border: 0.125rem solid #3192c4;
  color: #3192c4;
}

@media screen and (min-width: 768px) {
  .btn-saas--white:hover {
    background-color: #3192c4;
    color: #fff;
    border: 0.125rem solid #fff;
  }
}

/* develop */
.btn-develop {
  background-color: #119a70;
  border: 2px solid #fff;
  border: 0.125rem solid #fff;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .btn-develop:hover {
    background-color: #fff;
    color: #119a70;
    border: 0.125rem solid #119a70;
  }
}

/* develop bg-white */
.btn-develop--white {
  background-color: #fff;
  border: 2px solid #119a70;
  border: 0.125rem solid #119a70;
  color: #119a70;
}

@media screen and (min-width: 768px) {
  .btn-develop--white:hover {
    background-color: #119a70;
    color: #fff;
    border: 0.125rem solid #fff;
  }
}

/* support */
.btn-support {
  background-color: #d5ac00;
  border: 2px solid #fff;
  border: 0.125rem solid #fff;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .btn-support:hover {
    background-color: #fff;
    color: #d5ac00;
    border: 0.125rem solid #d5ac00;
  }
}

/* support bg-white */
.btn-support--white {
  background-color: #fff;
  border: 2px solid #d5ac00;
  border: 0.125rem solid #d5ac00;
  color: #d5ac00;
}

@media screen and (min-width: 768px) {
  .btn-support--white:hover {
    background-color: #d5ac00;
    color: #fff;
    border: 0.125rem solid #fff;
  }
}

.arrow-hover,
.arrow-default {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  width: 11px;
  width: 0.6875rem;
  right: 8px;
  right: 0.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.arrow-hover {
  display: none;
}

@media screen and (min-width: 768px) {
  .btn:hover .arrow-default {
    display: none;
  }

  .btn:hover .arrow-hover {
    display: block;
  }
}
.case-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 1280px) {
  .case-items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

/* space-beteweenの調整 */
@media screen and (min-width: 1280px) {
  .case-items::after {
    content: "";
    display: block;
    max-width: 24rem;
    width: 100%;
  }
}

.case-item {
  max-width: 384px;
  max-width: 24rem;
  width: 100%;
  margin-bottom: 50px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .case-item {
    padding: 0.9375rem;
  }
}
@media screen and (min-width: 1280px) {
  .case-item {
    padding: 0;
  }
}

.case-item__img {
  width: 100%;
  position: relative;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.case-item__mask {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(38, 34, 33, .5)), color-stop(50%, rgba(38, 34, 33, .18)), color-stop(80%, rgba(38, 34, 33, .05)), to(rgba(38, 34, 33, 0)));
  background: linear-gradient(0deg, rgba(38, 34, 33, .5) 0%, rgba(38, 34, 33, .18) 50%, rgba(38, 34, 33, .05) 80%, rgba(38, 34, 33, 0) 100%);
  display: block;
  width: 100%;
  height: 27%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.case-item__mask::after {
  content: "";
  background-color: #afdcf2;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  bottom: 5px;
  bottom: 0.3125rem;
  right: 5px;
  right: 0.3125rem;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 3;
}

.case-item__title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: normal;
  margin-top: 22px;
  margin-top: 1.375rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.case-item__cat {
  display: inline-block;
  color: #fff;
  padding: 5px 15px;
  padding: 0.3125rem 0.9375rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  border: 1px solid transparent;
  border: 0.0625rem solid transparent;
}

.case-item__cat.touch_point_bi {
  background: #3192c4;
}

.case-item__cat.development {
  background: #119a70;
}

.case-item__cat.support {
  background: #d5ac00;
}

.case-item__tag {
  display: inline-block;
  color: #2b6ea0;
  background: #fff;
  padding: 4px 15px;
  padding: 0.25rem 0.9375rem;
  border: 1px solid #2b6ea0;
  border: 0.0625rem solid #2b6ea0;
  margin-right: 5px;
  margin-right: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .case-item__cat.touch_point_bi:hover {
    background: #fff;
    color: #3192c4;
    border: 0.0625rem solid #3192c4;
  }

  .case-item__cat.development:hover {
    background: #fff;
    color: #119a70;
    border: 0.0625rem solid #119a70;
  }

  .case-item__cat.support:hover {
    background: #fff;
    color: #d5ac00;
    border: 0.0625rem solid #d5ac00;
  }

  .case-item__cat:hover {
    opacity: 1;
  }

  .case-item__tag:hover {
    color: #fff;
    background-color: #2b6ea0;
    opacity: 1;
  }

  .case-item__mask--hover {
    width: 100%;
    height: 100%;
    background-color: #2b6ea0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    mix-blend-mode: screen;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
  }

  .case-item__img:hover img {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /></filter></svg>#filter');
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
  }

  .case-item__img:hover .case-item__mask--hover {
    opacity: 1;
  }
}
.footer {
  background: #f4f6f7;
  padding-top: 50px;
}

.footer__logo {
  display: inline-block;
  width: 165px;
  width: 10.3125rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .footer__logo:hover {
    opacity: 0.7;
  }
}

.footer__logo img {
  width: 100%;
}

.footer-blue {
  margin-top: 60px;
  margin-top: 3.75rem;
  background: #2b6ea0;
  color: #fff;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer-blue {
    margin-top: 2rem;
  }
}

.footer-blue__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer-blue__inner {
    height: 4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition-property: top;
  transition-property: top;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__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;
  width: 100%;
  padding-left: 15px;
  padding-left: 0.9375rem;
  height: 70px;
  height: 4.375rem;
  position: relative;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-left: 2.1875rem;
    height: 6.75rem;
    background-color: transparent;
  }
}

@media screen and (min-width: 768px) {
  .header__inner::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: #fff;
  }
}

@media screen and (min-width: 768px) {
  .header__inner::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(#fff), to(#94d8ea));
    background: linear-gradient(90deg, #fff 0%, #94d8ea 100%);
    opacity: 0;
  }
}

.header__logo {
  max-width: 160px;
  max-width: 10rem;
  width: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 12.8125rem;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .header__logo:hover {
    opacity: 0.7;
  }
}

.header__inner.bg-gray {
  background-color: #f4f6f7;
}

@media screen and (min-width: 768px) {
  .header.scroll {
    -webkit-box-shadow: 0 0.0625rem 0.625rem rgba(38, 34, 33, .1);
            box-shadow: 0 0.0625rem 0.625rem rgba(38, 34, 33, .1);
    height: 4.1875rem;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header.scroll .nav-pc__icon,
.header.scroll .nav-pc__lang,
.header.scroll .nav-pc__sep {
    display: none;
  }
  .header.scroll .header__inner::before {
    opacity: 0;
  }
  .header.scroll .nav-pc__link,
.header.scroll .header__inner {
    height: 4.1875rem;
    color: #262221;
  }
  .header.scroll .nav-pc__link {
    line-height: 4.1875rem;
  }
  .header.scroll .nav-pc__contact {
    border: 0.125rem solid #2b6ea0;
    color: #2b6ea0;
  }
  .header.scroll .header__logo {
    width: 10.625rem;
  }
  .header.scroll .nav-hover-trigger .nav-pc__link::before {
    height: 3.4375rem;
  }
}
@media screen and (min-width: 768px) {
  /* ヘッダーホバーで背景水色 */
  .header:hover .header__inner::before {
    opacity: 0;
  }
  .header:hover .header__inner::after {
    opacity: 1;
  }
  .header:hover .nav-pc__link {
    color: #fff;
  }
  .header:hover .nav-pc__link:hover {
    color: #262221;
    opacity: 1;
  }
  .header:hover .nav-pc__contact {
    border: 0.125rem solid #fff;
    color: #fff;
  }
  .header:hover .nav-pc__contact:hover {
    border: 0.125rem solid #2b6ea0;
    background-color: #2b6ea0;
    opacity: 1;
  }
  .header:hover .nav-pc__icon:hover {
    opacity: 1;
  }
  .header:hover .nav-pc__icon:hover span {
    color: #62acd0;
  }
  .header:hover .nav-pc__icon--blue {
    display: none;
  }
  .header:hover .nav-pc__icon--white {
    display: block;
    -webkit-animation: show 0.3s ease 0s;
    animation: show 0.3s ease 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .header:hover .nav-pc__icon:hover .nav-pc__icon--white,
.header:hover .nav-pc__icon:hover .nav-pc__icon--blue {
    display: none;
  }
  .header:hover .nav-pc__icon:hover .nav-pc__icon--skyblue {
    display: block;
  }
  .header:hover .nav-pc__lang:hover {
    opacity: 1;
  }
  .header:hover .nav-pc__lang--ja {
    color: #c8ebf4;
    background-color: white;
  }
  .header:hover .nav-pc__lang--ja:hover {
    background-color: #c8ebf4;
    color: #2b6ea0;
  }
  .header:hover .nav-pc__lang--en {
    border: 0.125rem solid #fff;
    background-color: transparent;
    color: #fff;
  }
  .header:hover .nav-pc__lang--en:hover {
    background: #2b6ea0;
    color: #fff;
    border: 0.125rem solid #2b6ea0;
  }
}
/* 下層ページヘッダー */
@media screen and (min-width: 768px) {
  .h-pages .header__inner::before {
    content: "";
    width: 78.1944444444%;
    height: 6.75rem;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#667179), color-stop(40%, rgba(102, 113, 121, .7)), to(rgba(102, 113, 121, 0)));
    background: linear-gradient(#667179 0%, rgba(102, 113, 121, .7) 40%, rgba(102, 113, 121, 0) 100%);
    opacity: 0.7;
    mix-blend-mode: multiply;
  }
  .h-pages .nav-pc__link {
    color: #fff;
  }
  .h-pages .nav-pc__contact {
    border: 0.125rem solid #fff;
    color: #fff;
  }
  .h-pages .nav-pc__icon--blue {
    display: none;
  }
  .h-pages .nav-pc__icon--white {
    display: block;
  }
  .h-pages .nav-pc__lang--ja {
    background-color: #fff;
    color: #455867;
  }
  .h-pages .nav-pc__lang--en {
    border: 0.125rem solid #fff;
    color: #fff;
    background-color: transparent;
  }
}
@media screen and (min-width: 768px) {
  .h-pages:hover .header__inner::before {
    opacity: 0;
  }
  .h-pages:hover .header__inner::after {
    opacity: 1;
  }
}
.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1340px;
    padding-right: 50px;
    padding-left: 50px;
  }
}

.mv-pages {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.mv-pages__img {
  margin-top: 70px;
  margin-top: 4.375rem;
  width: 90%;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .mv-pages__img {
    margin-top: 0;
    width: 78.1944444444%;
  }
}

.mv-pages__img img {
  height: 450px;
  height: 28.125rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 66%;
     object-position: 66%;
}

.mv-pages__head {
  letter-spacing: 0.5px;
  letter-spacing: 0.03125rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-bottom: 29px;
  margin-bottom: 1.8125rem;
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  -webkit-animation: slide 1s ease 0s;
  animation: slide 1s ease 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.mv-pages__title {
  color: #fff;
  padding: 6px 30px 7px 52px;
  padding: 0.375rem 1.875rem 0.4375rem 3.25rem;
  border-radius: 0 3.125rem 3.125rem 0;
  font-size: 32px;
  font-size: 2rem;
  font-weight: normal;
  position: relative;
  background-color: #2b6ea0;
  -webkit-box-shadow: 0.125rem 0.125rem #fff;
          box-shadow: 0.125rem 0.125rem #fff;
  letter-spacing: 1.6px;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 768px) {
  .mv-pages__title {
    padding-left: 6.375rem;
  }
}

.mv-pages__cat {
  margin-bottom: 17px;
  margin-bottom: 1.0625rem;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.3;
  text-shadow: 1px 1px 0 #fff;
  text-shadow: 0.0625rem 0.0625rem 0 #fff;
  padding-left: 52px;
  padding-left: 3.25rem;
}
@media screen and (min-width: 768px) {
  .mv-pages__cat {
    padding-left: 6.375rem;
  }
}

.mv-pages__cat .ml {
  margin-left: 5px;
  margin-left: 0.3125rem;
  display: block;
}

.mv-pages__subtitle {
  display: inline-block;
  margin-top: 11px;
  margin-top: 0.6875rem;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #2b6ea0;
  text-shadow: 1px 1px 0 #fff;
  text-shadow: 0.0625rem 0.0625rem 0 #fff;
  padding-left: 52px;
  padding-left: 3.25rem;
}
@media screen and (min-width: 768px) {
  .mv-pages__subtitle {
    padding-left: 6.375rem;
  }
}

/* サービスホバーで出てくるメガメニュー */
.nav-hover__mask {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-hover-trigger .nav-pc__link {
  position: relative;
}

.nav-hover-trigger .nav-pc__link::before {
  content: "";
  background: #fff;
  position: absolute;
  z-index: -1;
  height: 79px;
  height: 4.9375rem;
  width: 100%;
  bottom: 0;
  left: 0;
  display: block;
  border-radius: 0.625rem 0.625rem 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.nav-hover-trigger:hover .nav-pc__link {
  position: relative;
  color: #262221;
}
.nav-hover-trigger:hover .nav-pc__link::before {
  opacity: 1;
}
.nav-hover-trigger:hover .nav-pc__link::after {
  content: "";
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: calc(50% + 18px);
  left: 50%;
  display: block;
  height: 2px;
  height: 0.125rem;
  width: 63px;
  width: 3.9375rem;
  background-color: #c8ebf4;
  z-index: 4;
}
.nav-hover-trigger:hover .nav-hover__container {
  display: block;
}

.nav-hover__mask.appear {
  content: "";
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  height: calc(100vh - 8.75rem);
  width: 100%;
  background: #4a6579;
  opacity: 0.7;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-hover__container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
  z-index: 10;
}

.nav-hover__container.appear {
  top: 108px;
  top: 6.75rem;
  display: block;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-hover {
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 3;
  background: #fff;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-hover.appear {
  display: block;
}

.nav-hover__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1280px) {
  .nav-hover__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.nav-hover__title {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 1280px) {
  .nav-hover__title {
    margin-top: 5.1875rem;
    padding-right: 7.625rem;
  }
}
.nav-hover__title .title-section__subtitle {
  font-size: 13px;
  font-size: 0.8125rem;
}
.nav-hover__title .title-section__subtitle::before {
  width: 12px;
  width: 0.75rem;
}
.nav-hover__title .title-section__title {
  margin-top: 4px;
  margin-top: 0.25rem;
  font-size: 22px;
  font-size: 1.375rem;
}

@media screen and (min-width: 1280px) {
  .nav-hover .nav-service {
    margin-top: 1.25rem;
  }
}
.nav-hover .nav-service__item {
  margin-right: 44px;
  margin-right: 2.75rem;
  width: 277px;
  width: 17.3125rem;
}
.nav-hover .nav-service__title {
  padding: 1px 0 2px 12px;
  padding: 0.0625rem 0 0.125rem 0.75rem;
}
.nav-hover .nav-service__link {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.nav-pc,
.nav-pc__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-pc__link {
  height: 108px;
  height: 6.75rem;
  line-height: 108px;
  line-height: 6.75rem;
  display: block;
  padding: 0 12.7px;
  padding: 0 0.79375rem;
}

.nav-pc__contact {
  border: 2px solid #2b6ea0;
  border: 0.125rem solid #2b6ea0;
  border-radius: 1.25rem;
  margin: 0 23px 0 11px;
  margin: 0 1.4375rem 0 0.6875rem;
  padding: 4px 16px;
  padding: 0.25rem 1rem;
  color: #2b6ea0;
  letter-spacing: 0;
}

.nav-pc__sep {
  display: inline-block;
  width: 1px;
  width: 0.0625rem;
  height: 40px;
  height: 2.5rem;
  background-color: #adc1d0;
}

.nav-pc__icon {
  margin: 0 23px;
  margin: 0 1.4375rem;
}

.nav-pc__icon img {
  width: 80px;
  width: 5rem;
}

.nav-pc__icon--white,
.nav-pc__icon--skyblue {
  display: none;
}

.nav-pc__lang {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: -4px;
  margin-right: -0.25rem;
}

.nav-pc__lang a {
  display: block;
}

.nav-pc__lang--ja {
  padding: 6px 5px 7px 8px;
  padding: 0.375rem 0.3125rem 0.4375rem 0.5rem;
  background-color: #2b6ea0;
  color: #fff;
  border-radius: 0.5rem 0 0 0;
  height: 30px;
  height: 1.875rem;
}

.nav-pc__lang--en {
  border: 2px solid #c8ebf4;
  border: 0.125rem solid #c8ebf4;
  background-color: #c8ebf4;
  border-radius: 0 0 0 0.5rem;
  padding: 3px 6px 7px 6px;
  padding: 0.1875rem 0.375rem 0.4375rem 0.375rem;
  color: #2b6ea0;
  height: 30px;
  height: 1.875rem;
}

/* サービス */
.nav-service {
  margin-right: 50px;
  margin-right: 3.125rem;
}

.nav-service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .nav-service__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.nav-service__item:last-of-type {
  margin-right: 0;
}

.nav-service__item {
  width: 252px;
  width: 15.75rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .nav-service__item {
    margin-right: 1.25rem;
  }
}

.nav-service__title {
  padding: 3px 3px 4px 12px;
  padding: 0.1875rem 0.1875rem 0.25rem 0.75rem;
  color: #fff;
  border-radius: 0 1.25rem 1.25rem 0;
  letter-spacing: 0.5px;
  letter-spacing: 0.03125rem;
}

.nav-service__text {
  margin: 19px 0;
  margin: 1.1875rem 0;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.7;
  letter-spacing: 0.3px;
  letter-spacing: 0.01875rem;
}

.nav-service__links {
  margin-top: 12px;
  margin-top: 0.75rem;
  padding-left: 10px;
  padding-left: 0.625rem;
}

.nav-service__link {
  letter-spacing: -0.7px;
  letter-spacing: -0.04375rem;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}

.nav-saas .nav-service__title {
  background: #3192c4;
}
.nav-saas .nav-service__link {
  color: #3192c4;
}
.nav-saas .nav-service__links {
  border-left: 2px solid rgba(49, 146, 196, .3);
  border-left: 0.125rem solid rgba(49, 146, 196, .3);
}

.nav-develop .nav-service__title {
  background: #119a70;
}
.nav-develop .nav-service__link {
  color: #119a70;
}
.nav-develop .nav-service__links {
  border-left: 2px solid rgba(17, 154, 112, .3);
  border-left: 0.125rem solid rgba(17, 154, 112, .3);
}

.nav-support .nav-service__title {
  background: #d5ac00;
}
.nav-support .nav-service__link {
  color: #d5ac00;
}
.nav-support .nav-service__links {
  border-left: 2px solid rgba(213, 172, 0, .3);
  border-left: 0.125rem solid rgba(213, 172, 0, .3);
}

/* ホバー：色変更 */
/*  SPナビ */
.nav-sp {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #f4f6f7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-sp.is-show {
  opacity: 1;
  z-index: 5;
}

/*ナビゲーションの縦スクロール*/
.nav-sp.is-show .nav-sp-scroll {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
.nav-sp__inner {
  display: none;
  position: absolute;
  z-index: 999;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 100%;
  height: 100%;
  padding-top: 70px;
  padding-top: 4.375rem;
}

.nav-sp.is-show .nav-sp__inner {
  display: block;
}

.nav-sp__inner .nav-service__item {
  margin-right: 20px;
  margin-right: 1.25rem;
  max-width: 300px;
  max-width: 18.75rem;
  width: 100%;
}
.nav-sp__inner .navs__item {
  margin-right: 0;
  padding: 0 3%;
}
@media screen and (min-width: 600px) {
  .nav-sp__inner .nav-pages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .nav-sp__inner .nav-pages__item {
    margin-right: 1.25rem;
  }
}
.nav-sp__inner .nav-terms {
  margin: 20px 0 0;
  margin: 1.25rem 0 0;
  background: #2b6ea0;
  color: #fff;
  padding: calc(3% + 0.625rem) 3% 3%;
  font-size: 13px;
  font-size: 0.8125rem;
}

/* トグルボタン */
.nav-sp__toggle {
  position: relative;
  z-index: 9999;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

.nav-sp__toggle span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  width: 45%;
  background: #2b6ea0;
}

.nav-sp__toggle span:nth-of-type(1) {
  top: 15px;
}

.nav-sp__toggle span:nth-of-type(2) {
  top: 23px;
}

.nav-sp__toggle span:nth-of-type(3) {
  top: 31px;
}

.nav-sp__toggle.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.nav-sp__toggle.active span:nth-of-type(2) {
  opacity: 0;
}

.nav-sp__toggle.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.navs {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .navs {
    margin-top: 2.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 1440px) {
  .navs {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.nav-pages {
  margin-right: 50px;
}
@media screen and (min-width: 768px) {
  .nav-pages {
    min-width: 7.25rem;
  }
}

.nav-pages__item {
  position: relative;
  font-size: 17px;
  font-size: 1.0625rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  letter-spacing: 0.5px;
  letter-spacing: 0.03125rem;
}
@media screen and (min-width: 768px) {
  .nav-pages__item {
    margin-bottom: 1.8125rem;
  }
}

.nav-pages__item::before {
  content: "";
  display: inline-block;
  width: 5px;
  width: 0.3125rem;
  height: 5px;
  height: 0.3125rem;
  border-radius: 50%;
  background: #2b6ea0;
  vertical-align: middle;
  margin-top: -4px;
  margin-top: -0.25rem;
  margin-right: 8px;
  margin-right: 0.5rem;
}

.nav-contact__link {
  color: #fff;
  padding: 3px 12px 4px;
  padding: 0.1875rem 0.75rem 0.25rem;
  border-radius: 1.25rem;
  display: inline-block;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  letter-spacing: 0.03125rem;
  border: 1px solid transparent;
  border: 0.0625rem solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-contact__link:last-of-type {
  margin-bottom: 0;
}

.nav-contact__link.nav-contact {
  background: #3192c4;
  margin-right: 10px;
  margin-right: 0.625rem;
}

.nav-contact__link.nav-login {
  background: #2b6ea0;
}

/* フッターボタン ホバー：色反転 */
@media screen and (min-width: 768px) {
  .nav-contact__link:hover {
    opacity: 1;
    background: #fff;
  }

  .nav-contact__link.nav-contact:hover {
    color: #3192c4;
    border: 0.0625rem solid #3192c4;
  }

  .nav-contact__link.nav-login:hover {
    color: #2b6ea0;
    border: 0.0625rem solid #2b6ea0;
  }
}
.nav-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 1440px) {
  .nav-sns {
    margin-top: 2.5rem;
  }
}

.nav-sns__youtube img {
  width: 38px;
  width: 2.375rem;
  margin-right: 10px;
  margin-right: 0.625rem;
}

.nav-sns__facebook img {
  width: 33px;
  width: 2.0625rem;
}

.nav-terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .nav-terms {
    margin-top: 0.1875rem;
    margin-bottom: 0;
    text-align: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.nav-terms__item {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.3px;
  letter-spacing: 0.01875rem;
}
@media screen and (min-width: 768px) {
  .nav-terms__item {
    margin-left: 1.4375rem;
    margin-bottom: 0;
  }
}

.three-links {
  padding: 40px 0;
  padding: 2.5rem 0;
  background: #f4f6f7;
}

@media screen and (min-width: 768px) {
  .three-links__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.three-links__item {
  width: 95%;
  margin: 0 auto 30px;
  margin: 0 auto 1.875rem;
}
@media screen and (min-width: 600px) {
  .three-links__item {
    width: 24rem;
  }
}
@media screen and (min-width: 768px) {
  .three-links__item {
    text-align: center;
    margin: 0;
    margin-right: 2.75rem;
  }
}

.three-links__item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .three-links__item:last-of-type {
    margin-right: 0;
  }
}

.three-links__btn {
  margin: -32px auto 20px;
  margin: -2rem auto 1.25rem;
}

.three-links__btn .btn {
  font-size: 16px;
  font-size: 1rem;
  margin: 0 auto;
}

.link-item__text {
  line-height: 1.6;
}

/* pages */
.three-links.pages {
  background: -webkit-gradient(linear, left top, left bottom, from(#f4f6f7), color-stop(56%, #f4f6f7), color-stop(56%, transparent), to(transparent));
  background: linear-gradient(#f4f6f7 0%, #f4f6f7 56%, transparent 56%, transparent 100%);
}

.three-links__padding {
  height: 98px;
  height: 6.125rem;
  display: block;
  width: auto;
}

/* saas */
.three-links--saas {
  padding: 0 0 94px;
  padding: 0 0 5.875rem;
}

@media screen and (min-width: 768px) {
  .three-links--saas .three-links {
    padding-top: 1.75rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#f4f6f7), color-stop(72%, #f4f6f7), color-stop(72%, transparent), to(transparent));
    background: linear-gradient(#f4f6f7 0%, #f4f6f7 72%, transparent 72%, transparent 100%);
  }
}
.three-links--saas .link-item__img {
  width: 216px;
  width: 13.5rem;
  height: 216px;
  height: 13.5rem;
  display: block;
  margin: 0 auto;
}
.three-links--saas .three-links__btn {
  margin: 16px auto 19px;
  margin: 1rem auto 1.1875rem;
}
.three-links--saas .link-item__text {
  text-align: center;
}

/* service */
@media screen and (min-width: 768px) {
  .three-links--service {
    padding-bottom: 6.125rem;
  }
}

.three-links--service .three-links {
  background: -webkit-gradient(linear, left top, left bottom, from(#f4f6f7), color-stop(85%, #f4f6f7), color-stop(85%, transparent), to(transparent));
  background: linear-gradient(#f4f6f7 0%, #f4f6f7 85%, transparent 85%, transparent 100%);
}
.three-links--service .three-links__item {
  text-align: left;
  max-width: 399px;
  max-width: 24.9375rem;
  width: 100%;
  padding: 0;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .three-links--service .three-links__item {
    margin-right: 1.8125rem;
    margin-bottom: inherit;
  }
}
@media screen and (min-width: 768px) {
  .three-links--service .three-links__item:last-of-type {
    margin-right: -0.9375rem;
  }
}
.three-links--service .three-links__title {
  color: #fff;
  padding: 3px 0 3px 12px;
  padding: 0.1875rem 0 0.1875rem 0.75rem;
  border-radius: 0 1.25rem 1.25rem 0;
  font-weight: 500;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  width: 277px;
  width: 17.3125rem;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.3px;
  letter-spacing: 0.01875rem;
}
.three-links--service .three-links__title.saas {
  background-color: #3192c4;
}
.three-links--service .three-links__title.saas span {
  font-size: 16px;
  font-size: 1rem;
}
.three-links--service .three-links__title.develop {
  background-color: #119a70;
}
.three-links--service .three-links__title.support {
  background-color: #d5ac00;
}
.three-links--service .three-links__btn {
  margin: 15px 13px 0 0;
  margin: 0.9375rem 0.8125rem 0 0;
}
.three-links--service .three-links__btn img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 40%;
  right: 13px;
  right: 0.8125rem;
}

/* トップページ */
.title-section__title {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: normal;
  margin-top: 1px;
  margin-top: 0.0625rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
}

.title-section__subtitle {
  font-family: "Heebo";
  font-weight: normal;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0;
  color: #adc1d0;
}

.title-section__subtitle::before {
  content: "";
  display: inline-block;
  width: 25px;
  width: 1.5625rem;
  height: 3px;
  height: 0.1875rem;
  background-color: #adc1d0;
  vertical-align: middle;
  margin-right: 10px;
  margin-right: 0.625rem;
  margin-top: -4px;
  margin-top: -0.25rem;
}

/* 下層ページセクションタイトル */
.title-pages-section {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: normal;
  display: inline-block;
  border-radius: 0 2.5rem 2.5rem 0;
  padding: 6px 30px 6px 22px;
  padding: 0.375rem 1.875rem 0.375rem 1.375rem;
  background-color: #fff;
  color: #2b6ea0;
  border: 1px solid #2b6ea0;
  border: 0.0625rem solid #2b6ea0;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .title-pages-section {
    margin-bottom: 3.125rem;
    font-size: 1.625rem;
  }
}

.title-pages-section.color-saas {
  color: #3192c4;
  border: 1px solid #3192c4;
  border: 0.0625rem solid #3192c4;
}

.about-comment {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .about-comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.about-comment__img {
  max-width: 384px;
  max-width: 24rem;
  width: 100%;
  position: relative;
  z-index: 2;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .about-comment__img {
    width: 100%;
  }
}

.about-comment__content {
  background-color: #3192c4;
  color: #fff;
  width: 93%;
  padding: 70px 20px 40px;
  padding: 4.375rem 1.25rem 2.5rem;
  margin-top: -50px;
  margin-top: -3.125rem;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .about-comment__content {
    width: 100%;
    margin-top: 3.125rem;
    margin-left: -4.6875rem;
    padding: 3.125rem 3.125rem 3.125rem 7.4375rem;
  }
}

.about-comment__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.48;
}
@media screen and (min-width: 768px) {
  .about-comment__title {
    font-size: 1.625rem;
  }
}

.about-comment__text {
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
  max-width: 762px;
  max-width: 47.625rem;
  letter-spacing: 0.34px;
  letter-spacing: 0.02125rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .about-comment__text {
    line-height: 1.75;
  }
}

.about-comment__name {
  text-align: right;
  letter-spacing: 0.34px;
  letter-spacing: 0.02125rem;
}

.about-data {
  padding: 70px 0;
  padding: 4.375rem 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(86.5%, #f4f6f7), color-stop(86.5%, transparent), to(transparent));
  background: linear-gradient(#f4f6f7 86.5%, transparent 86.5%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .about-data {
    padding-top: 3.75rem;
    padding-bottom: 7.75rem;
  }
}

.about-data__inner {
  position: relative;
}

.about-data__img {
  display: block;
  position: absolute;
  top: -110px;
  top: -6.875rem;
  right: 25px;
  right: 1.5625rem;
  width: 130px;
  width: 8.125rem;
}
@media screen and (min-width: 768px) {
  .about-data__img {
    right: 3.125rem;
    width: 18.1944444444%;
  }
}
@media screen and (min-width: 1280px) {
  .about-data__img {
    width: 16.375rem;
  }
}

.about-data__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 0.9px;
  letter-spacing: 0.05625rem;
  margin-top: -6px;
  margin-top: -0.375rem;
}
@media screen and (min-width: 768px) {
  .about-data__text {
    line-height: 2;
  }
}

.about-data__cards {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .about-data__cards {
    margin-top: 6.625rem;
  }
}

.data-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .data-cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 5.875rem;
  }
}

@media screen and (min-width: 768px) {
  .data-cards.last {
    margin-bottom: 5rem;
  }
}

.data-card {
  max-width: 384px;
  max-width: 24rem;
  background-color: #fff;
  text-align: center;
  padding: 0 20px 35px;
  padding: 0 1.25rem 2.1875rem;
  margin: 0 auto 70px;
  margin: 0 auto 4.375rem;
}
@media screen and (min-width: 768px) {
  .data-card {
    margin-right: 2.75rem;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .data-card:nth-of-type(3n) {
    margin-right: 0;
  }
}

.data-card.small .data-card__head {
  margin-bottom: 27px;
  margin-bottom: 1.6875rem;
}

.data-card__head {
  color: #fff;
  padding: 8px 20px 9px;
  padding: 0.5rem 1.25rem 0.5625rem;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  margin: -30px auto 39px;
  margin: -1.875rem auto 2.4375rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
}

.data-card__head.yellow {
  background-color: #d5ac00;
}

.data-card__head.green {
  background-color: #119a70;
}

.data-card__head.blue {
  background-color: #3192c4;
}

.data-point .strong {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
}

.data-point .num {
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.5px;
  letter-spacing: 0.09375rem;
}

.data-card__img {
  margin-bottom: 29px;
  margin-bottom: 1.8125rem;
}

.data-card__text {
  text-align: left;
  letter-spacing: 0.3px;
  letter-spacing: 0.01875rem;
  line-height: 1.75;
  padding: 0 10px;
  padding: 0 0.625rem;
}

.about-info {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #f4f6f7), to(#f4f6f7));
  background: linear-gradient(transparent 50%, #f4f6f7 50%, #f4f6f7 100%);
  padding: 70px 0;
  padding: 4.375rem 0;
}
@media screen and (min-width: 768px) {
  .about-info {
    padding-top: 7.5rem;
    padding-bottom: 4.9375rem;
  }
}

.about-info__img {
  position: relative;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .about-info__img {
    margin: 0 auto;
  }
}

.about-info__side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 46%;
  left: 50%;
  width: 100%;
  max-width: 1440px;
  max-width: 90rem;
}
@media screen and (min-width: 768px) {
  .about-info__side {
    top: 47%;
    padding: 0 1.25rem;
  }
}

.about-info__side img {
  width: 25%;
}

.about-info__head {
  text-align: center;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .about-info__head {
    margin-bottom: 3.875rem;
  }
}

.about-info__logo {
  display: block;
  margin: 0 auto;
  width: 180px;
  width: 11.25rem;
}
@media screen and (min-width: 768px) {
  .about-info__logo {
    width: 16.75rem;
  }
}

.about-info__title {
  color: #2b6ea0;
  font-weight: 500;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .about-info__title {
    font-size: 1.875rem;
    margin-top: 1.9375rem;
  }
}

.about-info__content {
  text-align: center;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.about-info__content--title {
  font-weight: 500;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 auto 21px;
  margin: 0 auto 1.3125rem;
}
@media screen and (min-width: 768px) {
  .about-info__content--title {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0 auto 2.25rem;
  }
}

.about-info__content--text {
  line-height: 1.7;
  letter-spacing: 0.35px;
  letter-spacing: 0.021875rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .about-info__content--text {
    text-align: center;
  }
}

.about-movie {
  padding: 70px 0;
  padding: 4.375rem 0;
}
@media screen and (min-width: 768px) {
  .about-movie {
    padding: 7.5rem 0;
  }
}

.about-movie__img {
  max-width: 812px;
  max-width: 50.75rem;
  width: 100%;
  margin: 0 auto 30px;
  margin: 0 auto 1.875rem;
}

.about-movie__text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .about-movie__text {
    text-align: center;
  }
}

.about-summary {
  text-align: center;
}

.about-summary__text {
  padding: 20px;
  padding: 1.25rem;
  font-weight: 500;
  background-color: #fff;
  border: 2px solid #2b6ea0;
  border: 0.125rem solid #2b6ea0;
  line-height: 1.7;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  display: inline-block;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .about-summary__text {
    font-size: 1.125rem;
    line-height: 2;
    text-align: center;
    padding: 1.4375rem 5.625rem;
  }
}

.about-summary__text .color-saas {
  color: #3192c4;
}

.about-summary__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .about-summary__btn {
    margin-top: 3.8125rem;
    margin-bottom: 0.875rem;
  }
}

.about-summary__btn a {
  width: 277px;
  width: 17.3125rem;
  display: inline-block;
}

.about-summary__img {
  width: 60%;
  max-width: 200px;
  max-width: 12.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .about-summary__img {
    margin: 1.25rem;
    max-width: 20.25rem;
    position: absolute;
    bottom: -38%;
    right: -4.5%;
  }
}

.about-summary {
  position: relative;
}

.company-ceo {
  padding: 70px 0 0;
  padding: 4.375rem 0 0;
}
@media screen and (min-width: 768px) {
  .company-ceo {
    padding: 7.5rem 0 0;
  }
}

.company-ceo__inner {
  padding-bottom: 68px;
  padding-bottom: 4.25rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(3.75rem, transparent), color-stop(3.75rem, #f4f6f7), to(#f4f6f7));
  background: linear-gradient(transparent 3.75rem, #f4f6f7 3.75rem, #f4f6f7 100%);
}
@media screen and (min-width: 768px) {
  .company-ceo__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (min-width: 1441px) {
  .company-ceo__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.company-ceo__img {
  max-width: 718px;
  max-width: 44.875rem;
  width: 100%;
  text-align: right;
  margin-right: 70px;
  margin-right: 4.375rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

.company-ceo__img p {
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .company-ceo__img p {
    margin-bottom: 3.1875rem;
  }
}

.company-ceo__img span {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.c-btn__container {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-btn__container {
    text-align: right;
  }
}

.company-ceo__btn {
  width: 277px;
  width: 17.3125rem;
  display: inline-block;
  text-align: center;
  padding: 13px 45px;
  padding: 0.8125rem 2.8125rem;
}

@media screen and (min-width: 768px) {
  .company-ceo__btn:hover {
    color: #2b6ea0;
    background-color: #fff;
    border: 0.125rem solid #2b6ea0;
    opacity: 1;
  }
}

.company-ceo__btn:first-of-type {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 600px) {
  .company-ceo__btn:first-of-type {
    margin-right: 1rem;
  }
}

.company-ceo__contents {
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 600px) {
  .company-ceo__contents {
    padding-left: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .company-ceo__contents {
    padding: 0;
    margin-top: 0;
    margin-bottom: -0.75rem;
    min-width: 33.75rem;
  }
}

.company-ceo__title {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: bold;
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
  letter-spacing: 1.3px;
  letter-spacing: 0.08125rem;
}
@media screen and (min-width: 768px) {
  .company-ceo__title {
    font-size: 2.375rem;
  }
}

rt {
  text-align: left;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: normal;
}

.company-ceo__text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.8;
}
@media screen and (min-width: 1280px) {
  .company-ceo__text {
    line-height: 2;
  }
}

.company-info {
  padding: 70px 0;
  padding: 4.375rem 0;
}
@media screen and (min-width: 768px) {
  .company-info {
    padding: 7.5rem 0 8.75rem;
  }
}

.company-info__table dl {
  padding: 20px 0;
  padding: 1.25rem 0;
  border-bottom: 1px solid #ccc;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .company-info__table dl {
    padding: 1.8125rem 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.company-info__table dl:first-of-type {
  padding-top: 0;
}

.company-info__table dt {
  color: #2b6ea0;
  width: 216px;
  width: 13.5rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .company-info__table dt {
    padding-bottom: 0;
  }
}

.company-info__table dd {
  width: 1026px;
  width: 64.125rem;
}

.company-info__table .has-map {
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .company-info__table .has-map {
    padding-bottom: 3.0625rem;
  }
}

.map {
  margin: 16px 0 20px;
  margin: 1rem 0 1.25rem;
  max-width: 1026px;
  max-width: 64.125rem;
  width: 100%;
  height: 280px;
  height: 17.5rem;
}
@media screen and (min-width: 768px) {
  .map {
    margin: 2.0625rem 0 2rem;
    height: 25rem;
  }
}

.map__link {
  color: #2b6ea0;
  border: 2px solid #2b6ea0;
  border: 0.125rem solid #2b6ea0;
  border-radius: 2.125rem;
  padding: 10px 35px 10px 17px;
  padding: 0.625rem 2.1875rem 0.625rem 1.0625rem;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  margin-left: -2px;
  margin-left: -0.125rem;
  letter-spacing: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .map__link:hover {
    opacity: 0.7;
    color: #2b6ea0;
  }
}

.map__link img {
  width: 13px;
  width: 0.8125rem;
  height: 11px;
  height: 0.6875rem;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  right: 6px;
  right: 0.375rem;
}

.company-mv .mv-pages__title,
.company-mv .mv-pages__title::before {
  background: #2B6EA0;
}
.company-mv .mv-pages__subtitle {
  color: #2B6EA0;
}

.forecast-case {
  padding: 70px 0 50px;
  padding: 4.375rem 0 3.125rem;
}
@media screen and (min-width: 768px) {
  .forecast-case {
    padding: 7.5rem 0 4.5625rem;
  }
}

.forecast-case .case-items {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .forecast-case .case-items {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.forecast-case .case-items::after {
  display: none;
}

.forecast-chara {
  padding: 70px 0 100px;
  padding: 4.375rem 0 6.25rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .forecast-chara {
    padding: 7.5rem 0 11.625rem;
  }
}

.f-chara__img {
  max-width: 705px;
  max-width: 44.0625rem;
}

.f-chara__img_vsc {
  max-width: 705px;
  max-width: 44.0625rem;
}

.forecast-chara__text {
  display: block;
  margin: 0 auto;
  background-color: #3192c4;
  color: #fff;
  padding: 20px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .forecast-chara__text {
    text-align: center;
    padding: 1.5625rem 0;
  }
}

.forecast-chara__text .strong {
  font-weight: bold;
  line-height: 1.6;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .forecast-chara__text .strong {
    font-size: 1.5rem;
  }
}

.forecast-chara__text .point {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(10%, transparent), color-stop(10%, #fff), color-stop(96%, #fff), color-stop(96%, transparent), to(transparent));
  background: linear-gradient(transparent 0%, transparent 10%, #fff 10%, #fff 96%, transparent 96%, transparent 100%);
  color: #62acd0;
  display: inline;
  margin: 0 5px;
  margin: 0 0.3125rem;
  padding: 0 5px;
  padding: 0 0.3125rem;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .forecast-chara__text .point {
    width: 100%;
    font-size: 2rem;
    margin-left: -0.5625rem;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .f-chara__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (min-width: 768px) {
  .f-chara__flex_vsc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: normal;
    margin-top: 80px;
  }
}

.f-chara__img {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 600px) {
  .f-chara__img {
    width: 85%;
  }
}
@media screen and (min-width: 768px) {
  .f-chara__img {
    width: auto;
    margin-top: 3.125rem;
    margin-right: 4.375rem;
  }
}

.f-chara__img_vsc {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 600px) {
  .f-chara__img_vsc {
    width: 85%;
  }
}
@media screen and (min-width: 768px) {
  .f-chara__img_vsc {
    width: auto;
    margin-top: 0;
    margin-right: 4.375rem;
  }
}

.f-chara__point {
  position: relative;
  padding: 20px;
  padding: 1.25rem;
  margin: 0 0 0 auto;
  max-width: 360px;
}
@media screen and (min-width: 768px) {
  .f-chara__point {
    min-width: 360px;
    margin: 0 0 -0.4375rem 0;
    padding: 0 1.25rem;
  }
}

.f-chara__point:before {
  content: "";
  display: block;
  background-color: #f4f6f7;
  width: 130%;
  height: 135%;
  position: absolute;
  z-index: -1;
  top: -25%;
  left: -25%;
}
@media screen and (min-width: 768px) {
  .f-chara__point:before {
    width: 50.75rem;
    height: 25.4375rem;
    top: -20%;
    left: -70%;
  }
}
@media screen and (min-width: 1280px) {
  .f-chara__point:before {
    left: -87%;
  }
}

.f-chara__title {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: bold;
  letter-spacing: 1.3px;
  letter-spacing: 0.08125rem;
}

.f-chara__rate {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 20px;
  font-size: 1.175rem;
}
@media screen and (min-width: 768px) {
  .f-chara__rate {
    text-align: left;
  }
}

.f-chara__rate .rate {
  font-size: 58px;
  font-size: 3.625rem;
  font-weight: bold;
  color: #3192c4;
  margin-left: 10px;
  margin-left: 0.625rem;
  letter-spacing: 2.5px;
  letter-spacing: 0.15625rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(72%, transparent), color-stop(72%, #c8ebf4), color-stop(86%, #c8ebf4), color-stop(86%, transparent), to(transparent));
  background: linear-gradient(transparent 72%, #c8ebf4 72%, #c8ebf4 86%, transparent 86%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .f-chara__rate .rate {
    font-size: 3.25rem;
  }
}

.f-chara__rate .rate::before {
  background-color: #c8ebf4;
}

.f-chara__rate .asterisk {
  font-size: 16px;
  font-size: 1rem;
  margin-left: 3px;
  margin-left: 0.1875rem;
}

.f-chara__caption {
  margin-top: 29px;
  margin-top: 1.8125rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.67;
  letter-spacing: 0.3px;
  letter-spacing: 0.01875rem;
}

.forecast-flow {
  padding: 70px 0;
  padding: 4.375rem 0;
}
@media screen and (min-width: 768px) {
  .forecast-flow {
    padding: 7.5rem 0;
  }
}

.forecast-flow__text {
  font-size: 24px;
  font-size: 1.2rem;
  letter-spacing: 1.2px;
  letter-spacing: 0.075rem;
}
@media screen and (min-width: 768px) {
  .forecast-flow__text {
    font-size: 1.875rem;
  }
}

.forecast-flow__figure {
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .f-flow__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* フロー図 三角　visitor-forecast */

.f-flow__item {
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .f-flow__item {
    width: 11.875rem;
    margin-right: 0.375rem;
    margin-bottom: 0;
  }
}

.f-flow__title {
  color: #fff;
  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;
  text-align: center;
  background-color: #99d0e8;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  width: 100%;
  height: 80px;
  height: 5rem;
}
@media screen and (min-width: 768px) {
  .f-flow__title {
    height: 6.875rem;
  }
}

.f-flow__title::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -35px;
  bottom: -2.1875rem;
  left: 50%;
  margin-left: -16px;
  margin-left: -1rem;
  border: 16px solid transparent;
  border: 1rem solid transparent;
  border-top: 24px solid #99d0e8;
  border-top: 1.5rem solid #99d0e8;
}
@media screen and (min-width: 768px) {
  .f-flow__title::before {
    top: 50%;
    right: -2.4375rem;
    bottom: inherit;
    left: inherit;
    margin-top: -1.1875rem;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #99d0e8;
  }
}

.f-flow__title::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -48px;
  bottom: -3rem;
  left: 50%;
  margin-left: -20px;
  margin-left: -1.25rem;
  border: 20px solid transparent;
  border: 1.25rem solid transparent;
  border-top: 28px solid #fff;
  border-top: 1.75rem solid #fff;
}
@media screen and (min-width: 768px) {
  .f-flow__title::after {
    top: 50%;
    right: -3rem;
    bottom: inherit;
    left: inherit;
    margin-top: -1.1875rem;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #fff;
  }
}

/* タイトル背景色 */
.f-flow__item:nth-of-type(2) .f-flow__title {
  background-color: #83C6E3;
}

.f-flow__item:nth-of-type(3) .f-flow__title {
  background-color: #66B3DB;
}

.f-flow__item:nth-of-type(4) .f-flow__title {
  background-color: #4FA4D0;
}

.f-flow__item:nth-of-type(5) .f-flow__title {
  background-color: #3192C4;
}

.f-flow__item:nth-of-type(6) .f-flow__title {
  background-color: #2b6ea0;
  margin-right: 0;
}

/* 右三角 */
.f-flow__item:nth-of-type(2) .f-flow__title::before {
  border-top: 24px solid #83c6e3;
  border-top: 1.5rem solid #83c6e3;
}
@media screen and (min-width: 768px) {
  .f-flow__item:nth-of-type(2) .f-flow__title::before {
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #83c6e3;
  }
}

.f-flow__item:nth-of-type(3) .f-flow__title::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .f-flow__item:nth-of-type(3) .f-flow__title::before {
    display: block;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #66B3DB;
  }
}

.f-flow__item:nth-of-type(4) .f-flow__title::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .f-flow__item:nth-of-type(4) .f-flow__title::before {
    display: block;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #4FA4D0;
  }
}

.f-flow__item:nth-of-type(5) .f-flow__title::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .f-flow__item:nth-of-type(5) .f-flow__title::before {
    display: block;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #3192c4;
  }
}

.f-flow__item:nth-of-type(6) .f-flow__title::before,
.f-flow__item:nth-of-type(6) .f-flow__title::after {
  display: none;
}

/* SP 下三角 */
.f-flow__item:nth-of-type(3),
.f-flow__item:nth-of-type(4),
.f-flow__item:nth-of-type(5) {
  position: relative;
}

.f-flow__item:nth-of-type(3) {
  border: 5px solid #66B3DB;
}
@media screen and (min-width: 768px) {
  .f-flow__item:nth-of-type(3) {
    border: none;
  }
}

.f-flow__item:nth-of-type(4) {
  border: 5px solid #4FA4D0;
}
@media screen and (min-width: 768px) {
  .f-flow__item:nth-of-type(4) {
    border: none;
  }
}

.f-flow__item:nth-of-type(5) {
  border: 5px solid #3192c4;
}
@media screen and (min-width: 768px) {
  .f-flow__item:nth-of-type(5) {
    border: none;
  }
}

.f-flow__item:nth-of-type(6) {
  border: 5px solid #2b6ea0;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .f-flow__item:nth-of-type(6) {
    border: none;
  }
}

.f-flow__item:nth-of-type(3)::before,
.f-flow__item:nth-of-type(4)::before,
.f-flow__item:nth-of-type(5)::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -40px;
  left: 50%;
  margin-left: -16px;
  margin-left: -1rem;
  border: 16px solid transparent;
  border: 1rem solid transparent;
}
@media screen and (min-width: 768px) {
  .f-flow__item:nth-of-type(3)::before,
.f-flow__item:nth-of-type(4)::before,
.f-flow__item:nth-of-type(5)::before {
    display: none;
  }
}

.f-flow__item:nth-of-type(3)::before {
  border-top: 24px solid #66B3DB;
  border-top: 1.5rem solid #66B3DB;
}

.f-flow__item:nth-of-type(4)::before {
  border-top: 24px solid #4FA4D0;
  border-top: 1.5rem solid #4FA4D0;
}

.f-flow__item:nth-of-type(5)::before {
  border-top: 24px solid #3192c4;
  border-top: 1.5rem solid #3192c4;
}

.f-flow__item:nth-of-type(3)::after,
.f-flow__item:nth-of-type(4)::after,
.f-flow__item:nth-of-type(5)::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -53px;
  left: 50%;
  margin-left: -20px;
  margin-left: -1.25rem;
  border: 20px solid transparent;
  border: 1.25rem solid transparent;
  border-top: 28px solid #fff;
  border-top: 1.75rem solid #fff;
}
@media screen and (min-width: 768px) {
  .f-flow__item:nth-of-type(3)::after,
.f-flow__item:nth-of-type(4)::after,
.f-flow__item:nth-of-type(5)::after {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .f-flow__box {
    width: 4.375rem;
    height: 6.875rem;
    background-color: #edf1f2;
  }
}

.f-flow__sublist {
  padding: 10px 0 10px 16px;
  padding: 0.625rem 0 0.625rem 1rem;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .f-flow__sublist {
    height: 7rem;
    padding: 1.25rem 0 0 1rem;
    border-left: 0.1875rem solid #edf1f2;
  }
}

.f-flow__subitem {
  margin-right: 20px;
  margin-right: 1.25rem;
  padding-left: 16px;
  padding-left: 1rem;
  text-indent: -16px;
  text-indent: -1rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .f-flow__subitem {
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) {
  .f-flow__subitem:not(:last-of-type) {
    margin-bottom: 0.375rem;
  }
}

.f-flow__subitem::before {
  content: "";
  display: inline-block;
  width: 5px;
  width: 0.3125rem;
  height: 5px;
  height: 0.3125rem;
  margin-bottom: 3px;
  margin-bottom: 0.1875rem;
  margin-right: 10px;
  margin-right: 0.625rem;
  border-radius: 50%;
  background-color: #2b6ea0;
}
/* END-フロー図 三角　visitor-forecast */
/* フロー図 三角　store-analysis */

.f-flow__item_sa {
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .f-flow__item_sa {
    width: 11.875rem;
    margin-right: 0.375rem;
    margin-bottom: 0;
  }
}

.f-flow__title_sa {
  color: #fff;
  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;
  text-align: center;
  background-color: #99d0e8;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  width: 100%;
  height: 80px;
  height: 5rem;
}
@media screen and (min-width: 768px) {
  .f-flow__title_sa {
    height: 6.875rem;
  }
}

.f-flow__title_sa::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -35px;
  bottom: -2.1875rem;
  left: 50%;
  margin-left: -16px;
  margin-left: -1rem;
  border: 16px solid transparent;
  border: 1rem solid transparent;
  border-top: 24px solid #99d0e8;
  border-top: 1.5rem solid #99d0e8;
}
@media screen and (min-width: 768px) {
  .f-flow__title_sa::before {
    top: 50%;
    right: -2.4375rem;
    bottom: inherit;
    left: inherit;
    margin-top: -1.1875rem;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #99d0e8;
  }
}

.f-flow__title_sa::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -48px;
  bottom: -3rem;
  left: 50%;
  margin-left: -20px;
  margin-left: -1.25rem;
  border: 20px solid transparent;
  border: 1.25rem solid transparent;
  border-top: 28px solid #fff;
  border-top: 1.75rem solid #fff;
}
@media screen and (min-width: 768px) {
  .f-flow__title_sa::after {
    top: 50%;
    right: -3rem;
    bottom: inherit;
    left: inherit;
    margin-top: -1.1875rem;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #fff;
  }
}

/* タイトル背景色 */
.f-flow__item_sa:nth-of-type(2) .f-flow__title_sa {
  background-color: #83c6e3;
}

.f-flow__item_sa:nth-of-type(3) .f-flow__title_sa {
  background-color: #66B3DB;
}

.f-flow__item_sa:nth-of-type(4) .f-flow__title_sa {
  background-color: #4FA4D0;
}

.f-flow__item_sa:nth-of-type(5) .f-flow__title_sa {
  background-color: #3192c4;
}

.f-flow__item_sa:nth-of-type(6) .f-flow__title_sa {
  background-color: #2b6ea0;
  margin-right: 0;
}

/* 右三角 */
.f-flow__item_sa:nth-of-type(2) .f-flow__title_sa::before {
  border-top: 24px solid #83c6e3;
  border-top: 1.5rem solid #83c6e3;
}
@media screen and (min-width: 768px) {
  .f-flow__item_sa:nth-of-type(2) .f-flow__title_sa::before {
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #83c6e3;
  }
}

.f-flow__item_sa:nth-of-type(3) .f-flow__title_sa::before {
  border-top: 24px solid #66B3DB;
  border-top: 1.5rem solid #66B3DB;
}
@media screen and (min-width: 768px) {
  .f-flow__item_sa:nth-of-type(3) .f-flow__title_sa::before {
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #66B3DB;
  }
}

.f-flow__item_sa:nth-of-type(4) .f-flow__title_sa::before {
    border-top: 1.5rem solid #4FA4D0;
    border-top: 1.5rem solid #4FA4D0;
}
@media screen and (min-width: 768px) {
  .f-flow__item_sa:nth-of-type(4) .f-flow__title_sa::before {
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #4FA4D0;
  }
}

.f-flow__item_sa:nth-of-type(5) .f-flow__title_sa::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .f-flow__item_sa:nth-of-type(5) .f-flow__title_sa::before {
    display: block;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #3192c4;
  }
}

.f-flow__item_sa:nth-of-type(6) .f-flow__title_sa::before,
.f-flow__item_sa:nth-of-type(6) .f-flow__title_sa::after {
  display: none;
}

/* SP 下三角 */
.f-flow__item_sa:nth-of-type(5) {
  position: relative;
}

.f-flow__item_sa:nth-of-type(5) {
  border: 5px solid #3192c4;
}
@media screen and (min-width: 768px) {
  .f-flow__item_sa:nth-of-type(5) {
    border: none;
  }
}

.f-flow__item_sa:nth-of-type(6) {
  border: 5px solid #2b6ea0;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .f-flow__item_sa:nth-of-type(6) {
    border: none;
  }
}

.f-flow__item_sa:nth-of-type(5)::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -40px;
  left: 50%;
  margin-left: -16px;
  margin-left: -1rem;
  border: 16px solid transparent;
  border: 1rem solid transparent;
}
@media screen and (min-width: 768px) {
  .f-flow__item_sa:nth-of-type(5)::before {
    display: none;
  }
}

.f-flow__item_sa:nth-of-type(3)::before {
  border-top: 24px solid #66B3DB;
  border-top: 1.5rem solid #66B3DB;
}

.f-flow__item_sa:nth-of-type(4)::before {
  border-top: 24px solid #4FA4D0;
  border-top: 1.5rem solid #4FA4D0;
}

.f-flow__item_sa:nth-of-type(5)::before {
  border-top: 24px solid #3192c4;
  border-top: 1.5rem solid #3192c4;
}

.f-flow__item_sa:nth-of-type(5)::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -53px;
  left: 50%;
  margin-left: -20px;
  margin-left: -1.25rem;
  border: 20px solid transparent;
  border: 1.25rem solid transparent;
  border-top: 28px solid #fff;
  border-top: 1.75rem solid #fff;
}
@media screen and (min-width: 768px) {
  .f-flow__item_sa:nth-of-type(5)::after {
    display: none;
  }
}

/* END-フロー図 三角　store-analysis */


.f-flow__point {
  text-align: center;
  padding: 20px 0;
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .f-flow__point {
    padding: 0;
    margin-top: 2.125rem;
  }
}

.f-flow__point p {
  background-color: #adc1d0;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  display: inline-block;
  margin: 0 auto;
  position: relative;
  padding: 6px 15px 7px;
  padding: 0.375rem 0.9375rem 0.4375rem;
}

@media screen and (min-width: 768px) {
  .f-flow__point p::before {
    content: "";
    position: absolute;
    top: -1.875rem;
    left: 50%;
    margin-left: -0.9375rem;
    border: 0.9375rem solid transparent;
    border-bottom: 0.9375rem solid #adc1d0;
  }
}

.f-flow__line {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .f-flow__line {
    padding-right: 25.625rem;
  }
}

@media screen and (min-width: 768px) {
  .line {
    max-width: 48.625rem;
    width: 100%;
    height: 1.875rem;
    border-left: 0.1875rem solid #adc1d0;
    border-right: 0.1875rem solid #adc1d0;
    border-bottom: 0.1875rem solid #adc1d0;
  }
}

.f-flow__text {
  max-width: 778px;
  max-width: 48.625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  font-weight: 500;
}

.f-flow__text .underline {
  font-size: 30px;
  font-size: 1.875rem;
  color: #3192c4;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #c8ebf4), color-stop(93%, #c8ebf4), color-stop(93%, transparent), to(transparent));
  background: linear-gradient(transparent 75%, #c8ebf4 75%, #c8ebf4 93%, transparent 93%, transparent 100%);
}

.forecast-flow__btn {
  background-color: #d05050;
  font-size: 24px;
  font-size: 1.5rem;
  padding: 16px 0;
  padding: 1rem 0;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .forecast-flow__btn {
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .forecast-flow__btn {
    width: 42.875rem;
  }
}

@media screen and (min-width: 768px) {
  .forecast-flow__btn:hover {
    color: #d05050;
    background-color: #fff;
    border-color: #d05050;
    opacity: 1;
  }
}

.forecast-flow__arrow,
.forecast-flow__arrow--red {
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  right: 10px;
  right: 0.625rem;
}

.forecast-flow__arrow--red {
  display: none;
}

@media screen and (min-width: 768px) {
  .forecast-flow__btn:hover .forecast-flow__arrow {
    display: none;
  }

  .forecast-flow__btn:hover .forecast-flow__arrow--red {
    display: block;
    -webkit-animation: show 0.3s ease 0s;
    animation: show 0.3s ease 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
}
.forecast-function {
  background-color: #f4f6f7;
  padding: 70px 0;
  padding: 4.375rem 0;
}
@media screen and (min-width: 768px) {
  .forecast-function {
    padding: 5rem 0 7.5rem;
  }
}

.forecast-function__text {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 1.2px;
  letter-spacing: 0.075rem;
}
@media screen and (min-width: 768px) {
  .forecast-function__text {
    font-size: 1.875rem;
  }
}

.f-function__items {
  margin-top: 41px;
  margin-top: 2.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .f-function__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
            -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.f-function__item {
  max-width: 384px;
  max-width: 24rem;
  width: 100%;
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .f-function__item {
    height: auto;
    margin: 0 1.4375rem;
  }
}

.f-function__item:first-of-type {
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
}
@media screen and (min-width: 768px) {
  .f-function__item:first-of-type {
    margin: 0 1.25rem 0 0;
  }
}

.f-function__item:last-of-type {
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
}
@media screen and (min-width: 768px) {
  .f-function__item:last-of-type {
    margin: 0 0 0 1.25rem;
  }
}

.f-function__item::before {
  content: "";
  display: block;
  width: 80%;
  height: 2px;
  height: 0.125rem;
  border-bottom: 2px solid #d6e1ea;
  border-bottom: 0.125rem solid #d6e1ea;
  margin: 0 auto 30px;
  margin: 0 auto 1.875rem;
}
@media screen and (min-width: 768px) {
  .f-function__item::before {
    width: 0.125rem;
    height: 100%;
    margin: 0;
    border-bottom: none;
    position: absolute;
    top: 0;
    left: -1.25rem;
    border-left: 0.125rem solid #d6e1ea;
  }
}

.f-function__item:first-of-type {
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
}
@media screen and (min-width: 768px) {
  .f-function__item:first-of-type {
    margin: 0;
  }
}

.f-function__item:first-of-type::before {
  content: "";
  display: none;
}

.f-function__item:last-of-type {
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
}
@media screen and (min-width: 768px) {
  .f-function__item:last-of-type {
    margin: 0;
    padding: 0;
  }
}

.f-function__title {
  width: 170px;
  width: 10.625rem;
  height: 170px;
  height: 10.625rem;
  background-color: #3192c4;
  color: #fff;
  padding: 63px 0;
  padding: 2.9375rem 0;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  font-size: 1.575rem;
  font-weight: normal;
  margin: 0 auto;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
}

.f-function__list {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.f-function__text .blue {
  color: #3192c4;
}

.f-function__text {
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
  text-indent: -20px;
  text-indent: -1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  letter-spacing: 0.3px;
  letter-spacing: 0.01875rem;
  line-height: 1.7;
}

.f-function__text::before {
  content: "";
  display: inline-block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #3192c4;
  margin-right: 12px;
  margin-right: 0.75rem;
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
}

.f-point {
  max-width: 1026px;
  max-width: 64.125rem;
  background-color: #fff;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  margin: 25px auto 0;
  margin: 1.5625rem auto 0;
}
@media screen and (min-width: 600px) {
  .f-point {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .f-point {
    margin: 3.1875rem auto 0;
  }
}

.f-point__title {
  background-color: #adc1d0;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0 0 18px;
  margin: 0 0 1.125rem;
  letter-spacing: 0.8px;
  letter-spacing: 0.05rem;
  padding: 10px;
  padding: 0.625rem;
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .f-point__title {
    padding: 0.75rem 0;
  }
}

.f-point__title .point {
  display: inline-block;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  color: #62acd0;
  background-color: #fff;
  padding: 0 3px;
  padding: 0 0.1875rem;
}

.f-point__text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  padding: 0 10px;
  padding: 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .f-point__text {
    padding: 0;
  }
}

.forecast-merit {
  padding: 80px 0;
  padding: 5rem 0;
  background-image: url(../../images/common/forecast/forecast-merit-bg.jpg);
  background-size: cover;
}

.f-meirit__items {
  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;
}
@media screen and (min-width: 768px) {
  .f-meirit__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.f-meirit__item {
  background-color: #3192c4;
  color: #fff;
  border: 2px solid #fff;
  border: 0.125rem solid #fff;
  border-radius: 50%;
  text-align: center;
  position: relative;
  margin: 0 auto 40px;
  margin: 0 auto 2.5rem;
  width: 330px;
  width: 20.625rem;
  height: 330px;
  height: 20.625rem;
}
@media screen and (min-width: 768px) {
  .f-meirit__item {
    width: 24rem;
    height: 24rem;
    margin: 0 0.3125rem;
  }
}
@media screen and (min-width: 1280px) {
  .f-meirit__item {
    margin: 0;
  }
}

.f-meirit__item::after {
  content: "";
  position: absolute;
  bottom: -32px;
  bottom: -2rem;
  left: 50%;
  margin-left: -11px;
  margin-left: -0.6875rem;
  border: 11px solid transparent;
  border: 0.6875rem solid transparent;
  border-top: 19px solid #3192c4;
  border-top: 1.1875rem solid #3192c4;
}

.f-meirit__text {
  font-size: 24px;
  font-size: 1.425rem;
  border-bottom: 2px solid #afdcf2;
  border-bottom: 0.125rem solid #afdcf2;
  width: 258px;
  width: 16.125rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.49;
  margin: 0 auto;
  padding: 70px 0 16px;
  padding: 4.5625rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .f-meirit__text {
    padding: 5.375rem 0 1.75rem;
  }
}

.f-meirit__item:nth-of-type(2) .f-meirit__text {
  padding: 43px 0 16px;
  padding: 4.6875rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .f-meirit__item:nth-of-type(2) .f-meirit__text {
    padding: 5.1875rem 0 1.75rem;
  }
}

.f-meirit__item:nth-of-type(3) .f-meirit__text {
  padding: 43px 0 16px;
  padding: 3.6875rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .f-meirit__item:nth-of-type(3) .f-meirit__text {
    padding: 4.1875rem 0 0.675rem;
  }
}

.f-meirit__sub {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .f-meirit__sub {
    margin-top: 0.9375rem;
  }
}

.f-meirit__sub .underline {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #afdcf2), color-stop(95%, #afdcf2), color-stop(95%, transparent));
  background: linear-gradient(transparent 85%, #afdcf2 85%, #afdcf2 95%, transparent 95%);
}

.forecast-merit__text {
  display: block;
  /* max-width: 812px; */
  max-width: 100%;
  background-color: #fff;
  font-weight: bold;
  letter-spacing: 1.7px;
  letter-spacing: 0.10625rem;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  padding: 20px;
  padding: 1.25rem;
  font-size: 23px;
  font-size: 1.45rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .forecast-merit__text {
    font-size: 2.5rem;
    margin: 3.25rem auto 0;
    padding: 0 0 0 2rem;
  }
}

.forecast-merit__text .underline {
  display: inline-block;
  color: #3192c4;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(78%, transparent), color-stop(78%, #c8ebf4), color-stop(90%, #c8ebf4), color-stop(90%, transparent), to(transparent));
  background: linear-gradient(transparent 78%, #c8ebf4 78%, #c8ebf4 90%, transparent 90%, transparent 100%);
  font-size: 52px;
  font-size: 1.45rem;
}

@media screen and (min-width: 768px) {
  .forecast-merit__text .underline {
    display: inline-block;
    color: #3192c4;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(78%, transparent), color-stop(78%, #c8ebf4), color-stop(90%, #c8ebf4), color-stop(90%, transparent), to(transparent));
    background: linear-gradient(transparent 78%, #c8ebf4 78%, #c8ebf4 90%, transparent 90%, transparent 100%);
    font-size: 52px;
    font-size: 3.25rem;
  }
}

.forecast-movie {
  padding: 100px 0 0;
  padding: 6.25rem 0 0;
}

.forecast-movie__inner {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(17%, #fff), color-stop(17%, #f4f6f7), to(#f4f6f7));
  background: linear-gradient(#fff 0%, #fff 17%, #f4f6f7 17%, #f4f6f7 100%);
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .forecast-movie__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (min-width: 1441px) {
  .forecast-movie__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.forecast-movie__movie {
  max-width: 698px;
  max-width: 43.625rem;
  width: 100%;
  margin-right: 70px;
  margin-right: 4.375rem;
  margin-bottom: 11px;
  margin-bottom: 4.6875rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .forecast-movie__movie:hover {
    opacity: 0.7;
  }
}

.forecast-movie__contents {
  max-width: 380px;
  max-width: 23.75rem;
  width: 100%;
  padding: 0 20px;
  padding: 0 1.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .forecast-movie__contents {
    max-width: 35.125rem;
    margin: 0;
  }
}

.forecast-movie__icon {
  max-width: 110px;
  max-width: 6.875rem;
  width: 100%;
  margin-left: auto;
  margin-bottom: -50px;
  margin-bottom: -3.125rem;
}
@media screen and (min-width: 768px) {
  .forecast-movie__icon {
    max-width: 10.625rem;
    margin-left: auto;
    margin-bottom: 1.25rem;
  }
}

.forecast-movie__title {
  font-size: 38px;
  font-size: 2.375rem;
  letter-spacing: 1.5px;
  letter-spacing: 0.09375rem;
}

.mobile_margin {
  margin-top: 35px;
}

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

.forecast-movie__text {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  line-height: 2;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
}

.forecast-movie__btn {
  display: inline-block;
  margin-top: 34px;
  margin-top: 2.125rem;
}

.forecast-mv .mv-pages__title,
.forecast-mv .mv-pages__title::before {
  background: #3192c4;
}
.forecast-mv .mv-pages__cat {
  color: #62ACD0;
}
.forecast-mv .mv-pages__subtitle {
  color: #3192c4;
}

.forecast-plan {
  padding: 80px 0;
  padding: 5rem 0;
  background-color: #f4f6f7;
}

.forecast-plan__icon {
  width: 34px;
  width: 2.125rem;
  margin: 30px auto;
  margin: 1.875rem auto;
}

.f-plan-forecast,
.f-plan-option {
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .forecast-item {
    height: 18.6875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.forecast-head {
  background-color: #deeff4;
  border: 6px solid #3192c4;
  border: 0.375rem solid #3192c4;
  position: relative;
  padding: 20px;
  padding: 1.25rem;
  height: 300px;
  height: 18.6875rem;
}
@media screen and (min-width: 768px) {
  .forecast-head {
    width: 17.3125rem;
  }
}

.forecast-head__inner,
.option-head__inner {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .forecast-head__inner,
.option-head__inner {
    padding: 1.875rem;
  }
}

.forecast-head__title {
  color: #3192c4;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  text-align: center;
}

.forecast-head__icon,
.option-head__icon {
  width: 100px;
  width: 6.25rem;
  margin: 21px auto 0;
  margin: 1.3125rem auto 0;
}

.plan-content {
  width: 100%;
  border-top: 6px solid #edf1f2;
  border-top: 0.375rem solid #edf1f2;
  border-bottom: 6px solid #edf1f2;
  border-bottom: 0.375rem solid #edf1f2;
  position: relative;
  height: 430px;
  height: 30.875rem;
}
@media screen and (min-width: 600px) {
  .plan-content {
    height: 14.375rem;
  }
}
@media screen and (min-width: 768px) {
  .plan-content {
    height: inherit;
    max-width: 42.625rem;
  }
}

.plan-content__inner {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 85%;
}

.plan-content__title {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.8px;
  letter-spacing: 0.05rem;
}
@media screen and (min-width: 768px) {
  .plan-content__title {
    letter-spacing: 0.1875rem;
  }
}

.plan-content__list {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.plan-content__item {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  position: relative;
  padding-left: 18px;
  padding-left: 1.125rem;
  text-indent: -18px;
  text-indent: -1.125rem;
  letter-spacing: 0.4px;
  letter-spacing: 0.025rem;
  line-height: 1.56;
}

.plan-content__item::before {
  content: "";
  background-image: url(../../images/common/icons/list-check.png);
  background-size: 0.6875rem;
  display: inline-block;
  width: 11px;
  width: 0.6875rem;
  height: 8px;
  height: 0.5rem;
  margin-bottom: 3px;
  margin-bottom: 0.1875rem;
  margin-right: 8px;
  margin-right: 0.5rem;
  letter-spacing: 0px;
  letter-spacing: 0rem;
}

.plan-content__item:last-of-type {
  margin-bottom: 0;
}

.plan-price {
  display: block;
  width: 100%;
  height: 230px;
  height: 14.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .plan-price {
    border: 0.375rem solid #edf1f2;
    max-width: 17.6875rem;
    height: 100%;
  }
}

.plan-price__inner {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 51%;
  left: 50%;
  text-align: center;
  width: 85%;
}

.plan-price__month {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  background-color: #62acd0;
  width: 132px;
  width: 8.25rem;
  margin: 0 auto;
  padding: 1px 0;
  padding: 0.0625rem 0;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
}

.plan-price__price {
  font-size: 44px;
  font-size: 2.75rem;
  color: #2b6ea0;
  font-weight: bold;
  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;
}

.plan-price__price .yen {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 15px 2px 0 6px;
  margin: 0.9375rem 0.125rem 0 0.375rem;
}

.plan-price__price .weight {
  font-weight: normal;
}

.plan-price__minPrice {
  font-size: 18px;
  font-size: 1rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
}

.plan-price__caption {
  font-size: 14px;
  font-size: 0.7375rem;
  margin-top: 13px;
  margin-top: 0.8125rem;
}

/* option */
.f-plan-option__title {
  background-color: #62acd0;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  padding: 7px 0;
  padding: 0.4375rem 0;
}

.f-plan-option__item {
  padding: 20px;
  padding: 1.25rem;
}

.option-item {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .option-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.option-item .plan-content {
  border-top: none;
  border-left: 3px solid #edf1f2;
  border-left: 0.1875rem solid #edf1f2;
  border-right: 3px solid #edf1f2;
  border-right: 0.1875rem solid #edf1f2;
  border-bottom: 3px solid #edf1f2;
  border-bottom: 0.1875rem solid #edf1f2;
  height: 500px;
  height: 30.875rem;
}
@media screen and (min-width: 600px) {
  .option-item .plan-content {
    height: 14.375rem;
  }
}
@media screen and (min-width: 768px) {
  .option-item .plan-content {
    height: inherit;
    max-width: 43.9375rem;
    border-top: 0.125rem solid #edf1f2;
    border-left: none;
    border-right: none;
    border-bottom: 0.125rem solid #edf1f2;
  }
}

.option-item .plan-content__inner {
  width: 90%;
}
@media screen and (min-width: 768px) {
  .option-item .plan-content__inner {
    width: 93%;
    left: 54%;
  }
}
@media screen and (min-width: 1280px) {
  .option-item .plan-content__inner {
    left: calc(50% + 1rem);
  }
}

.option-item .plan-content__item {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .option-item .plan-content__item {
    font-size: 1rem;
  }
}

.option-item .plan-price {
  border-top: none;
  border-left: 3px solid #edf1f2;
  border-left: 0.1875rem solid #edf1f2;
  border-right: 3px solid #edf1f2;
  border-right: 0.1875rem solid #edf1f2;
  border-bottom: 3px solid #edf1f2;
  border-bottom: 0.1875rem solid #edf1f2;
}
@media screen and (min-width: 768px) {
  .option-item .plan-price {
    max-width: 16.25rem;
    border: 0.125rem solid #edf1f2;
  }
}

.option-item .plan-price__price {
  font-size: 38px;
  font-size: 2.375rem;
}

.option-item .plan-price__price .yen {
  font-size: 22px;
  font-size: 1.375rem;
  margin: 9px 2px 0 6px;
  margin: 0.5625rem 0.125rem 0 0.375rem;
}

.option-item .plan-price__minPrice {
  font-size: 18px;
  font-size: 1rem;
  margin-top: 4px;
  margin-top: 0.25rem;
}

.option-head {
  background-color: #3192c4;
  color: #fff;
  text-align: center;
  height: 100%;
  position: relative;
  padding: 20px;
  padding: 1.25rem;
  height: 228px;
  height: 14.25rem;
}
@media screen and (min-width: 768px) {
  .option-head {
    width: 14.8125rem;
    height: inherit;
  }
}

.option-head__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.3;
}

.option-item:nth-of-type(2) .plan-price {
  height: 230px;
  height: 14.375rem;
}
@media screen and (min-width: 768px) {
  .option-item:nth-of-type(2) .plan-price {
    height: inherit;
  }
}

@media screen and (min-width: 768px) {
  .option-item .plan-content__title {
    letter-spacing: 0.05rem;
  }

  .option-item:first-of-type {
    height: 15rem;
  }

  .option-item:nth-of-type(2) {
    height: 13.5625rem;
  }

  .option-item:last-of-type {
    margin-bottom: 0;
    height: 14.25rem;
  }
}
.forecast-type {
  padding: 70px 0;
  padding: 4.375rem 0;
}
@media screen and (min-width: 768px) {
  .forecast-type {
    padding: 7.375rem 0;
  }
}

@media screen and (min-width: 768px) {
  .f-type__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.f-type__item {
  background-color: #edf1f2;
  max-width: 598px;
  max-width: 37.375rem;
  width: 100%;
  padding: 10px 18px 18px;
  padding: 0.625rem 1.125rem 1.125rem;
  margin: 0 auto;
}

.f-type__item:first-of-type {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .f-type__item:first-of-type {
    margin-right: 2.75rem;
    margin-bottom: 0;
  }
}

.f-type__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: normal;
  text-align: center;
}

.f-type__img {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.f-type__flex {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 600px) {
  .f-type__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.f-type__icon {
  width: 131px;
  width: 8.1875rem;
  height: 105px;
  height: 6.5625rem;
  margin-right: 20px;
  margin-right: 1.25rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .f-type__icon {
    margin-bottom: 0;
  }
}

.f-type__item:nth-of-type(2) .f-type__icon {
  width: 117px;
  width: 7.3125rem;
  height: 103px;
  height: 6.4375rem;
  margin-left: 11px;
  margin-left: 0.6875rem;
  margin-right: 24px;
  margin-right: 1.5rem;
}

.f-type__merit {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  padding-left: 18px;
  padding-left: 1.125rem;
  text-indent: -18px;
  text-indent: -1.125rem;
}

.f-type__merit::before {
  content: "";
  display: inline-block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #3192c4;
  margin-right: 8px;
  margin-right: 0.5rem;
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
}

@media screen and (min-width: 768px) {
  .s-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.s-card {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#f4f6f7), color-stop(88%, #f4f6f7), color-stop(88%, transparent), to(transparent));
  background: linear-gradient(#f4f6f7 0%, #f4f6f7 88%, transparent 88%, transparent 100%);
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .s-card {
    width: 48.2258064516%;
  }
}

.s-card:last-of-type {
  margin-bottom: 0;
}

.s-card__inner {
  padding: 15px;
  padding: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .s-card__inner {
    padding: 1.875rem;
  }
}

.s-card__title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  letter-spacing: 0.05625rem;
}

.s-card__title.develop {
  color: #119a70;
}

.s-card__title.support {
  color: #d5ac00;
}

.s-card__text {
  margin-top: 15px;
  margin-top: 0.9375rem;
  line-height: 1.7;
  letter-spacing: 0.3px;
  letter-spacing: 0.01875rem;
}

.s-card__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.s-card__btn .btn {
  font-size: 16px;
  font-size: 1rem;
  padding: 12px 0 12px 3px;
  padding: 0.75rem 0 0.75rem 0.1875rem;
  margin: 0 auto;
}

.s-develop {
  border-top: 1px solid #dfe5ea;
  border-top: 0.0625rem solid #dfe5ea;
  padding: 70px 0;
  padding: 4.375rem 0;
}
@media screen and (min-width: 768px) {
  .s-develop {
    padding: 7.5rem 0 5.5rem;
  }
}

.s-develop .title-pages-section {
  background-color: #119a70;
  border: 1px solid #119a70;
  border: 0.0625rem solid #119a70;
  letter-spacing: 0.9px;
  letter-spacing: 0.05625rem;
  padding: 5px 25px 3px 19px;
  padding: 0.3125rem 1.5625rem 0.1875rem 1.1875rem;
  font-size: 28px;
  font-size: 1.75rem;
}

@media screen and (min-width: 768px) {
  .s-develop .service__content {
    margin-top: 2.9375rem;
  }
}

.s-develop .service__ill {
  width: 124px;
  width: 7.75rem;
}
@media screen and (min-width: 768px) {
  .s-develop .service__ill {
    width: 15.5rem;
    top: -11.4375rem;
  }
}

/* saas 図解 */
.s-figure {
  margin-top: 88px;
  margin-top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .s-figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.s-figure__item,
.s-figure__container {
  width: 100%;
  max-width: 400px;
  max-width: 25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .s-figure__item,
.s-figure__container {
    max-width: 17.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .s-figure__item.width {
    max-width: 37.375rem;
  }
}

.s-figure__item:not(:last-of-type) {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .s-figure__item:not(:last-of-type) {
    margin-right: 2.75rem;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .s-figure__item:nth-of-type(2) .s-figure__container:first-of-type {
    margin-right: 2.75rem;
  }
}

@media screen and (min-width: 768px) {
  .s-figure__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.s-figure__head {
  position: relative;
  background-color: #3192c4;
  color: #fff;
  padding: 6px 0 14px;
  padding: 0.375rem 0 0.875rem;
  text-align: center;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}

.s-figure__num {
  width: 80px;
  width: 5rem;
  position: absolute;
  top: -68px;
  top: -4.25rem;
  left: -14px;
  left: -0.875rem;
}
@media screen and (min-width: 768px) {
  .s-figure__num {
    left: -2.75rem;
  }
}

.s-figure__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
}

.s-figure__head p span {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  border-bottom: 4px solid #afdcf2;
  border-bottom: 0.25rem solid #afdcf2;
}

.s-figure__img {
  width: 169px;
  width: 10.5625rem;
  margin: 0 auto;
  position: relative;
}

.s-figure__img::before {
  content: "";
  position: absolute;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: -60%;
  left: 50%;
  width: 4px;
  width: 0.25rem;
  height: 93px;
  height: 5.8125rem;
  background-color: #3192c4;
  z-index: -1;
}

.s-figure__content {
  background-color: #f4f6f7;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  height: 347px;
  height: 21.6875rem;
  margin-top: 13px;
  margin-top: 0.8125rem;
}

.s-figure__listTitle {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #3192c4;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.6;
}

.s-figure__list {
  margin-top: 13px;
  margin-top: 0.8125rem;
}

.s-figure__list li {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.s-figure__list li:not(:last-of-type) {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.s-figure__list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #3192c4;
  vertical-align: middle;
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
  margin-right: 12px;
  margin-right: 0.75rem;
}

.s-figure__btn {
  margin-top: -27px;
  margin-top: -1.6875rem;
}

.s-figure__btn .btn {
  width: 237px;
  width: 14.8125rem;
  padding: 15px 0 14px;
  padding: 0.9375rem 0 0.875rem;
  line-height: 1.3;
  margin: 0 auto;
  font-size: 16px;
  font-size: 1rem;
}

.s-info {
  padding: 70px 0;
  padding: 4.375rem 0;
}
@media screen and (min-width: 768px) {
  .s-info {
    padding: 7.5rem 0;
  }
}

@media screen and (min-width: 768px) {
  .s-info__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.s-info__img {
  width: 85%;
}
@media screen and (min-width: 768px) {
  .s-info__img {
    width: 36.6666666667%;
    margin-right: 3.875rem;
  }
}

.s-info__content {
  max-width: 750px;
  max-width: 46.875rem;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .s-info__content {
    padding: 3.125rem 0 0 0;
    margin-right: 3.125rem;
  }
}

.s-info__title {
  font-weight: 700;
  letter-spacing: 1.2px;
  letter-spacing: 0.075rem;
  line-height: 1.59;
  font-size: 26px;
  font-size: 1.625rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .s-info__title {
    margin-bottom: 2.25rem;
    font-size: 1.875rem;
  }
}

.s-info__text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.3px;
  letter-spacing: 0.01875rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .s-info__text {
    letter-spacing: 0.05625rem;
    line-height: 2;
  }
}

.s-saas {
  border-top: 1px solid #adc1d0;
  border-top: 0.0625rem solid #adc1d0;
  padding: 70px 0;
  padding: 4.375rem 0;
}
@media screen and (min-width: 768px) {
  .s-saas {
    padding: 7.5rem 0 7.4375rem;
  }
}

.s-saas .title-pages-section {
  background-color: #3192c4;
  border: 1px solid #3192c4;
  border: 0.0625rem solid #3192c4;
  font-size: 26px;
  font-size: 1.625rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  padding: 6px 25px 6px 20px;
  padding: 0.375rem 1.5625rem 0.375rem 1.25rem;
}

.s-saas .service__ill {
  width: 138px;
  width: 8.625rem;
}
@media screen and (min-width: 768px) {
  .s-saas .service__ill {
    width: 17.4375rem;
    top: -7.875rem;
  }
}

.s-saas__title {
  margin-bottom: 31px;
  margin-bottom: 1.9375rem;
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 700;
  color: #3192c4;
  margin-left: -4px;
  margin-left: -0.25rem;
  letter-spacing: 1.3px;
  letter-spacing: 0.08125rem;
}

.s-saas__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  letter-spacing: 0.075rem;
}
@media screen and (min-width: 768px) {
  .s-saas__text {
    margin-top: 3.125rem;
    font-size: 1.875rem;
  }
}

.s-support {
  border-top: 1px solid #dfe5ea;
  border-top: 0.0625rem solid #dfe5ea;
  padding: 70px 0;
  padding: 4.375rem 0;
}
@media screen and (min-width: 768px) {
  .s-support {
    padding: 8.0625rem 0 5.8125rem;
  }
}

.s-support .title-pages-section {
  background-color: #d5ac00;
  border: 1px solid #d5ac00;
  border: 0.0625rem solid #d5ac00;
  letter-spacing: 0.9px;
  letter-spacing: 0.05625rem;
  padding: 3px 25px 4px 19px;
  padding: 0.1875rem 1.5625rem 0.25rem 1.1875rem;
  font-size: 28px;
  font-size: 1.75rem;
}

@media screen and (min-width: 768px) {
  .s-support .service__content {
    margin-top: 2.9375rem;
  }
}

.s-support .service__ill {
  width: 140px;
  width: 8.75rem;
}
@media screen and (min-width: 768px) {
  .s-support .service__ill {
    width: 17.5rem;
    top: -11.5rem;
  }
}

.service .title-pages-section {
  color: #fff;
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
  line-height: 1.7;
}

.service__text {
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.9px;
  letter-spacing: 0.05625rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .service__text {
    padding-right: 20.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .service__content {
    margin-top: 3.5625rem;
    position: relative;
  }
}

.service__ill {
  margin: 10px 0 5px auto;
  margin: 0.625rem 0 0.3125rem auto;
}
@media screen and (min-width: 768px) {
  .service__ill {
    position: absolute;
    right: 0;
    margin: 0;
  }
}

.top-case {
  background: #f4f6f7;
  padding: 70px 0;
  padding: 4.375rem 0;
}
@media screen and (min-width: 768px) {
  .top-case {
    padding: 5rem 0 5.875rem;
  }
}

.top-case__text {
  letter-spacing: 0.3px;
  letter-spacing: 0.01875rem;
  margin-top: 23px;
  margin-top: 1.4375rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.top-case__btn {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-case__btn {
    margin-top: 1.6875rem;
  }
}

.top-case__btn .btn {
  margin: 0 auto;
}

.top-mv {
  position: relative;
  max-width: 1440px;
  max-width: 90rem;
  width: 100%;
  margin: 0 auto;
}

.top-mv__img {
  height: 850px;
}
@media screen and (min-width: 768px) {
  .top-mv__img {
    height: auto;
  }
}

.top-mv__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 75% 100%;
     object-position: 75% 100%;
}
@media screen and (min-width: 768px) {
  .top-mv__img img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.top-mv__inner {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, .9);
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  top: 50%;
  left: 50%;
}
@media screen and (min-width: 768px) {
  .top-mv__inner {
    top: 59.8%;
    left: 20.7%;
  }
}

.top-mv__copy {
  width: 304px;
  width: 19rem;
}

.top-mv__btn {
  margin-top: 85px;
  margin-top: 5.3125rem;
}

.top-news {
  padding: 70px 0;
  padding: 4.375rem 0;
}
@media screen and (min-width: 768px) {
  .top-news {
    padding: 4.375rem 0 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .top-news__header {
    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;
  }
}

.top-news__cats {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .top-news__cats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.9375rem;
  }
}

.top-news__cat {
  display: inline-block;
  color: #2b6ea0;
  border: 2px solid #2b6ea0;
  border: 0.125rem solid #2b6ea0;
  padding: 5px 14px;
  padding: 0.3125rem 0.875rem;
  border-radius: 1.25rem;
  margin-right: 10px;
  margin-right: 0.625rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .top-news__cat {
    margin: 0 0 0 0.5625rem;
  }
}

.top-news__cat.current {
  color: #fff;
  background-color: #2b6ea0;
}

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

.top-news__article {
  display: block;
  background: #f4f6f7;
  margin-bottom: 1px;
  padding: 16px 20px;
  padding: 1rem 1.25rem;
}

.article__item {
  letter-spacing: 0.3px;
  letter-spacing: 0.01875rem;
}
@media screen and (min-width: 768px) {
  .article__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.article__head {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .article__head {
    margin: 0;
    min-width: 15.75rem;
  }
}

.article__cat {
  background: #2b6ea0;
  color: #fff;
  display: inline-block;
  width: 141px;
  width: 8.8125rem;
  padding: 2px 0;
  padding: 0.125rem 0;
  text-align: center;
  margin-left: 16px;
  margin-left: 1rem;
  margin-right: 20px;
  margin-right: 1.25rem;
}

.article__title {
  font-weight: normal;
  font-size: 16px;
  font-size: 1rem;
}

.top-news__link {
  color: #2b6ea0;
  margin-top: 18px;
  margin-top: 1.125rem;
}

.top-news__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 140px;
  max-width: 8.75rem;
  width: 100%;
  margin-left: auto;
}

.arrow-round {
  margin-left: 10px;
  margin-left: 0.625rem;
  background-color: #2b6ea0;
  position: relative;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
}

.arrow-round img {
  width: 11px;
  width: 0.6875rem;
  height: 11px;
  height: 0.6875rem;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.top-news__arrow--navy {
  display: none;
}

/* ホバー */
@media screen and (min-width: 768px) {
  .top-news__cat:hover {
    background-color: #2b6ea0;
    color: #fff;
    opacity: 1;
  }

  .top-news__article:hover {
    background-color: #d9e4eb;
    opacity: 1;
  }

  .top-news__link a:hover {
    color: #2b6ea0;
  }

  .top-news__link a:hover .arrow-round {
    background-color: #fff;
    border: 0.125rem solid #2b6ea0;
    opacity: 1;
  }

  .top-news__link a:hover .top-news__arrow--white {
    display: none;
  }

  .top-news__link a:hover .top-news__arrow--navy {
    display: block;
    -webkit-animation: show 0.3s ease 0s;
    animation: show 0.3s ease 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
}
.top-pr {
  padding: 40px 0 70px;
  padding: 2.5rem 0 4.375rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#f4f6f7), color-stop(65%, #f4f6f7), color-stop(65%, #fff), to(#fff));
  background: linear-gradient(#f4f6f7 0%, #f4f6f7 65%, #fff 65%, #fff 100%);
}
@media screen and (min-width: 768px) {
  .top-pr {
    padding: 4.4375rem 0 8.5625rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#f4f6f7), color-stop(68%, #f4f6f7), color-stop(68%, #fff), to(#fff));
    background: linear-gradient(#f4f6f7 0%, #f4f6f7 68%, #fff 68%, #fff 100%);
  }
}

.top-pr__inner {
  position: relative;
}

.top-pr__img {
  display: block;
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
  width: 80%;
}
@media screen and (min-width: 600px) {
  .top-pr__img {
    width: 60%;
  }
}
@media screen and (min-width: 768px) {
  .top-pr__img {
    margin: 0;
    width: 42.5%;
    position: absolute;
    top: -8.125rem;
    right: 1.25rem;
  }
}
@media screen and (min-width: 1280px) {
  .top-pr__img {
    width: 38.3125rem;
    top: -9.375rem;
    right: 0.8125rem;
  }
}

.top-pr__title {
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 1.4px;
  letter-spacing: 0.0875rem;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .top-pr__title {
    font-size: 2.125rem;
  }
}

.top-pr__text {
  margin-top: 41px;
  margin-top: 2.5625rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  letter-spacing: 0.3px;
  letter-spacing: 0.01875rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .top-pr__text {
    margin-bottom: 4.375rem;
  }
}

.top-public {
  padding: 70px 0;
  padding: 4.375rem 0;
}
@media screen and (min-width: 768px) {
  .top-public {
    padding: 7.5rem 0 7.9375rem;
  }
}

.top-public .title-section__title {
  letter-spacing: 1.8px;
  letter-spacing: 0.1125rem;
}

.top-public__text {
  letter-spacing: 0.3px;
  letter-spacing: 0.01875rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.public-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .public-logos {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .public-logos:before {
    content: "";
    display: block;
    width: 11.875rem;
    padding: 0 0.3125rem 0.3125rem 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .public-logos:after {
    content: "";
    display: block;
    width: 11.875rem;
    padding: 0 0.3125rem 0.3125rem 0;
  }
}

.public-logo {
  width: 50%;
  padding: 5px;
  padding: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .public-logo {
    width: 11.875rem;
    margin-bottom: 1.25rem;
    padding: 0 0.3125rem 0.3125rem 0;
  }
}

.top-service {
  padding: 70px 0 40px;
  padding: 4.375rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-service {
    padding: 7.5rem 0 6.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .top-service__container {
    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;
    max-width: 86.875rem;
    padding-right: 50px;
    margin-bottom: 6.25rem;
  }
}

@media screen and (min-width: 1441px) {
  .top-service__container {
    margin: 0 auto 6.25rem;
  }
}
.top-service__contents {
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .top-service__contents {
    padding: 0;
    margin-left: 2.5rem;
  }
}

.top-service__img {
  max-width: 528px;
  max-width: 33rem;
  width: 100%;
  height: 500px;
  height: 31.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .top-service__img {
    height: 50rem;
  }
}
.top-service .title-section {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .top-service .title-section {
    margin-bottom: 3.1875rem;
  }
}

.service-item {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .service-item {
    margin-bottom: 0;
  }
}

.service-item__title {
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: normal;
  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;
  color: #fff;
  padding: 8px 8px 8px 20px;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  border-radius: 0 2.5rem 2.5rem 0;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  letter-spacing: 1.4px;
  letter-spacing: 0.0875rem;
}

.service-item__title img {
  margin-left: 20px;
  margin-left: 1.25rem;
  display: inline-block;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
}

.service-item__text {
  line-height: 1.7;
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
  letter-spacing: 0.3px;
  letter-spacing: 0.01875rem;
}

@media screen and (min-width: 768px) {
  .service-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.service-develop {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .service-develop {
    margin-right: 1.25rem;
  }
}

.service-item__img {
  max-width: 598px;
  max-width: 37.375rem;
  width: 100%;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
}

.saas-media {
  background: #f4f6f7;
  padding: 15px;
  padding: 0.9375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .saas-media {
    width: 46.8125rem;
    padding: 1.875rem;
  }
}

.saas-media__title {
  font-size: 26px;
  font-size: 1.625rem;
  color: #2b6ea0;
  letter-spacing: 0;
}

.saas-media__img {
  width: 100px;
  width: 6.25rem;
  position: absolute;
  top: -36px;
  top: -2.25rem;
  right: -10px;
  right: -0.625rem;
}
@media screen and (min-width: 600px) {
  .saas-media__img {
    width: 8.75rem;
    right: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .saas-media__img {
    width: 10.625rem;
    top: -3.8125rem;
    right: 1.25rem;
  }
}

.saas-media__text {
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  letter-spacing: 0.3px;
  letter-spacing: 0.01875rem;
}

.service-cat {
  background: #fff;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .service-cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.service-cat:last-of-type {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .service-cat .service-cat__link {
    margin-bottom: 0;
  }
}

.service-cat__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #62acd0;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.3px;
  letter-spacing: 0.01875rem;
  font-weight: normal;
  padding: 25px 20px 25px 14px;
  padding: 1.5625rem 1.25rem 1.5625rem 0.875rem;
  width: 100%;
  height: 76px;
  height: 4.75rem;
  margin: 0 0 15px 0;
  margin: 0 0 0.9375rem 0;
}
@media screen and (min-width: 768px) {
  .service-cat__title {
    max-width: 16.5625rem;
    border-radius: 0 2.1875rem 2.1875rem 0;
    margin: 0 1.3125rem 0 0;
    line-height: 1.0;
  }
}

.service-cat__title img {
  width: 54px;
  width: 3.375rem;
  margin-right: 12px;
  margin-right: 0.75rem;
}

.service-cat__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.service-cat__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2.125rem;
  padding: 10px 8px 10px 18px;
  padding: 0.625rem 0.5rem 0.625rem 1.125rem;
  margin: 0 10px 14px 0;
  margin: 0 0.625rem 0.875rem 0;
}

.service-cat__link img {
  margin-left: 10px;
  margin-left: 0.625rem;
  width: 11px;
  width: 0.6875rem;
}

.service-cat__arrow--white {
  display: none;
}

.service-saas .service-cat__links {
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .service-saas .service-cat__links {
    margin-left: 0;
  }
}

.service-saas .service-cat__link {
  color: #3192c4;
  border: 2px solid #3192c4;
  border: 0.125rem solid #3192c4;
}
.service-saas .service-item__title {
  background: #3192c4;
  max-width: 570px;
  max-width: 35.75rem;
  width: 100%;
}

.service-develop .service-cat__link {
  color: #119a70;
  border: 2px solid #119a70;
  border: 0.125rem solid #119a70;
}
.service-develop .service-item__title {
  background: #119a70;
  max-width: 320px;
  max-width: 33.125rem;
  width: 100%;
}

.service-support .service-cat__link {
  color: #c99300;
  border: 2px solid #c99300;
  border: 0.125rem solid #c99300;
}
.service-support .service-item__title {
  background: #d5ac00;
  max-width: 330px;
  max-width: 20.125rem;
  width: 100%;
}

.service-develop,
.service-support {
  max-width: 598px;
  max-width: 37.375rem;
  width: 100%;
}

/* ホバー */
@media screen and (min-width: 768px) {
  .service-cat__link:hover {
    opacity: 1;
  }

  .service-cat__link:hover .service-cat__arrow--color {
    display: none;
  }

  .service-cat__link:hover .service-cat__arrow--white {
    display: block;
    -webkit-animation: show 0.3s ease 0s;
    animation: show 0.3s ease 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  .service-saas .service-cat__link:hover {
    color: #fff;
    background-color: #3192c4;
  }

  .service-develop .service-cat__link:hover {
    color: #fff;
    background-color: #119a70;
  }

  .service-support .service-cat__link:hover {
    color: #fff;
    background-color: #c99300;
  }
}
/*# sourceMappingURL=styles.css.map */

/* お問い合わせ・リクルートエリア */

.pc-only {
  display: block;
}

.sp-only {
  display: none !important;
}

.pc-none {
  display: none;
}

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

	.sp-only {
    display: block !important;
  }

  .sp-none {
    display: none;
  }

  .sp-block {
    display: block !important;
  }
}

/* recruit */
.page-recruit {
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
}

.page-recruit > .inner p {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.83333;
  max-width: 1240px;
  padding: 0 0 50px;
  padding: 0 0 3.125rem;
  border-bottom: 1px solid #ADC1D0;
  margin: 120px auto 0;
  margin: 7.5rem auto 0;
}

.page-recruit .sec01 h3 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #2B6EA0;
  font-weight: normal;
  display: inline-block;
  border: 0.0625rem solid #2B6EA0;
  border-radius: 0 2.5rem 2.5rem 0;
  padding: 6px 30px 6px 22px;
  padding: 0.375rem 1.875rem 0.375rem 1.375rem;
  background-color: #fff;
  letter-spacing: 1px;
  margin: 120px 0 30px;
  margin: 7.5rem 0 1.875rem;
}

.page-recruit .sec01 .box {
  background: #F4F6F7;
  padding: 40px;
  padding: 2.5rem;
}

.page-recruit .sec01 .box h4 {
  background: #62ACD0;
  display: inline-block;
  font-size: 22px;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
  padding: 6px 12px;
  padding: 0.375rem 0.75rem;
}

.page-recruit .sec01 .box h4:nth-of-type(2) {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.page-recruit .sec01 .box p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.page-recruit .sec01 .box p:nth-of-type(3) {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.page-recruit .sec01 .recruit_btn {
  background: #D9E4EB;
  text-align: center;
  padding: 20px;
  padding: 1.25rem;
  border-radius: 0;
  width: 100%;
}

.page-recruit .sec01 .recruit_btn a {
  position: relative;
  display: inline-block;
  background: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  color: #2B6EA0;
  font-weight: 500;
  padding: 15px 138px;
  padding: 0.973rem 8.625rem;
  border: 2px solid #2B6EA0;
  border-radius: 50px;
  transition: .3s;
}

.page-recruit .sec01 .recruit_btn a:hover {
  background: #2B6EA0;
  color: #fff;
  opacity: 1;
}

.page-recruit .sec01 .recruit_btn a img {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  right: 20px;
  width: auto;
}

@media screen and (max-width: 768px) {
  .page-recruit {
    padding-bottom: 70px;
    padding-bottom: 4.375rem;
  }
  
  .page-recruit > .inner p {
    padding: 0 0 30px;
    padding: 0 0 1.875rem;
    margin: 70px auto 0;
    margin: 4.375rem auto 0;
  }
  
  .page-recruit .sec01 h3 {
    margin: 70px 0 30px;
    margin: 4.375rem 0 1.875rem;
  }
  
  .page-recruit .sec01 .box {
    padding: 20px;
    padding: 1.25rem;
  }
  
  .page-recruit .sec01 .recruit_btn {
    padding: 20px;
    padding: 1.25rem;
    border-radius: 0;
  }
  
  .page-recruit .sec01 .recruit_btn a {
    width: 17.3125rem;
    padding: 15px 20px;
    padding: 0.973rem 1.25rem;
  }
}

/* contact */
.page-contact {
  overflow: hidden;
}

.page-contact .mv-pages__inner {
  padding-left: 6.25rem;
  margin: 0 -1.25rem 1.8125rem 0;
  z-index: 1;
}

.page-contact .mv-pages__title {
  color: #fff;
  padding: 6px 30px 7px 52px;
  padding: 0.375rem 1.875rem 0.4375rem 3.25rem;
  border-radius: 0 3.125rem 3.125rem 0;
  font-size: 32px;
  font-size: 2rem;
  font-weight: normal;
  position: relative;
  background-color: #2b6ea0;
  -webkit-box-shadow: 0.125rem 0.125rem #fff;
  box-shadow: 0.125rem 0.125rem #fff;
  letter-spacing: 1.6px;
  letter-spacing: 0.1rem;
}

@media screen and (min-width: 768px) {
  .page-contact .mv-pages__title {
    padding-left: 6.375rem;
  }
}

.page-contact .sec01 h3 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #2B6EA0;
  font-weight: normal;
  display: inline-block;
  border: 0.0625rem solid #2B6EA0;
  border-radius: 0 2.5rem 2.5rem 0;
  padding: 6px 30px 6px 22px;
  padding: 0.375rem 1.875rem 0.375rem 1.375rem;
  background-color: #fff;
  letter-spacing: 1px;
  margin: 120px 0 30px;
  margin: 7.5rem 0 1.875rem;
}

.page-contact .sec01 .inner > p {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
}

.page-contact .sec01 .inner > ul:nth-of-type(1) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.page-contact .sec01 .inner > ul:nth-of-type(1) li {
  font-size: 18px;
  font-size: 1.125rem;
  color: #2B6EA0;
  font-weight: 500;
  line-height: 2;
}

.page-contact .sec01 .inner > .f-flow__list {
  display: flex;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.page-contact .sec01 .inner > .f-flow__list li {
  width: calc(33.3333% - 0.337rem);
  margin-right: 0.375rem;
  margin-bottom: 0;
}

.page-contact .sec01 .inner > .f-flow__list li div {
  color: #2B6EA0;
  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;
  text-align: center;
  background-color: #EDF1F2;
  position: relative;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  width: 100%;
  height: 80px;
  height: 5rem;
}

.page-contact .sec01 .inner > .f-flow__list li:first-child div {
  background: #2B6EA0;
  color: #fff;
}

.page-contact .sec01 .inner > .f-flow__list li div::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -35px;
  bottom: -2.1875rem;
  left: 50%;
  margin-left: -16px;
  margin-left: -1rem;
  border: 16px solid transparent;
  border: 1rem solid transparent;
  border-top: 24px solid #99d0e8;
  border-top: 1.5rem solid #99d0e8;
}

.page-contact .sec01 .inner > .f-flow__list li:first-child div::before {
  border-top: 24px solid #2B6EA0;
  border-top: 1.5rem solid #2B6EA0;
}

.page-contact .sec01 .inner > .f-flow__list li:last-child div::before {
  display: none;
}

@media screen and (min-width: 768px) {
  .page-contact .sec01 .inner > .f-flow__list li div::before {
    top: 50%;
    right: -2.4375rem;
    bottom: inherit;
    left: inherit;
    margin-top: -1.1875rem;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #EDF1F2;
  }

  .page-contact .sec01 .inner > .f-flow__list li:first-child div::before {
    top: 50%;
    right: -2.4375rem;
    bottom: inherit;
    left: inherit;
    margin-top: -1.1875rem;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #2B6EA0;
  }
}

.page-contact .sec01 .inner > .f-flow__list li div::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -48px;
  bottom: -3rem;
  left: 50%;
  margin-left: -20px;
  margin-left: -1.25rem;
  border: 20px solid transparent;
  border: 1.25rem solid transparent;
  border-top: 28px solid #fff;
  border-top: 1.75rem solid #fff;
}

.page-contact .sec01 .inner > .f-flow__list li:last-child div::after {
  display: none;
}

@media screen and (min-width: 768px) {
  .page-contact .sec01 .inner > .f-flow__list li div::after {
    top: 50%;
    right: -3rem;
    bottom: inherit;
    left: inherit;
    margin-top: -1.1875rem;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #fff;
  }
}

.page-contact .sec01 .inner > p:nth-of-type(2) {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-size: 1.125rem;
  color: #2B6EA0;
  font-weight: 500;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.page-contact .sec01 .inner > p:nth-of-type(2) img {
  width: auto;
  max-width: 100%;
  margin-right: 10px;
}

.page-contact .sec01 .inner .content {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.page-contact .sec01 .inner .content .box {
  display: flex;
  margin-top: 22px;
  margin-top: 1.375rem;
}

.page-contact .sec01 .inner .content .box > div:nth-of-type(1) {
  display: flex;
  width: 22%;
}

.page-contact .sec01 .inner .content .box > div:nth-of-type(1) label{
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  padding-top: 20px;
  padding-top: 1.25rem;
}

.page-contact .sec01 .inner .content .box > div:nth-of-type(1) img {
  display: inline-block;
  width: 20px;
  max-width: 100%;
  height: 24px;
  margin: 20px 0 0 8px;
  margin: 1.25rem 0 0 0.5rem;
}

.page-contact .sec01 .inner .content .box > div:nth-of-type(2) {
  width: 78%;
}

.page-contact .sec01 .inner .content .box > div:nth-of-type(2) div {
  margin-top: 6px;
  margin-top: 0.375rem;
}

.page-contact .sec01 .inner .content .box > div:nth-of-type(2) div:first {
  margin-top: 0;
}

.page-contact .sec01 .inner .content .box > div:nth-of-type(2) input,
.page-contact .sec01 .inner .content .box > div:nth-of-type(2) select,
.page-contact .sec01 .inner .content .box > div:nth-of-type(2) textarea {
  background: #F4F6F7;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
}

.page-contact .sec01 .inner .content .box > div:nth-of-type(2) select {
  position: relative;
  color: #818283;
}

.page-contact .sec01 .inner .content .box > div:nth-of-type(2) br {
  display: block;
  content: "";
  margin-top: 6px;
  margin-top: 0.375rem;
}

.page-contact .sec01 .inner .content form .btn_sec {
  text-align: center;
  padding: 60px 0 140px;
  padding: 3.75rem 0 8.75rem;
}

.page-contact .sec01 .inner .content form .btn_sec input {
  background: #2B6EA0;
  font-size: 18rem;
  font-size: 1.125rem;
  width: 277px;
  padding: 15px 0;
  padding: 0.9375rem 0;
  border: none;
  border-radius: 50px;
}

.page-contact .sec01 .inner .content form .btn_sec div {
  position: relative;
  display: inline-block;
}

.page-contact .sec01 .inner .content form .btn_sec div img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
  width: 11px;
  height: 11px;
}

.page-contact .sec01 .inner .content .box:nth-of-type(8) > div:nth-of-type(2),
.page-contact .sec01 .inner .content .box:nth-of-type(9) > div:nth-of-type(2) {
  position: relative;
}

.page-contact .sec01 .inner .content .box:nth-of-type(8) > div:nth-of-type(2) img,
.page-contact .sec01 .inner .content .box:nth-of-type(9) > div:nth-of-type(2) img {
  position: absolute;
  top: 21px;
  top: 1.3125rem;
  right: 30px;
  right: 1.875rem;
  width: 27px;
  width: 1.6875rem;
  height: 27px;
  height: 1.6875rem;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .page-contact .mv-pages__inner {
    padding-left: 3.125rem;
    margin: 1.875rem -1.25rem 1.8125rem 0;
  }

  .page-contact .sec01 h3 {
    margin: 40px 0 30px;
    margin: 2.5rem 0 1.875rem;
  }

  .page-contact .sec01 .inner > .f-flow__list {
    flex-direction: column;
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .page-contact .sec01 .inner > .f-flow__list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6px;
    margin-bottom: 0.375rem;
  }

  .page-contact .sec01 .inner > .f-flow__list li div::before {
    border-top: 24px solid #EDF1F2;
    border-top: 1.5rem solid #EDF1F2;
  }

  .page-contact .sec01 .inner .content .box {
    flex-direction: column;
    margin-top: 22px;
    margin-top: 1.375rem;
  }

  .page-contact .sec01 .inner > .f-flow__list li div {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .page-contact .sec01 .inner .content {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .page-contact .sec01 .inner > p:nth-of-type(2) {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .page-contact .sec01 .inner .content .box > div:nth-of-type(1) {
    display: flex;
    width: 100%;
  }

  .page-contact .sec01 .inner .content .box > div:nth-of-type(2) {
    width: 100%;
    margin-top: 15px;
    margin-top: 0.9375rem;
  }

  .page-contact .sec01 .inner .content .box > div:nth-of-type(2) input, .page-contact .sec01 .inner .content .box > div:nth-of-type(2) select, .page-contact .sec01 .inner .content .box > div:nth-of-type(2) textarea {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 15px 20px;
    padding: 0.9375rem 1.25rem;
  }

  .page-contact .sec01 .inner .content .box:nth-of-type(8) > div:nth-of-type(2) img, .page-contact .sec01 .inner .content .box:nth-of-type(9) > div:nth-of-type(2) img {
    top: 15px;
    top: 0.9375rem;
    right: 15px;
    right: 0.9375rem;
    width: 20px;
    width: 1.25rem;
    height: 20px;
    height: 1.25rem;
  }

  .page-contact .sec01 .inner .content form .btn_sec {
    padding: 60px 0 70px;
    padding: 3.75rem 0 4.375rem;
  }
}

/* page-contact-error */
.page-contact .sec01 .inner .content .box > div:nth-of-type(2) .alert {
  background: #fff;
  border: 3px solid #D05050;
}

.page-contact .sec01 .inner .content .box > div:nth-of-type(2) .error {
  background: #F8EDED;
  font-size: 18rem;
  font-size: 1.125rem;
  padding: 6px 30px 7px;
  padding: 0.375rem 1.875rem 0.4375rem;
}

@media screen and (max-width: 768px) {
  .page-contact .sec01 .inner .content .box > div:nth-of-type(2) .error {
    font-size: 16rem;
    font-size: 1rem;
  }
}

/* page-contact-confirm */
.mw_wp_form_confirm .box > div:nth-of-type(2) {
  background: #F4F6F7;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
}

.mw_wp_form_confirm .box:nth-of-type(3) > div:nth-of-type(2),
.mw_wp_form_confirm .box:nth-of-type(4) > div:nth-of-type(2) {
  background: #fff;
  padding: 0;
}

.mw_wp_form_confirm .box > div:nth-of-type(2) div {
  background: #F4F6F7;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
}

.mw_wp_form_confirm form .btn_sec {
  display: flex;
  justify-content: center;
}

.mw_wp_form_confirm form .btn_sec input {
  position: relative;
  margin: 0 10px;
}

.mw_wp_form_confirm form .btn_sec div:nth-of-type(1) img {
  right: unset !important;
  left: 21px;
}

.mw_wp_form_confirm form .btn_sec div:nth-of-type(2) img {
  right: 21px !important;
}

.mw_wp_form_confirm .box-wrap > div:last-child {
  background: #EDF1F2;
  font-size: 20px;
  font-size: 1.25rem;
  color: #2B6EA0;
  font-weight: 500;
  text-align: center;
  max-width: 900px;
  padding: 10px 20px;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}

.page-contact-confirm .sec01 .inner > .f-flow__list li:first-child div,
.page-contact-thanks .sec01 .inner > .f-flow__list li:first-child div {
  background-color: #EDF1F2;
  color: #2B6EA0;
}

.page-contact-confirm .sec01 .inner > .f-flow__list li:first-child div::before,
.page-contact-thanks .sec01 .inner > .f-flow__list li:first-child div::before  {
  border-left: 1.5rem solid #EDF1F2;
}

.page-contact-confirm .sec01 .inner > .f-flow__list li:nth-of-type(2) div
 {
  background-color: #2B6EA0;
  color: #EDF1F2;
}

.page-contact-confirm .sec01 .inner > .f-flow__list li:nth-of-type(2) div::before {
  border-left: 1.5rem solid #2B6EA0;
}

.page-contact-confirm .sec01 .inner .content .box:nth-of-type(8) > div:nth-of-type(2) img, .page-contact-confirm .sec01 .inner .content .box:nth-of-type(9) > div:nth-of-type(2) img {
  display: none;
}

@media screen and (max-width: 768px) {
  .page-contact-confirm .sec01 .inner > .f-flow__list li:first-child div::before,
  .page-contact-thanks .sec01 .inner > .f-flow__list li:first-child div::before  {
    border: 1rem solid transparent;
    border-top: 1.5rem solid #EDF1F2;
  }

  .page-contact-confirm .sec01 .inner > .f-flow__list li:nth-of-type(2) div::before {
    border: 1rem solid transparent;
    border-top: 1.5rem solid #2B6EA0;
  }

  .page-contact-confirm .sec01 .inner .content .box > div:nth-of-type(2), 
  .page-contact-confirm .sec01 .inner .content .box > div:nth-of-type(2) div, 
  .page-contact-confirm .sec01 .inner .content .conf {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 15px 20px;
    padding: 0.9375rem 1.25rem;
  }

  .page-contact-confirm .sec01 .inner .content .box:nth-of-type(8) > div:nth-of-type(2),
  .page-contact-confirm .sec01 .inner .content .box:nth-of-type(9) > div:nth-of-type(2) {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 15px 20px 10px;
    padding: 0.9375rem 1.25rem 0.625rem;
  }

  .page-contact-confirm .sec01 .inner .content .box:nth-of-type(3) > div:nth-of-type(2), 
  .page-contact-confirm .sec01 .inner .content .box:nth-of-type(4) > div:nth-of-type(2) {
    padding: 0;
  }

  .mw_wp_form_confirm form .btn_sec {
    flex-direction: column;
    justify-content: center;
  }

  .mw_wp_form_confirm form .btn_sec {
    width: 277px;
    margin: 0 auto;
  }

  .mw_wp_form_confirm form .btn_sec > div:nth-of-type(2) {
    margin-top: 15px;
    margin-top: 0.9375rem;
  }

  .mw_wp_form_confirm form .btn_sec div:nth-of-type(2) img {
    right: 5px !important;
  }
}

/* page-contact-thanks */
.page-contact-thanks .sec01 .inner > .f-flow__list li:last-child div {
  background-color: #2B6EA0;
  color: #fff;
}

.page-contact-thanks .sec01 > .box {
  display: flex;
  max-width: 1360px;
  padding: 0 30px 0 160px;
  padding: 0 1.875rem 0 10rem;
  margin: 120px auto 0;
}

.page-contact-thanks .sec01 > .box > div:nth-of-type(1) {
  width: calc(53% - 20px);
  width: calc(53% - 1.25rem);
  margin-right: 20px;
  margin-right: 1.2rem;
}

.page-contact-thanks .sec01 > .box > div:nth-of-type(1) p {
  font-size: 18px;
  font-size: 1.125rem;
}

.page-contact-thanks .sec01 > .box > div:nth-of-type(1) p:nth-of-type(1) {
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: bold;
}

.page-contact-thanks .sec01 > .box > div:nth-of-type(1) p:nth-of-type(2) {
  margin-top: 30px;
  margin-top: 1.875rem;
  line-height: 2;
}

.page-contact-thanks .sec01 > .box > div:nth-of-type(1) p:nth-of-type(3) {
  margin-top: 50px;
  margin-top: 3.125rem;
  line-height: 2;
}

.page-contact-thanks .sec01 > .box > div:nth-of-type(2) {
  width: calc(47% - 20px);
  width: calc(47% - 1.25rem);
  margin-left: 20px;
  margin-left: 1.2rem;
}

.page-contact-thanks .sec01 > .btn_sec {
  text-align: center;
  padding: 30px 45px 15px;
  padding: 1.875rem 2.8125rem 0.9375rem;
}

.page-contact-thanks .sec01 > .btn_sec a {
  position: relative;
  display: inline-block;
  background: #2B6EA0;
  font-size: 18rem;
  font-size: 1.125rem;
  color: #fff;
  text-align: center;
  width: 277px;
  padding: 15px 0;
  padding: 0.9375rem 0;
  border: 2px solid #2B6EA0;
  border-radius: 50px;
  transition: .3s;
}

.page-contact-thanks .sec01 > .btn_sec a:hover {
  background: #fff;
  color: #2B6EA0;
  opacity: 1;
}

.page-contact-thanks .sec01 > .btn_sec a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  right: 1.25rem;
  width: 11px;
  height: 11px;
  margin: auto;
}

.page-contact-thanks .sec01 .inner02 {
  background: linear-gradient(#f4f6f7 0%, #f4f6f7 45%, #fff 45%, #fff 100%);
  padding: 40px 0 140px;
  padding: 2.5rem 0 8.75rem;
  margin-top: 105px;
  margin-top: 6.5625rem;
}

.page-contact-thanks .sec01 .inner02 .img-wrap {
  text-align: center;
}

.page-contact-thanks .sec01 .inner02 .img-wrap img {
  display: inline-block;
  width: unset;
}

.page-contact-thanks .sec01 .inner02 .btn_sec {
  text-align: center;
  margin-top: -49px;
  margin-top: -3.0625rem;
}

.page-contact-thanks .sec01 .inner02 .btn_sec a {
  position: relative;
  display: inline-block;
  background: #fff;
  font-size: 16px;
  font-size: 1rem;
  color: #2B6EA0;
  text-align: center;
  font-weight: 500;
  width: 277px;
  padding: 15px 0;
  padding: 0.973rem 0;
  border: 2px solid #2B6EA0;
  border-radius: 50px;
  transition: .3s;
}

.page-contact-thanks .sec01 .inner02 .btn_sec a:hover {
  background: #2B6EA0;
  color: #fff;
  opacity: 1;
}

.page-contact-thanks .sec01 .inner02 .btn_sec a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  right: 0.875rem;
  width: 11px;
  height: 11px;
  margin: auto;
}

.page-contact-thanks .sec01 .inner02 p {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  line-height: 1.75;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

@media screen and (max-width: 768px) {
  .page-contact-thanks .sec01 .inner > ul:nth-of-type(1) {
    margin-top: 10px;
    margin-top: 0.625rem;
  }

  .page-contact-thanks .sec01 .inner > .f-flow__list li:first-child div::before {
    border-top: 24px solid #EDF1F2;
    border-top: 1.5rem solid #EDF1F2;
  }

  .page-contact-thanks .sec01 > .box {
    flex-direction: column;
    padding: 0 20px;
    padding: 0 1.25rem;
    margin: 60px auto 0;
    margin: 3.75rem auto 0;
  }

  .page-contact-thanks .sec01 > .box > div:nth-of-type(1) {
    width: 100%;
    margin-right: 0;
    margin-top: 40px;
    margin-top: 2.5rem;
    order: 2;
  }

  .page-contact-thanks .sec01 > .box > div:nth-of-type(1) p:nth-of-type(1) {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .page-contact-thanks .sec01 > .box > div:nth-of-type(1) p:nth-of-type(3) {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .page-contact-thanks .sec01 > .box > div:nth-of-type(2) {
    width: 100%;
    margin-left: 0;
  }

  .page-contact-thanks .sec01 > .btn_sec {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .page-contact-thanks .sec01 .inner02 {
    padding: 40px 0 70px;
    padding: 2.5rem 0 4.375rem;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

}

/* END-お問い合わせ・リクルートエリア */

/* サービス分析関連｜店舗分析・画像解析・コミュニケーション分析の機能エリア */

.function_analysis_flex_area {
  display: flex;
}

.function_analysis_text_area {
  max-width: 40%;
  padding-right: 70px;
}

.function_analysis_text_area .function_analysis_subtitle {
  font-size: 1.525rem;
  line-height: 1.4;
  margin-bottom: 30px;
}

.function_analysis_text_area .function_analysis_text_content {
  line-height: 1.9;
}

.function_analysis_text_area .function_analysis_text_content .function_analysis_text_content_text {
  margin-bottom: 30px;
}

.function_analysis_image_area {
  max-width: 60%;
}

@media screen and (max-width: 767px) {
  .function_analysis_flex_area {
    flex-flow: column;
  }

  .function_analysis_text_area {
    max-width: 100%;
    padding: 0;
  }

  .function_analysis_text_content_text_sec {
    margin-bottom: 30px;
  }

  .function_analysis_image_area {
    max-width: 100%;
  }
}

.f-chara__point__sec {
  position: relative;
  padding: 20px;
  padding: 1.25rem;
  margin: 0 0 0 auto;
  max-width: 380px;
}
@media screen and (min-width: 768px) {
  .f-chara__point__sec {
    min-width: 360px;
    margin: 0 0 2.5625rem 0;
    padding: 0 1.25rem;
  }
}

.f-chara__point__sec:before {
  content: "";
  display: block;
  background-color: #f4f6f7;
  width: 130%;
  height: 135%;
  position: absolute;
  z-index: -1;
  top: -25%;
  left: -25%;
}
@media screen and (min-width: 768px) {
  .f-chara__point__sec:before {
    width: 50.75rem;
    height: 27.4375rem;
    top: -40%;
    left: -70%;
  }
}
@media screen and (min-width: 1280px) {
  .f-chara__point__sec:before {
    left: -87%;
  }
}

.f-chara__point__sec_cv {
  position: relative;
  padding: 20px;
  padding: 1.25rem;
  margin: 0 0 0 auto;
  max-width: 380px;
}
@media screen and (min-width: 768px) {
  .f-chara__point__sec_cv {
    min-width: 360px;
    margin: 0 0 2.5625rem 0;
    padding: 0 1.25rem;
  }
}

.f-chara__point__sec_cv:before {
  content: "";
  display: block;
  background-color: #f4f6f7;
  width: 130%;
  height: 135%;
  position: absolute;
  z-index: -1;
  top: -25%;
  left: -25%;
}
@media screen and (min-width: 768px) {
  .f-chara__point__sec_cv:before {
    width: 50.75rem;
    height: 25.4375rem;
    top: -75%;
    left: -70%;
  }
}
@media screen and (min-width: 1280px) {
  .f-chara__point__sec_cv:before {
    left: -87%;
  }
}

.f-chara__point__sec_vsc {
  position: relative;
  padding: 20px;
  padding: 1.25rem;
  margin: 0 0 0 auto;
  max-width: 380px;
}
@media screen and (min-width: 768px) {
  .f-chara__point__sec_vsc {
    min-width: 360px;
    margin: 3.375rem 0 2.5625rem 0;
    padding: 0 1.25rem;
  }
}

.f-chara__point__sec_vsc:before {
  content: "";
  display: block;
  background-color: #f4f6f7;
  width: 130%;
  height: 135%;
  position: absolute;
  z-index: -1;
  top: -25%;
  left: -25%;
}
@media screen and (min-width: 768px) {
  .f-chara__point__sec_vsc:before {
    width: 50.75rem;
    height: 35.4375rem;
    top: -10%;
    left: -70%;
  }
}
@media screen and (min-width: 1280px) {
  .f-chara__point__sec_vsc:before {
    left: -87%;
  }
}

.f-meirit__text__store {
  font-size: 26px;
  font-size: 1.625rem;
  border-bottom: 2px solid #afdcf2;
  border-bottom: 0.125rem solid #afdcf2;
  width: 258px;
  width: 16.125rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.49;
  margin: 0 auto;
  padding: 57px 0 16px;
  padding: 3.5625rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .f-meirit__text__store {
    padding: 4.375rem 0 1.75rem;
  }
}

/* .f-meirit__item:nth-of-type(3) .f-meirit__text__store {
  padding: 43px 0 16px;
  padding: 5.6875rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .f-meirit__item:nth-of-type(3) .f-meirit__text__store {
    padding: 5.1875rem 0 3.5rem;
  }
} */

.f-meirit__sub__store {
  font-size: 18px;
  font-size: 1rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  padding: 0 2.375rem;
}
@media screen and (min-width: 768px) {
  .f-meirit__sub__store {
    margin-top: 0.9375rem;
  }
}

.f-meirit__text__store .underline {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #afdcf2), color-stop(95%, #afdcf2), color-stop(95%, transparent));
  background: linear-gradient(transparent 85%, #afdcf2 85%, #afdcf2 95%, transparent 95%);
}

.f-meirit__text__image {
  font-size: 26px;
  font-size: 1.625rem;
  border-bottom: 2px solid #afdcf2;
  border-bottom: 0.125rem solid #afdcf2;
  width: 258px;
  width: 16.125rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.49;
  margin: 0 auto;
  padding: 57px 0 16px;
  padding: 3.6875rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .f-meirit__text__image {
    padding: 5.1875rem 0 1.575rem;
  }
}

.f-meirit__item:nth-of-type(2) .f-meirit__text__image {
  padding: 3.6875rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .f-meirit__item:nth-of-type(2) .f-meirit__text__image {
    padding: 5.1875rem 0 1.575rem;
  }
}

.f-meirit__item:nth-of-type(3) .f-meirit__text__image {
  padding: 43px 0 16px;
  padding: 3.6875rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .f-meirit__item:nth-of-type(3) .f-meirit__text__image {
    padding: 3.375rem 0 0.975rem;
  }
}

.f-meirit__sub__image {
  font-size: 20px;
  font-size: 1rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  padding: 0 2.375rem;
}
@media screen and (min-width: 768px) {
  .f-meirit__sub__image {
    margin-top: 0.9375rem;
  }
}

.f-meirit__text__image .underline {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #afdcf2), color-stop(95%, #afdcf2), color-stop(95%, transparent));
  background: linear-gradient(transparent 85%, #afdcf2 85%, #afdcf2 95%, transparent 95%);
}

.f-meirit__text__com {
  font-size: 26px;
  font-size: 1.625rem;
  border-bottom: 2px solid #afdcf2;
  border-bottom: 0.125rem solid #afdcf2;
  width: 258px;
  width: 16.125rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.49;
  margin: 0 auto;
  padding: 57px 0 16px;
  padding: 3.6875rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .f-meirit__text__com {
    padding: 5.1875rem 0 2.375rem;
  }
}

.f-meirit__item:nth-of-type(2) .f-meirit__text__com {
  padding: 43px 0 16px;
  padding: 2.6875rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .f-meirit__item:nth-of-type(2) .f-meirit__text__com {
    padding: 3.375rem 0 1.72rem;
  }
}

.f-meirit__item:nth-of-type(3) .f-meirit__text__com {
  padding: 43px 0 16px;
  padding: 1.6875rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .f-meirit__item:nth-of-type(3) .f-meirit__text__com {
    padding: 3.375rem 0 1.72rem;
  }
}

.f-meirit__sub__com {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  padding: 0 2.375rem;
}
@media screen and (min-width: 768px) {
  .f-meirit__sub__com {
    margin-top: 0.9375rem;
  }
}

.f-meirit__text__com .underline {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #afdcf2), color-stop(95%, #afdcf2), color-stop(95%, transparent));
  background: linear-gradient(transparent 85%, #afdcf2 85%, #afdcf2 95%, transparent 95%);
}

.f-chara__title__sec {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: bold;
  letter-spacing: 1.3px;
  letter-spacing: 0.08125rem;
  margin-bottom: 30px;
}

.f-chara__text__sec {
  line-height: 1.9;
}

.f-chara__title__sec_cv {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: bold;
  letter-spacing: 1.3px;
  letter-spacing: 0.08125rem;
  margin-bottom: 30px;
}

.f-chara__text__sec_cv {
  line-height: 1.9;
}

.f-chara__title__sec_vsc {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: bold;
  letter-spacing: 1.3px;
  letter-spacing: 0.08125rem;
  margin-bottom: 30px;
}

.f-chara__text__sec_vsc {
  line-height: 1.9;
}

.forecast-merit__text__sec {
  display: block;
  background-color: #fff;
  font-weight: bold;
  letter-spacing: 1.7px;
  letter-spacing: 0.10625rem;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  padding: 20px;
  padding: 1.25rem;
  font-size: 32px;
  font-size: 1.45rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .forecast-merit__text__sec {
    font-size: 2.5rem;
    margin: 3.25rem auto 0;
    padding: 0;
  }
}

.forecast-merit__text__sec .underline {
  display: inline-block;
  color: #3192c4;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(78%, transparent), color-stop(78%, #c8ebf4), color-stop(90%, #c8ebf4), color-stop(90%, transparent), to(transparent));
  background: linear-gradient(transparent 78%, #c8ebf4 78%, #c8ebf4 90%, transparent 90%, transparent 100%);
  font-size: 32px;
  font-size: 1.45rem;
}

@media screen and (min-width: 768px) {
  .forecast-merit__text__sec .underline {
    font-size: 52px;
    font-size: 3.25rem;
  }
}

@media screen and (min-width: 768px) {
  .forecast-item__com {
    height: 18.6875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.forecast-head__com {
  background-color: #deeff4;
  border: 6px solid #3192c4;
  border: 0.375rem solid #3192c4;
  position: relative;
  padding: 20px;
  padding: 1.25rem;
  height: 219px;
  height: 18.6875rem;
}
@media screen and (min-width: 768px) {
  .forecast-head__com {
    width: 17.3125rem;
  }
}

.forecast-head__inner__com {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .forecast-head__inner__com {
    padding: 1.875rem;
  }
}

.forecast-head__title__com {
  color: #3192c4;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .forecast-head__title__com {
    font-size: 1.5rem;
  }
}


.forecast-head__icon__com {
  width: 100px;
  width: 6.25rem;
  margin: 21px auto 0;
  margin: 1.3125rem auto 0;
}

/* END-サービス分析関連｜店舗分析・画像解析・コミュニケーション分析の機能エリア */
/* データ分析基盤構築・画像解析をを用いた街の可視化事業・バーチャル店舗構築支援のエリア */

.data-analytics-movie {
  padding: 100px 0 0;
  padding: 6.25rem 0 0;
}

.data-analytics-movie__inner {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(17%, #fff), color-stop(17%, #f4f6f7), to(#f4f6f7));
  background: linear-gradient(#fff 0%, #fff 17%, #f4f6f7 17%, #f4f6f7 100%);
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .data-analytics-movie__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (min-width: 1441px) {
  .data-analytics-movie__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.data-analytics-movie__movie {
  max-width: 698px;
  max-width: 43.625rem;
  width: 100%;
  margin-right: 70px;
  margin-right: 4.375rem;
  margin-bottom: 11px;
  margin-bottom: 5.6875rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .data-analytics-movie__movie:hover {
    opacity: 0.7;
  }
}

.data-analytics-movie__contents {
  max-width: 380px;
  max-width: 23.75rem;
  width: 100%;
  padding: 0 20px;
  padding: 0 1.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .data-analytics-movie__contents {
    max-width: 35.125rem;
    margin: 0;
  }
}

.data-analytics-movie__icon {
  max-width: 110px;
  max-width: 6.875rem;
  width: 100%;
  margin-left: auto;
  margin-bottom: -50px;
  margin-bottom: -3.125rem;
}
@media screen and (min-width: 768px) {
  .data-analytics-movie__icon {
    max-width: 10.625rem;
    margin-left: auto;
    margin-bottom: 1.25rem;
  }
}

.data-analytics-movie__title {
  font-size: 38px;
  font-size: 2.375rem;
  letter-spacing: 1.5px;
  letter-spacing: 0.09375rem;
}

.data-analytics-movie__text {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  line-height: 2;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
}

.data-analytics-movie__btn {
  display: inline-block;
  margin-top: 34px;
  margin-top: 2.125rem;
}

.data-analytics-mv .mv-pages__title,
.data-analytics-mv .mv-pages__title::before {
  background: #119a70;
}
.data-analytics-mv .mv-pages__cat {
  color: #35B287;
}
.data-analytics-mv .mv-pages__subtitle {
  color: #119a70;
}

.data-analytics-chara {
  padding: 70px 0 100px;
  padding: 4.375rem 0 6.25rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .data-analytics-chara {
    padding: 7.5rem 0 11.625rem;
  }
}

.f-chara__img {
  max-width: 705px;
  max-width: 44.0625rem;
}

.data-analytics-chara__text {
  display: block;
  margin: 0 auto;
  background-color: #119a70;
  color: #fff;
  padding: 20px;
  font-size: 16px;
  font-size: 1.0rem;
  line-height: 1.4;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .data-analytics-chara__text {
    text-align: center;
    padding: 1.5625rem 0;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.data-analytics-chara__text .strong {
  font-weight: bold;
  line-height: 1.6;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .data-analytics-chara__text .strong {
    font-size: 1.5rem;
  }
}

.data-analytics-chara__text .point {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(10%, transparent), color-stop(10%, #fff), color-stop(96%, #fff), color-stop(96%, transparent), to(transparent));
  background: linear-gradient(transparent 0%, transparent 10%, #fff 10%, #fff 96%, transparent 96%, transparent 100%);
  color: #35B287;
  /* display: inline-block; */
  display: inline;
  margin: 0 5px;
  margin: 0 0.3125rem;
  padding: 0 5px;
  padding: 0 0.3125rem;
  font-size: 28px;
  font-size: 1.75rem;
  /* max-width: 312px; */
  /* max-width: 19.5rem; */
}
@media screen and (min-width: 768px) {
  .data-analytics-chara__text .point {
    width: 100%;
    font-size: 2rem;
    margin-left: -0.2625rem;
    padding: 0;
  }
}

.data-analytics-merit {
  padding: 80px 0;
  padding: 5rem 0;
  background-image: url(../../images/common/dataanalytics/data-ana-bg_photo.jpg);
  background-size: cover;
}

.d-meirit__items {
  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;
}
@media screen and (min-width: 768px) {
  .d-meirit__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.d-meirit__item {
  background-color: #119a70;
  color: #fff;
  border: 2px solid #fff;
  border: 0.125rem solid #fff;
  border-radius: 50%;
  text-align: center;
  position: relative;
  margin: 0 auto 40px;
  margin: 0 auto 2.5rem;
  width: 330px;
  width: 20.625rem;
  height: 330px;
  height: 20.625rem;
}
@media screen and (min-width: 768px) {
  .d-meirit__item {
    width: 24rem;
    height: 24rem;
    margin: 0 0.3125rem;
  }
}
@media screen and (min-width: 1280px) {
  .d-meirit__item {
    margin: 0;
  }
}

.d-meirit__item::after {
  content: "";
  position: absolute;
  bottom: -32px;
  bottom: -2rem;
  left: 50%;
  margin-left: -11px;
  margin-left: -0.6875rem;
  border: 11px solid transparent;
  border: 0.6875rem solid transparent;
  border-top: 19px solid #119a70;
  border-top: 1.1875rem solid #119a70;
}

.d-meirit__text {
  font-size: 24px;
  font-size: 1.525rem;
  border-bottom: 2px solid #BDE3D6;
  border-bottom: 0.125rem solid #BDE3D6;
  width: 258px;
  width: 16.125rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.49;
  margin: 0 auto;
  padding: 57px 0 16px;
  padding: 4.5625rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .d-meirit__text {
    font-size: 30px;
    font-size: 1.725rem;
    padding: 4.375rem 0 1.975rem;
  }

  .d-meirit__item .one_text {
    padding: 5.375rem 0 3.25rem;
  }
}

.d-meirit__item:nth-of-type(2) .d-meirit__text {
  padding: 43px 0 16px;
  padding: 1.6875rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .d-meirit__item:nth-of-type(2) .d-meirit__text {
    padding: 3.375rem 0 0.475rem;
  }
}

.d-meirit__item:nth-of-type(3) .d-meirit__text {
  padding: 43px 0 16px;
  padding: 3.6875rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .d-meirit__item:nth-of-type(3) .d-meirit__text {
    padding: 4.375rem 0 1.72rem;
  }
}

.d-meirit__sub {
  font-size: 18px;
  font-size: 1rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  margin: 0.375rem 2.375rem;
}
@media screen and (min-width: 768px) {
  .d-meirit__sub {
    font-size: 20px;
    font-size: 1.15rem;
    margin: 0.9375rem 2.375rem;
  }
}

.d-meirit__sub .underline {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #BDE3D6), color-stop(95%, #BDE3D6), color-stop(95%, transparent));
  background: linear-gradient(transparent 85%, #BDE3D6 85%, #BDE3D6 95%, transparent 95%);
}

.d-meirit__text_cv {
  font-size: 26px;
  font-size: 1.525rem;
  border-bottom: 2px solid #BDE3D6;
  border-bottom: 0.125rem solid #BDE3D6;
  width: 258px;
  width: 16.125rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.49;
  margin: 0 auto;
  padding: 57px 0 16px;
  padding: 3.5625rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .d-meirit__text_cv {
    font-size: 30px;
    font-size: 1.725rem;
    padding: 2.375rem 0 0.975rem;
  }

  .d-meirit__item .one_text {
    padding: 5.375rem 0 3.25rem;
  }
}

.d-meirit__item:nth-of-type(2) .d-meirit__text_cv {
  padding: 43px 0 16px;
  padding: 4.6875rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .d-meirit__item:nth-of-type(2) .d-meirit__text_cv {
    padding: 4.375rem 0 1.475rem;
  }
}

.d-meirit__item:nth-of-type(3) .d-meirit__text_cv {
  padding: 43px 0 16px;
  padding: 4.6875rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .d-meirit__item:nth-of-type(3) .d-meirit__text_cv {
    padding: 4.375rem 0 1.72rem;
  }
}

.d-meirit__sub_cv {
  font-size: 15px;
  font-size: 0.875rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  margin: 0.9375rem 2.375rem;
}
@media screen and (min-width: 768px) {
  .d-meirit__sub_cv {
    font-size: 20px;
    font-size: 1.15rem;
    margin: 0.9375rem 2.375rem;
  }
}

.d-meirit__sub_cv .underline {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #BDE3D6), color-stop(95%, #BDE3D6), color-stop(95%, transparent));
  background: linear-gradient(transparent 85%, #BDE3D6 85%, #BDE3D6 95%, transparent 95%);
}

@media screen and (min-width: 768px) {
  .d-meirit__sub_cv .underline {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

.d-meirit__text_vsc {
  font-size: 26px;
  font-size: 1.525rem;
  border-bottom: 2px solid #BDE3D6;
  border-bottom: 0.125rem solid #BDE3D6;
  width: 258px;
  width: 16.125rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.49;
  margin: 0 auto;
  padding: 57px 0 16px;
  padding: 4.5625rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .d-meirit__text_vsc {
    font-size: 30px;
    font-size: 1.725rem;
    padding: 3.375rem 0 0.975rem;
  }
}

.d-meirit__item:nth-of-type(2) .d-meirit__text_vsc {
  padding: 43px 0 16px;
  padding: 4.6875rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .d-meirit__item:nth-of-type(2) .d-meirit__text_vsc {
    padding: 3.375rem 0 0.975rem;
  }
}

.d-meirit__item:nth-of-type(3) .d-meirit__text_vsc {
  padding: 43px 0 16px;
  padding: 4.6875rem 0 2.175rem;
}
@media screen and (min-width: 768px) {
  .d-meirit__item:nth-of-type(3) .d-meirit__text_vsc {
    padding: 4.375rem 0 2.175rem;
  }
}

.d-meirit__sub_vsc {
  font-size: 15px;
  font-size: 0.875rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  margin: 0.375rem 2.375rem;
}
@media screen and (min-width: 768px) {
  .d-meirit__sub_vsc {
    font-size: 20px;
    font-size: 1.15rem;
    margin: 0.9375rem 2.375rem;
  }
}

.d-meirit__sub_vsc .underline {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #BDE3D6), color-stop(95%, #BDE3D6), color-stop(95%, transparent));
  background: linear-gradient(transparent 85%, #BDE3D6 85%, #BDE3D6 95%, transparent 95%);
}

@media screen and (min-width: 768px) {
  .d-meirit__sub_vsc .underline {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

.data-analytics-merit__text {
  display: block;
  max-width: 812px;
  max-width: 50.75rem;
  background-color: #fff;
  font-weight: bold;
  letter-spacing: 1.7px;
  letter-spacing: 0.10625rem;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  padding: 20px;
  padding: 1.25rem;
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .data-analytics-merit__text {
    font-size: 2.5rem;
    margin: 3.25rem auto 0;
    padding: 0 0 0 2rem;
  }
}

.data-analytics-merit__text .underline {
  display: inline-block;
  color: #119a70;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(78%, transparent), color-stop(78%, #BDE3D6), color-stop(90%, #BDE3D6), color-stop(90%, transparent), to(transparent));
  background: linear-gradient(transparent 78%, #BDE3D6 78%, #BDE3D6 90%, transparent 90%, transparent 100%);
  font-size: 52px;
  font-size: 3.25rem;
}

.data-analytics-merit__text__sec {
  display: block;
  background-color: #fff;
  font-weight: bold;
  letter-spacing: 1.7px;
  letter-spacing: 0.10625rem;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  padding: 20px;
  padding: 1.25rem;
  font-size: 23px;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .data-analytics-merit__text__sec {
    font-size: 2rem;
    margin: 3.25rem auto 0;
    padding: 15px 0;
  }
}

.data-analytics-merit__text__sec .underline {
  color: #119a70;
  font-size: 23px;
  font-size: 1.45rem;
}

@media screen and (min-width: 768px) {
  .data-analytics-merit__text__sec .underline {
    display: inline-block;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(78%, transparent), color-stop(78%, #BDE3D6), color-stop(90%, #BDE3D6), color-stop(90%, transparent), to(transparent));
    background: linear-gradient(transparent 78%, #BDE3D6 78%, #BDE3D6 90%, transparent 90%, transparent 100%);
    font-size: 32px;
    font-size: 2.3rem;
  }
}

.data-analytics-plan {
  padding: 40px 0;
  padding: 6rem 0;
  border-top: 1px solid #ADC1D0;
  border-bottom: 1px solid #ADC1D0;
}

@media screen and (min-width: 768px) {
  .data-analytics-plan {
    padding: 80px 0;
    padding: 11rem 0;
    border-top: 1px solid #ADC1D0;
    border-bottom: 1px solid #ADC1D0;
  }
}

.data-analytics-plan__icon {
  width: 34px;
  width: 2.125rem;
  margin: 30px auto;
  margin: 1.875rem auto;
}

.f-plan-data-analytics p {
  font-size: 24px;
}

.f-plan-data-analytics a {
  color: #62ACD0;
}

/* データ分析基盤構築｜申し込みから活用までの流れ */

.data-analytics-flow {
  padding: 70px 0;
  padding: 4.375rem 0;
}
@media screen and (min-width: 768px) {
  .data-analytics-flow {
    padding: 7.5rem 0;
  }
}

.data-analytics-flow__text {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 1.2px;
  letter-spacing: 0.075rem;
}
@media screen and (min-width: 768px) {
  .data-analytics-flow__text {
    font-size: 1.875rem;
  }
}

.data-analytics-flow__figure {
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .d-flow__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.d-flow__item {
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .d-flow__item {
    width: 11.875rem;
    margin-right: 0.375rem;
    margin-bottom: 0;
  }
}

.d-flow__title {
  color: #fff;
  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;
  text-align: center;
  background-color: #83CBB2;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  width: 100%;
  height: 80px;
  height: 5rem;
}
@media screen and (min-width: 768px) {
  .d-flow__title {
    height: 6.875rem;
  }
}

.d-flow__title::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -35px;
  bottom: -2.1875rem;
  left: 50%;
  margin-left: -16px;
  margin-left: -1rem;
  border: 16px solid transparent;
  border: 1rem solid transparent;
  border-top: 24px solid #83CBB2;
  border-top: 1.5rem solid #83CBB2;
}
@media screen and (min-width: 768px) {
  .d-flow__title::before {
    top: 50%;
    right: -2.4375rem;
    bottom: inherit;
    left: inherit;
    margin-top: -1.1875rem;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #83CBB2;
  }
}

.d-flow__title::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -48px;
  bottom: -3rem;
  left: 50%;
  margin-left: -20px;
  margin-left: -1.25rem;
  border: 20px solid transparent;
  border: 1.25rem solid transparent;
  border-top: 28px solid #fff;
  border-top: 1.75rem solid #fff;
}
@media screen and (min-width: 768px) {
  .d-flow__title::after {
    top: 50%;
    right: -3rem;
    bottom: inherit;
    left: inherit;
    margin-top: -1.1875rem;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #fff;
  }
}

/* タイトル背景色 */
.d-flow__item:nth-of-type(2) .d-flow__title {
  background-color: #66BFA2;
}

.d-flow__item:nth-of-type(3) .d-flow__title {
  background-color: #4AB391;
}

.d-flow__item:nth-of-type(4) .d-flow__title {
  background-color: #2DA681;
}

.d-flow__item:nth-of-type(5) .d-flow__title {
  background-color: #119A70;
}

.d-flow__item:nth-of-type(6) .d-flow__title {
  background-color: #007B55;
  margin-right: 0;
}

/* フロー図 */
/* 右三角 */
.d-flow__item:nth-of-type(2) .d-flow__title::before {
  border-top: 24px solid #66BFA2;
  border-top: 1.5rem solid #66BFA2;
}
@media screen and (min-width: 768px) {
  .d-flow__item:nth-of-type(2) .d-flow__title::before {
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #66BFA2;
  }
}

.d-flow__item:nth-of-type(3) .d-flow__title::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .d-flow__item:nth-of-type(3) .d-flow__title::before {
    display: block;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #4AB391;
  }
}

.d-flow__item:nth-of-type(4) .d-flow__title::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .d-flow__item:nth-of-type(4) .d-flow__title::before {
    display: block;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #2DA681;
  }
}

.d-flow__item:nth-of-type(5) .d-flow__title::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .d-flow__item:nth-of-type(5) .d-flow__title::before {
    display: block;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #119A70;
  }
}

.d-flow__item:nth-of-type(6) .d-flow__title::before,
.d-flow__item:nth-of-type(6) .d-flow__title::after {
  display: none;
}

/* SP 下三角 */
.d-flow__item:nth-of-type(3),
.d-flow__item:nth-of-type(4),
.d-flow__item:nth-of-type(5) {
  position: relative;
}

.d-flow__item:nth-of-type(3) {
  border: 5px solid #4AB391;
}
@media screen and (min-width: 768px) {
  .d-flow__item:nth-of-type(3) {
    border: none;
  }
}

.d-flow__item:nth-of-type(4) {
  border: 5px solid #2DA681;
}
@media screen and (min-width: 768px) {
  .d-flow__item:nth-of-type(4) {
    border: none;
  }
}

.d-flow__item:nth-of-type(6) {
  border: 5px solid #007B55;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .d-flow__item:nth-of-type(6) {
    border: none;
  }
}

.d-flow__item:nth-of-type(3)::before,
.d-flow__item:nth-of-type(4)::before,
.d-flow__item:nth-of-type(5)::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -40px;
  left: 50%;
  margin-left: -16px;
  margin-left: -1rem;
  border: 16px solid transparent;
  border: 1rem solid transparent;
}
@media screen and (min-width: 768px) {
  .d-flow__item:nth-of-type(3)::before,
.d-flow__item:nth-of-type(4)::before,
.d-flow__item:nth-of-type(5)::before {
    display: none;
  }
}

.d-flow__item:nth-of-type(3)::before {
  border-top: 24px solid #4AB391;
  border-top: 1.5rem solid #4AB391;
}

.d-flow__item:nth-of-type(4)::before {
  border-top: 24px solid #2DA681;
  border-top: 1.5rem solid #2DA681;
}

.d-flow__item:nth-of-type(5)::before {
  border-top: 24px solid #119A70;
  border-top: 1.5rem solid #119A70;
}

.d-flow__item:nth-of-type(3)::after,
.d-flow__item:nth-of-type(4)::after,
.d-flow__item:nth-of-type(5)::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -53px;
  left: 50%;
  margin-left: -20px;
  margin-left: -1.25rem;
  border: 20px solid transparent;
  border: 1.25rem solid transparent;
  border-top: 28px solid #fff;
  border-top: 1.75rem solid #fff;
}
@media screen and (min-width: 768px) {
  .d-flow__item:nth-of-type(3)::after,
.d-flow__item:nth-of-type(4)::after,
.d-flow__item:nth-of-type(5)::after {
    display: none;
  }
}

/* END｜フロー図 */

/* フロー図｜virtual-store-construction */
.d-flow__item_vsc {
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .d-flow__item_vsc {
    width: 11.875rem;
    margin-right: 0.375rem;
    margin-bottom: 0;
  }
}

.d-flow__title_vsc {
  color: #fff;
  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;
  text-align: center;
  background-color: #83CBB2;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  width: 100%;
  height: 80px;
  height: 5rem;
}
@media screen and (min-width: 768px) {
  .d-flow__title_vsc {
    height: 6.875rem;
  }
}

.d-flow__title_vsc::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -35px;
  bottom: -2.1875rem;
  left: 50%;
  margin-left: -16px;
  margin-left: -1rem;
  border: 16px solid transparent;
  border: 1rem solid transparent;
  border-top: 24px solid #83CBB2;
  border-top: 1.5rem solid #83CBB2;
}
@media screen and (min-width: 768px) {
  .d-flow__title_vsc::before {
    top: 50%;
    right: -2.4375rem;
    bottom: inherit;
    left: inherit;
    margin-top: -1.1875rem;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #83CBB2;
  }
}

.d-flow__title_vsc::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -48px;
  bottom: -3rem;
  left: 50%;
  margin-left: -20px;
  margin-left: -1.25rem;
  border: 20px solid transparent;
  border: 1.25rem solid transparent;
  border-top: 28px solid #fff;
  border-top: 1.75rem solid #fff;
}
@media screen and (min-width: 768px) {
  .d-flow__title_vsc::after {
    top: 50%;
    right: -3rem;
    bottom: inherit;
    left: inherit;
    margin-top: -1.1875rem;
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #fff;
  }
}

/* タイトル背景色 */
.d-flow__item_vsc:nth-of-type(2) .d-flow__title_vsc {
  background-color: #66BFA2;
}

.d-flow__item_vsc:nth-of-type(3) .d-flow__title_vsc {
  background-color: #4AB391;
}

.d-flow__item_vsc:nth-of-type(4) .d-flow__title_vsc {
  background-color: #2DA681;
}

.d-flow__item_vsc:nth-of-type(5) .d-flow__title_vsc {
  background-color: #119A70;
}

.d-flow__item_vsc:nth-of-type(6) .d-flow__title_vsc {
  background-color: #007B55;
  margin-right: 0;
}

/* 右三角 */
.d-flow__item_vsc:nth-of-type(2) .d-flow__title_vsc::before {
  border-top: 24px solid #66BFA2;
  border-top: 1.5rem solid #66BFA2;
}
@media screen and (min-width: 768px) {
  .d-flow__item_vsc:nth-of-type(2) .d-flow__title_vsc::before {
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #66BFA2;
  }
}

.d-flow__item_vsc:nth-of-type(3) .d-flow__title_vsc::before {
  border-top: 24px solid #4AB391;
  border-top: 1.5rem solid #4AB391;
}
@media screen and (min-width: 768px) {
  .d-flow__item_vsc:nth-of-type(3) .d-flow__title_vsc::before {
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #4AB391;
  }
}

.d-flow__item_vsc:nth-of-type(4) .d-flow__title_vsc::before {
  border-top: 24px solid #2DA681;
  border-top: 1.5rem solid #2DA681;
}
@media screen and (min-width: 768px) {
  .d-flow__item_vsc:nth-of-type(4) .d-flow__title_vsc::before {
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #2DA681;
  }
}

.d-flow__item_vsc:nth-of-type(5) .d-flow__title_vsc::before {
  border-top: 24px solid #119A70;
  border-top: 1.5rem solid #119A70;
}
@media screen and (min-width: 768px) {
  .d-flow__item_vsc:nth-of-type(5) .d-flow__title_vsc::before {
    border: 1.25rem solid transparent;
    border-left: 1.5rem solid #119A70;
  }
}

.d-flow__item_vsc:nth-of-type(6) .d-flow__title_vsc::before,
.d-flow__item_vsc:nth-of-type(6) .d-flow__title_vsc::after {
  display: none;
}

/* SP 下三角 */
/* .d-flow__item_vsc:nth-of-type(3),
.d-flow__item_vsc:nth-of-type(4),
.d-flow__item_vsc:nth-of-type(5) {
  position: relative;
}

.d-flow__item_vsc:nth-of-type(3) {
  border: 5px solid #4AB391;
} */
@media screen and (min-width: 768px) {
  .d-flow__item_vsc:nth-of-type(3) {
    border: none;
  }
}

/* .d-flow__item_vsc:nth-of-type(4) {
  border: 5px solid #2DA681;
} */
@media screen and (min-width: 768px) {
  .d-flow__item_vsc:nth-of-type(4) {
    border: none;
  }
}

.d-flow__item_vsc:nth-of-type(6) {
  border: 5px solid #007B55;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .d-flow__item_vsc:nth-of-type(6) {
    border: none;
  }
}

/* .d-flow__item_vsc:nth-of-type(3)::before,
.d-flow__item_vsc:nth-of-type(4)::before,
.d-flow__item_vsc:nth-of-type(5)::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -40px;
  left: 50%;
  margin-left: -16px;
  margin-left: -1rem;
  border: 16px solid transparent;
  border: 1rem solid transparent;
} */
@media screen and (min-width: 768px) {
  .d-flow__item_vsc:nth-of-type(3)::before,
.d-flow__item_vsc:nth-of-type(4)::before,
.d-flow__item_vsc:nth-of-type(5)::before {
    display: none;
  }
}

/* .d-flow__item_vsc:nth-of-type(3)::before {
  border-top: 24px solid #4AB391;
  border-top: 1.5rem solid #4AB391;
}

.d-flow__item_vsc:nth-of-type(4)::before {
  border-top: 24px solid #2DA681;
  border-top: 1.5rem solid #2DA681;
}

.d-flow__item_vsc:nth-of-type(5)::before {
  border-top: 24px solid #119A70;
  border-top: 1.5rem solid #119A70;
} */

/* .d-flow__item_vsc:nth-of-type(3)::after,
.d-flow__item_vsc:nth-of-type(4)::after,
.d-flow__item_vsc:nth-of-type(5)::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -53px;
  left: 50%;
  margin-left: -20px;
  margin-left: -1.25rem;
  border: 20px solid transparent;
  border: 1.25rem solid transparent;
  border-top: 28px solid #fff;
  border-top: 1.75rem solid #fff;
} */
@media screen and (min-width: 768px) {
  .d-flow__item_vsc:nth-of-type(3)::after,
  .d-flow__item_vsc:nth-of-type(4)::after,
  .d-flow__item_vsc:nth-of-type(5)::after {
    display: none;
  }
}

/* END｜フロー図｜virtual-store-construction */

@media screen and (min-width: 768px) {
  .d-flow__box {
    width: 4.375rem;
    height: 6.875rem;
    background-color: #edf1f2;
  }
}

.d-flow__sublist {
  padding: 10px 0 10px 16px;
  padding: 0.625rem 0 0.625rem 1rem;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .d-flow__sublist {
    height: 7rem;
    padding: 1.25rem 0 0 1rem;
    border-left: 0.1875rem solid #edf1f2;
  }
}

.d-flow__subitem {
  margin-right: 20px;
  margin-right: 1.25rem;
  padding-left: 16px;
  padding-left: 1rem;
  text-indent: -16px;
  text-indent: -1rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .d-flow__subitem {
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) {
  .d-flow__subitem:not(:last-of-type) {
    margin-bottom: 0.375rem;
  }
}

.d-flow__subitem::before {
  content: "";
  display: inline-block;
  width: 5px;
  width: 0.3125rem;
  height: 5px;
  height: 0.3125rem;
  margin-bottom: 3px;
  margin-bottom: 0.1875rem;
  margin-right: 10px;
  margin-right: 0.625rem;
  border-radius: 50%;
  background-color: #007B55;
}

.d-flow__point {
  text-align: center;
  padding: 20px 0;
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .d-flow__point {
    padding: 0;
    margin-top: 2.125rem;
  }
}

.d-flow__point p {
  background-color: #adc1d0;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  display: inline-block;
  margin: 0 auto;
  position: relative;
  padding: 6px 15px 7px;
  padding: 0.375rem 0.9375rem 0.4375rem;
}

@media screen and (min-width: 768px) {
  .d-flow__point p::before {
    content: "";
    position: absolute;
    top: -1.875rem;
    left: 50%;
    margin-left: -0.9375rem;
    border: 0.9375rem solid transparent;
    border-bottom: 0.9375rem solid #adc1d0;
  }
}

.d-flow__line {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .d-flow__line {
    padding-right: 25.625rem;
  }
}

@media screen and (min-width: 768px) {
  .line {
    max-width: 48.625rem;
    width: 100%;
    height: 1.875rem;
    border-left: 0.1875rem solid #adc1d0;
    border-right: 0.1875rem solid #adc1d0;
    border-bottom: 0.1875rem solid #adc1d0;
  }
}

.d-flow__text {
  max-width: 778px;
  max-width: 48.625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  font-weight: 500;
}

.d-flow__text .underline {
  font-size: 30px;
  font-size: 1.875rem;
  color: #119A70;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #BDE3D6), color-stop(93%, #BDE3D6), color-stop(93%, transparent), to(transparent));
  background: linear-gradient(transparent 75%, #BDE3D6 75%, #BDE3D6 93%, transparent 93%, transparent 100%);
}

.data-analytics-flow__btn {
  background-color: #d05050;
  color: #fff;
  display: block;
  font-size: 18px;
  font-size: 1.2rem;
  padding: 16px 0;
  padding: 1rem 0;
  border-radius: 2.1875rem;
  text-align: center;
  position: relative;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .data-analytics-flow__btn {
    font-size: 24px;
    font-size: 1.5rem;
    max-width: 42.875rem;
  }
  .data-analytics-flow__btn:hover {
    color: #d05050;
    background-color: #fff;
    border-color: #d05050;
    opacity: 1;
  }
}

.data-analytics-flow__arrow,
.data-analytics-flow__arrow--red {
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  right: 10px;
  right: 0.625rem;
}

.data-analytics-flow__arrow--red {
  display: none;
}

.two-links {
  padding: 40px 0;
  padding: 2.5rem 0;
  background: #f4f6f7;
}

@media screen and (min-width: 768px) {
  .two-links__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-around;
  }
}

.two-links__item {
  width: 95%;
  margin: 0 auto 30px;
  margin: 0 auto 1.875rem;
}
@media screen and (min-width: 600px) {
  .two-links__item {
    width: 30rem;
  }
}
@media screen and (min-width: 768px) {
  .two-links__item {
    text-align: center;
    margin: 0;
    padding: 0.3125rem;
  }
}

.two-links__item:last-of-type {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .data-analytics-flow__btn:hover .data-analytics-flow__arrow {
    display: none;
  }

  .data-analytics-flow__btn:hover .data-analytics-flow__arrow--red {
    display: block;
  }
}

.two-links--data-analytics {
  padding: 0 0 94px;
  padding: 0 0 5.875rem;
}

@media screen and (min-width: 768px) {
  .two-links--data-analytics .two-links {
    padding: 40px 0;
    background: #f4f6f7;
  }
}
.two-links--data-analytics .link-item__img {
  width: 216px;
  width: 13.5rem;
  height: 216px;
  height: 13.5rem;
  display: block;
  margin: 0 auto;
}
.two-links--data-analytics .link-item__text {
  text-align: center;
}

.two-links--data-analytics .link-item__btn {
  margin: 14px auto 23px;
  margin: 0.875rem auto 1.4375rem;
  background-color: #119A70;
  color: #fff;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
  width: 100%;
  font-size: 0.675rem;
}

@media screen and (min-width: 768px) {
  .two-links--data-analytics .link-item__btn {
    font-size: 1.125rem;
    margin: 14px auto 23px;
    margin: 0.875rem auto 1.4375rem;
    background-color: #119A70;
    color: #fff;
    border: 2px solid transparent;
    border: 0.125rem solid transparent;
    width: 450px;
    width: 29rem;
  }
}

@media screen and (min-width: 768px) {
  .link-item__btn:hover {
    opacity: 1;
    color: #fff;
    background-color: #2b6ea0;
  }

  .link-item__btn:hover .link-item__arrow {
    display: none;
  }

  .link-item__btn:hover .link-item__arrow--white {
    display: block;
    -webkit-animation: show 0.2s ease 0s;
    animation: show 0.2s ease 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  .two-links--data-analytics .link-item__btn:hover {
    background-color: #fff;
    border: 0.125rem solid #119A70;
    color: #119A70;
  }
  .two-links--data-analytics .link-item__btn:hover .link-item__arrow--color {
    display: block;
    -webkit-animation: show 0.3s ease 0s;
    animation: show 0.3s ease 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
}

.data-analytics-chara .title-pages-section {
  font-size: 20px;
  font-size: 1.3rem;
  font-weight: normal;
  display: inline-block;
  border-radius: 0 2.5rem 2.5rem 0;
  padding: 6px 30px 6px 22px;
  padding: 0.375rem 1.875rem 0.375rem 1.375rem;
  background-color: #fff;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .data-analytics-chara .title-pages-section {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 3.125rem;
    font-size: 1.625rem;
  }
}

/* END-データ分析基盤構築・画像解析をを用いた街の可視化事業・バーチャル店舗構築支援のエリア */
