@charset "UTF-8";
/* CSS Document */
/*================================================
  base
================================================*/
html {
  font-size: 62.5%;
  /* フォントサイズ:10px */
}

body {
  font-size: 1.6em;
  line-height: 2.0;
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  color: #37414f;
  background: #fff;
}

h1 {
  font-size: 4.0rem;
  line-height: 1.6;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.6rem;
}

h5 {
  font-size: 2.2rem;
}

img {
  outline: none;
  border-style: none;
}

a {
  color: inherit;
  border: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}

a:hover {
  cursor: pointer;
  opacity: 0.8;
}

a img {
  color: inherit;
  border: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}

main p {
  margin-bottom: 0;
}

main p + p {
  margin-top: 40px;
}

main ul {
  list-style-type: disc;
  padding-left: 20px;
}

main ol {
  list-style-type: decimal;
  padding-left: 20px;
}

main a {
  text-decoration: underline;
}

main a:hover {
  text-decoration: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #e2e2e2;
  margin-bottom: 50px;
}

table th, table td {
  border-bottom: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  padding: 25px 30px;
  vertical-align: middle;
}

table th:last-child, table td:last-child {
  border-right: none;
}

table th {
  font-weight: bold;
  text-align: center;
  background-image: url(../img/bg_circle.png), -webkit-gradient(linear, left top, right top, from(rgba(255, 153, 51, 0.05)), to(rgba(255, 113, 102, 0.05)));
  background-image: url(../img/bg_circle.png), linear-gradient(to right, rgba(255, 153, 51, 0.05), rgba(255, 113, 102, 0.05));
}

table tr:nth-of-type(even) td {
  background: rgba(55, 65, 79, 0.02);
}

/*================================================
  header
================================================*/
/*　ベース　------------------------- */
.siteHeader {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  -webkit-transition: .3s;
  transition: .3s;
}

.siteHeader.transform {
  background: #fff;
  -webkit-box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
}

.siteHeader__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0px 40px;
  height: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/*　ロゴ　------------------------- */
.siteHeader__logo img {
  height: 30px;
  width: 114px;
  display: block;
}

.siteHeader__logo a:hover img {
  opacity: 0.85;
}

/*　PC用グローバルメニュー　------------------------- */
.siteHeader__gNav {
  width: 100%;
}

.siteHeader__gNav__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.siteHeader__gNav__menu__item {
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 15px;
}

.siteHeader__gNav__menu__item a {
  text-decoration: none;
}

.siteHeader__gNav__menu__item--inquiry {
  color: #fff;
  margin-right: 0;
}

.siteHeader__gNav__menu__item--inquiry a {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#ff9933), to(#ff7166));
  background: linear-gradient(to right, #ff9933, #ff7166);
  border: solid 1px linear-gradient(to right, #ff9933, #ff7166);
  height: 40px;
  line-height: 40px;
  padding: 0px 25px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.siteHeader__gNav__menu__item--inquiry span {
  vertical-align: middle;
}

.siteHeader__gNav__menu__item--inquiry i {
  font-size: 2rem;
  vertical-align: middle;
  padding-left: 10px;
}

.siteHeader__gNav__menu__item--trial {
  margin-right: 10px;
}

.siteHeader__gNav__menu__item--trial a {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#ff9933), to(#ff7166));
  background: linear-gradient(to right, #ff9933, #ff7166);
  border: solid 1px linear-gradient(to right, #ff9933, #ff7166);
  height: 40px;
  line-height: 40px;
  padding: 1px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.siteHeader__gNav__menu__item--trial a .siteHeader__gNav__menu__item--trial__inner {
  display: block;
  background: #fff;
  border-radius: 18px;
  padding: 0px 24px;
  height: 38px;
  line-height: 38px;
}

.siteHeader__gNav__menu__item--trial a .siteHeader__gNav__menu__item--trial__inner span {
  background: -webkit-gradient(linear, left top, right top, from(#ff9933), to(#ff7166));
  background: linear-gradient(to right, #ff9933, #ff7166);
  -webkit-background-clip: text;
  color: transparent;
  vertical-align: middle;
}

.siteHeader__gNav__menu__item--trial a .siteHeader__gNav__menu__item--trial__inner i {
  color: #ff7166;
  font-size: 2rem;
  vertical-align: middle;
  padding-left: 10px;
}

.siteHeader__gNav__menu__item.siteHeader__gNav__menu__item--2line a .siteHeader__gNav__menu__item--trial__inner {
  line-height: 1.1;
  padding: 5px 29px;
}

.siteHeader__gNav__menu__item.siteHeader__gNav__menu__item--2line a .siteHeader__gNav__menu__item--trial__inner span:first-child {
  display: block;
  font-size: 1.1rem;
}

/*　SP用グローバルメニュー　------------------------- */

.siteHeader__gNavSp {
  display: none;
}

/*================================================
  body
================================================*/
/* ---------------------------------------
  main visual
--------------------------------------- */
.mainVisual {
  width: 100%;
  height: 720px;
  margin: 0 auto;
  position: relative;
  background: #fff url(../img/main-visual_gb_pc.png) no-repeat center center/cover;
}

.mainVisual__inner {
  width: 100%;
  /* max-width: 1064px; */
  max-width: 1130px;
  height: inherit;
  margin: 0 auto;
  padding: 180px 20px 0;
  z-index: 2;
  position: relative;
  z-index: 10;
}

.mainVisual__text {
  width: 100%;
  max-width: 492px;
  color: #37414f;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.025em;
  padding-top: 30px;
}

.mainVisual__text__subTitle {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.6;
}

.mainVisual__text__title {
  font-size: 4.0rem;
  font-weight: 900;
  background: -webkit-gradient(linear, left top, right top, from(#ff9933), to(#ff7166));
  background: linear-gradient(to right, #ff9933, #ff7166);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 60px;
}

.mainVisual__text__logo {
  width: 100%;
  max-width: 350px;
}

.mainVisual__img {
  width: 100%;
  max-width: 492px;
}

.mainVisual__img img {
  width: 100%;
}

/* ---------------------------------------
  common module
--------------------------------------- */
/*　コンテナ　------------------------- */
.common__inner {
  width: 1064px;
  margin: 0 auto;
  padding: 130px 20px 130px;
  position: relative;
}

.feature .common__inner {
  padding: 130px 20px 0;
}

.case-study .common__inner {
  padding: 130px 20px 100px;
}

/*　フレックスボックス　------------------------- */
.common__col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.feature .common__col:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.feature .common__col:nth-of-type(even) > .common__col__2:nth-child(odd) {
  margin-right: 0;
}

.feature .common__col:nth-of-type(even) > .common__col__2:nth-child(even) {
  margin-right: 3.906%;
}

.common__col__2 {
  width: 100%;
  max-width: 48.047%;
  margin-right: 3.906%;
  margin-bottom: 40px;
  position: relative;
  min-height: 0%;
}

.common__col__2:nth-child(2n) {
  margin-right: 0;
}

.common__col__2--widthS {
  max-width: 185px;
}

.common__col__2--widthL {
  max-width: calc(100% - (185px + 3.906%));
}

.common__col__3 {
  width: 100%;
  max-width: 30.664%;
  margin-right: 3.906%;
  margin-bottom: 40px;
  min-height: 0%;
}

.common__col__3:nth-child(3n),
.common__col__3:last-child {
  margin-right: 0;
}

/*　大見出し　------------------------- */
.common__headingL {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.025em;
  position: relative;
}

.common__headingL:after {
  position: absolute;
  content: " ";
  display: block;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(to right, #ff9933, #ff7166);
     border-image: -webkit-gradient(linear, left top, right top, from(#ff9933), to(#ff7166));
     border-image: linear-gradient(to right, #ff9933, #ff7166);
  border-image-slice: 1;
}

/*　中見出し　------------------------- */
.common__headingM {
  font-size: 2.0rem;
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: 0.025em;
}

.case-study .common__col__3 .common__headingM {
  font-size: 1.8rem;
  margin-bottom: 0;
  line-height: 1.8;
}

.common__headingM__en {
  font-size: 8.0rem;
  font-style: italic;
  line-height: 1;
  background: -webkit-gradient(linear, left top, right top, from(#ff9933), to(#ff7166));
  background: linear-gradient(to right, #ff9933, #ff7166);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 25px;
}

.common__headingM__ja {
  display: block;
}

/*　小見出し　------------------------- */
.common__headingS {
  font-size: 2.8rem;
  line-height: 1.6;
  font-weight: 900;
  margin-bottom: 60px;
  position: relative;
  letter-spacing: 0.025em;
}

.common__headingS--CS {
  font-size: 2.6rem;
  text-align: center;
  margin: 0 0 50px;
}

.common__headingS:after {
  position: absolute;
  content: " ";
  display: block;
  left: 0;
  bottom: -25px;
  width: 80px;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, #ff9933, #ff7166);
     border-image: -webkit-gradient(linear, left top, right top, from(#ff9933), to(#ff7166));
     border-image: linear-gradient(to right, #ff9933, #ff7166);
  border-image-slice: 1;
}

.common__headingS--CS:after {
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  -webkit- transform: translateX(-50%);
}

/*　最小見出し　------------------------- */
.common__headingXS {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
  margin: 70px 0 30px;
  padding-left: 30px;
  position: relative;
  letter-spacing: 0.025em;
}

.common__headingXS:after {
    position: absolute;
    content: " ";
    display: block;
    left: 0;
    top: 22%;
    width: 15px;
    border-bottom: 15px solid;
    -o-border-image: linear-gradient(to right, #ff9933, #ff7166);
       border-image: -webkit-gradient(linear, left top, right top, from(#ff9933), to(#ff7166));
       border-image: linear-gradient(to right, #ff9933, #ff7166);
    border-image-slice: 1;
}


/*　リンクボタン　------------------------- */
.common__btn {
  text-align: center;
  margin-bottom: 20px;
}

table .common__btn {
  text-align: right;
  margin-bottom: 0;
}

.common__btn a {
  display: inline-block;
  color: #fff;
  font-size: 2.0rem;
  font-weight: bold;
  width: 100%;
  max-width: 560px;
  padding: 19px 30px 17px;
  background: -webkit-gradient(linear, left top, right top, from(#ff9933), to(#ff7166));
  background: linear-gradient(to right, #ff9933, #ff7166);
  border-radius: 38px;
  text-decoration: none;
}

.common__btn span {
  vertical-align: middle;
}

.common__btn i {
  font-size: 1.2em;
  padding-left: 10px;
  vertical-align: middle;
}

.common__btn--S a {
  font-size: 1.4rem;
  max-width: 200px;
  font-weight: 700;
  padding: 6px 30px 4px;
}

.common__btn--WT a {
  padding: 1px;
}

.common__btn--WT a .common__btn--WT__inner {
  display: block;
  background: #fff;
  border-radius: 36px;
  padding: 18px 30px 16px;
}

.common__btn--WT a span {
  background: -webkit-gradient(linear, left top, right top, from(#ff9933), to(#ff7166));
  background: linear-gradient(to right, #ff9933, #ff7166);
  -webkit-background-clip: text;
  color: transparent;
}

.common__btn--WT a i {
  color: #ff7166;
}

.common__btn.common__btn--2line a .common__btn--WT__inner {
  padding: 16px 30px 3px;
}

.common__btn.common__btn--2line a .common__btn--WT__inner span {
  line-height: 1.0;
}

.common__btn.common__btn--2line a .common__btn--WT__inner span:first-child {
  display: block;
  font-size: 1.6rem;
  line-height: 1.0;
}

/*　アンダーライン　------------------------- */
.common__underline {
  font-weight: bold;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 153, 51, 0.6)), to(rgba(255, 113, 102, 0.6)));
  background-image: linear-gradient(to right, rgba(255, 153, 51, 0.6), rgba(255, 113, 102, 0.6));
  background-repeat: no-repeat;
  background-size: 100% 20%;
  background-position: bottom 1px center;
}

/*　吹き出し　------------------------- */
.common__balloon {
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  padding: 0 45px;
}

.common__balloon::before {
  content: '';
  position: absolute;
  top: 80%;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
  left: 0;
}

.common__balloon::after {
  content: '';
  position: absolute;
  top: 80%;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
  right: 0;
}

/*　注意書き　------------------------- */
.common__caution {
  color: rgba(55, 65, 79, 0.7);
  font-size: 1.5rem;
  display: block;
}

/*　上付き文字　------------------------- */
.common__sup {
  vertical-align: super;
  font-size: 1.3rem;
  color: #787e7a;
}

/*　フォント　------------------------- */
.fontNoto {
  font-family: 'Noto Sans JP', sans-serif;
}

.fontLato {
  font-family: 'Lato', sans-serif;
}

/*　画像　------------------------- */
.common__img {
  width: 100%;
}

.common__img img {
  width: 100%;
  margin-bottom: 60px;
}

.feature .common__img img {
  border: 3px solid #e2e2e2;
}

.common__img--modal img {
  margin: 0 auto 10px !important;
}

/*　背景　------------------------- */
.bgGrad {
  background-image: url(../img/bg_circle.png), -webkit-gradient(linear, left top, right top, from(rgba(255, 153, 51, 0.2)), to(rgba(255, 113, 102, 0.2)));
  background-image: url(../img/bg_circle.png), linear-gradient(to right, rgba(255, 153, 51, 0.2), rgba(255, 113, 102, 0.2));
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.bgGray {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f5f5f5));
  background: linear-gradient(to bottom, #fff, #f5f5f5);
}

.bgDot {
  background: url(../img/bg_dot.png) repeat center center/16px 16px #f5f5f5;
}

.bgOrange {
  background: #ffe3e0;
  background: -moz-linear-gradient(left, #ffebd6 0%, #ffe3e0 100%);
  background: -webkit-gradient(linear, left center, right center, from(#ffebd6), to(#ffe3e0));
  background: -webkit-linear-gradient(left, #ffebd6 0%, #ffe3e0 100%);
  background: -o-linear-gradient(left, #ffebd6 0%, #ffe3e0 100%);
  background: -ms-linear-gradient(left, #ffebd6 0%, #ffe3e0 100%);
  background: linear-gradient(to right, #ffebd6 0%, #ffe3e0 100%);
}

/*　Youtube　------------------------- */
.youtube {
  margin: 100px auto 10px;
}

.youtube div {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube div iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*　モーダルウィンドウ　------------------------- */
.common__modal {
  position: fixed;
  display: none;
  text-align: center;
  background-color: transparent;
  z-index: 1000;
  margin: 0;
}

.common__modal iframe, .common__modal video {
  width: 728px;
  height: 410px;
  display: block;
}

.common__modal__overlay {
  z-index: 900;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(30, 30, 30, 0.9);
}

.common__modal__open:hover {
  cursor: pointer;
}

.common__modal__close {
  display: block;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  text-decoration: none;
  border-radius: 30px;
  background: #ff7166;
  width: 50%;
  padding: 10px 10px;
  margin: 30px auto 0;
}

.common__modal__close:hover {
  cursor: pointer;
}

/*　フェードイン アニメーション　------------------------- */
.fadeinUp {
  opacity: 0;
  -webkit-transform: translate(0, 15px);
          transform: translate(0, 15px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.fadeinUp.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* ---------------------------------------
  about
---------------------------------------　*/
.about {
  width: 100%;
  text-align: center;
}

/* ---------------------------------------
  report
---------------------------------------　*/
.report {
  width: 100%;
  text-align: center;
}

/* ---------------------------------------
  feature
---------------------------------------　*/
.feature {
  width: 100%;
}

.feature__balloon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  list-style: none;
  line-height: 1.6;
  padding-left: 0;
}

.feature__balloon__item {
  width: 100%;
  max-width: 400px;
  color: #fff;
  font-size: 2.0rem;
  text-align: center;
  padding: 22px 20px 18px 20px;
  margin: 0 35px 45px 0;
  background: #ff9933;
  border-radius: 52px;
  position: relative;
}

.feature__balloon__item::before {
  content: '';
  position: absolute;
  left: 16%;
  top: 104px;
  margin-left: -4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 35px 0 0;
  border-color: #ff9933 transparent transparent transparent;
}

.feature__balloon__item::after {
  content: '';
  position: absolute;
  left: 16%;
  top: 104px;
  margin-left: -4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 11px 0 0;
  border-color: #f5f5f5 transparent transparent transparent;
}

.feature__balloon__item--red {
  background: #ff7166;
}

.feature__balloon__item--red::before {
  border-color: #ff7166 transparent transparent transparent;
}

.feature__balloon__item:nth-child(2n) {
  margin: 0 165px 45px 0;
}

.feature__balloon__item:nth-child(2n)::before {
  left: auto;
  right: 16%;
  border-width: 15px 0 0 35px;
}

.feature__balloon__item:nth-child(2n)::after {
  left: auto;
  right: 16%;
  border-width: 15px 0 0 11px;
}

.feature__balloon__item:nth-child(3n) {
  margin: 0 35px 45px 165px;
}

.feature__balloon__item:last-child {
  margin: 0 0 45px 0 !important;
}

.feature-bgArrow {
  position: relative;
  height: 100px;
  z-index: 0;
}

.feature-bgArrow svg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100px;
  fill: #f5f5f5;
}

/* ---------------------------------------
  case-study
--------------------------------------- */
.case-study {
  width: 100%;
}

.case-study_flame {
  text-align: center;
  border: 3px solid #e2e2e2;
  background: #fff;
  padding: 70px 20px;
  border-radius: 109px;
}

.case-study_flame p {
  font-size: 3.6rem;
  text-align: center;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#ff9933), to(#ff7166));
  background: linear-gradient(to right, #ff9933, #ff7166);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.accordion-container {
  width: 100%;
  margin: 0 auto;
  border-top: 3px solid #e2e2e2;
  border-left: 3px solid #e2e2e2;
  border-right: 3px solid #e2e2e2;
}

.accordion-container .accordion-title {
  color: #37414f;
  font-size: 2.0rem;
  font-weight: 700;
  background-color: #fff;
  border-bottom: 3px solid #e2e2e2;
  margin: 0;
  padding: 0.625em 2.5em 0.625em 2em;
  position: relative;
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-title.open {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 153, 51, 0.1)), to(rgba(255, 113, 102, 0.1)));
  background-image: linear-gradient(to right, rgba(255, 153, 51, 0.1), rgba(255, 113, 102, 0.1));
}

.accordion-container .js-accordion-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 2px;
  /*縦線に*/
  transform: rotate(90deg);
  background: #37414f;
  transition: all .3s ease-in-out;
}

.accordion-container .js-accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  /*横線*/
  width: 15px;
  height: 2px;
  background: #37414f;
  transition: all .2s ease-in-out;
}

.accordion-container .js-accordion-title.open::before {
  transform: rotate(180deg);
}

.accordion-container .js-accordion-title.open::after {
  opacity: 0;
}

.accordion-content {
  display: none;
  background: #fff;
  border-bottom: 3px solid #e2e2e2;
  /*padding-left: 2.3125em;*/
}

.case-study_content {
  text-align:center;
  padding:0 35px 50px 35px;
}

.case-study_content_balloon {
  margin:0 auto;
  padding-top:45px;
  max-width:400px;
}

.case-study_content_balloonQ,
.case-study_content_balloonA {
  position: relative;
  width:100%;
  font-size:2rem;
  font-weight:bold;
  background-color:#ff7166;
  color:#FFF;
  line-height:40px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
}

.case-study_content_balloonA {
  background-color:#ff9933;
}

.case-study_content_balloonQ:before,
.case-study_content_balloonA:before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 auto;
  border-top: 10px solid #ff7166;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}

.case-study_content_balloonA:before {
  border-top-color:#ff9933;
}

.case-study_content_detail {
  padding-top:25px;
}

.case-study_content_detail p {
  text-align:left;
}

.case-study_content_text {
  display:flex;
}

.case-study_content_mark {
  width:130px;
  height:130px;
  margin-right:35px;
}

.case-study_content_img {
  margin-top:35px;
}

.case-study_content_img img {
  width:100%;
}

.case-study__movie {
  margin-top: 95px;
}

.case-study__movie p {
  text-align: center;
  margin-bottom: 45px;
}

.case-study__movie + .case-study__movie {
  margin-top: 50px;
}



.accordion-container {
  border:none;
}

.accordion-container .accordion-title {
  display:flex;
  justify-content: space-between;
  margin-top:50px;
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active {
  background-image:none;
  background-color:#FFF;
}

.accordion-title_text {

}

.accordion-title_icon {
  display:inline-block;
  font-size:1.5rem;
  color:#FFF;
  border-radius:5px;
  padding:5px 10px;
}

.accordion-title_iconApp {
  background-color:#00A73C;
}

.accordion-title_iconPc {
  background-color:#2A5599;
}

.accordion-title_iconFile {
  background-color:#9C1A86;
}

.accordion-content {
  display:block;
}

.case-study__navi {
  display:flex;
  flex-wrap: wrap;
  list-style-type:none;
}

.case-study__navi_menu {
  display:flex;
  margin:5px;
  width:320px;
}

.case-study__navi_menu a {
  display:flex;
  width:100%;
  border-radius:10px;
  padding:2px;
  text-decoration:none;
  background: -webkit-gradient(linear, left top, right top, from(#ff9933), to(#ff7166));
  background: linear-gradient(to right, #ff9933, #ff7166);
  border: solid 1px linear-gradient(to right, #ff9933, #ff7166);
}

.case-study__navi_menu a span {
  background-color:#FFF;
  width:100%;
  border-radius:8px;
  padding:5px 10px;
}

.case-study__navi_menu:hover,
.case-study__navi_menu a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .case-study_content_text {
    display:block;
  }
  .case-study_content_mark {
    margin-right:0;
    margin-bottom:15px;
  }
  .case-study__navi_menu {
    display:block;
    width:100%;
    margin:5px 0;
  }
  .accordion-container .accordion-title {
    display:block;
  }
  .accordion-title_icon {
    font-size:1.2rem;
    margin:0 10px;
    padding:3px 7px;
  }

}

/* ---------------------------------------
  use-case
--------------------------------------- */

.use-case {
  width: 100%;
}

.use-case_list {
  list-style-type:none;
  margin:0;
  padding:0;
}

.use-case_list li.use-case_list_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color:#FFF;
  margin-bottom:50px;
  padding:20px;
}

.use-case_list li.use-case_list_wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.use-case_list_info {
  width:390px;
  padding:20px;
  line-height:1.8;
}

.use-case_list_contents {
  width:calc(100% - 390px);
  padding:20px;
}

.use-case_list_logo {
  width:100%;
  /*height:200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;*/
  border:3px solid #e2e2e2;
}

.use-case_list_logo-anonymous {
  padding: 15px;
}

.use-case_list_logo img {
  width:100%;
  vertical-align: top;
}

.use-case_list_info_text {
  list-style-type:none;
  margin:40px 0 0 0;
  padding:0;
  text-align:left;
}

.use-case_list_info_text li {
  margin:5px 0 0 0;
  padding:0;
}

.use-case_list_contents_caption {
  font-size: 2.4rem;
  font-weight: 700;
  border-bottom: 1px solid #5f6772;
  line-height: 1.5;
  padding-bottom: 10px;
}

.use-case_list_contents_subcaption {
  font-weight:700;
  font-size:1.8rem;
  line-height:1.5;
  margin-top:30px;
}

.use-case_list_contents_subcaption span {
  display:inline-block;
  line-height:22px;
  padding:0 7px;
  margin-right:10px;
  color:#FFF;
  font-size:1.3rem;
  font-weight:normal;
  background: -webkit-gradient(linear, left top, right top, from(#ff9933), to(#ff7166));
  background: linear-gradient(to right, #ff9933, #ff7166);
  border-radius: 3px;
}

.use-case_list_contents_text {
  margin-top:20px;
}

.use-case_text_info {
  text-align:center;/**/
  margin-top:-20px;
  font-size:1.8rem;
}

@media screen and (max-width: 1024px) {

  .use-case_list_info {
    width:300px;
  }

  .use-case_list_contents {
    width:calc(100% - 300px);
  }

}

@media screen and (max-width: 767px) {

  .use-case_list li.use-case_list_wrapper {
    flex-direction: column;
    padding:10px;
  }

  .use-case_list li.use-case_list_wrapper:nth-child(even) {
    flex-direction: row;
    flex-direction: column;
  }

  .use-case_list_info {
    width:100%;
  }

  .use-case_list_contents {
    width:100%;
  }

  .use-case_list_logo {
    max-width:300px;
    margin:0 auto;
  }

  .use-case_list_info_text {
    margin:20px 0 0 0;
  }

}

/* ---------------------------------------
  spec
--------------------------------------- */
.spec {
  width: 100%;
}

.spec__catalog {
  text-align: center;
  font-size: 2rem;
  margin-top: 35px;
}

.spec__cloud {
  font-weight: bold;
  text-align: center;
}

.spec__cloud a {
  display: block;
  border: 2px solid #e2e2e2;
  padding: 20px 45px 20px 20px;
  text-decoration: none;
  position: relative;
}

.spec__cloud a:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 153, 51, 0.1)), to(rgba(255, 113, 102, 0.1)));
  background-image: linear-gradient(to right, rgba(255, 153, 51, 0.1), rgba(255, 113, 102, 0.1));
}

.spec__cloud a::before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  border-top: 2px solid #37414f;
  border-right: 2px solid #37414f;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ---------------------------------------
  inquiry
--------------------------------------- */
.inquiry {
  width: 100%;
  text-align: center;
}

/* ---------------------------------------
  foreign
---------------------------------------　*/

.Body__foreign {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.Body__foreign main {
  flex: 1 0 auto;
}

.Body__foreign #siteFooter
  flex-shrink: 0;
}

.foreign {
  width: 100%;
  text-align: center;
}

.foreign__list {
  text-align:left;
  margin-top:25px;
}

.foreign__list dd {
  margin-top:15px;
}

.foreign__text__info {
  text-align:left;
  margin-top:25px;
}


/* ---------------------------------------
  service
---------------------------------------　*/
.service {
  width: 100%;
}

table.service__table {
  border: 3px solid #e2e2e2;
}

table.service__table th {
  font-size: 1.8rem;
  border-bottom: 3px solid #e2e2e2;
  border-right: 3px solid #e2e2e2;
  padding: 14px 30px 10px;
}

table.service__table td {
  font-size: 1.5rem;
  border-bottom: 3px solid #e2e2e2;
  border-right: 3px solid #e2e2e2;
  padding: 30px;
}

.service__img {
  max-width: 330px;
}

.service__img img {
  margin-bottom: 5px;
}

.service__caption {
  color: #5e5e5e;
  font-size: 1.4rem;
}


/*================================================
  footer
================================================*/
#siteFooter {
  color: #fff;
  background: #37414f;
  width: 100%;
}

.siteFooter__inner {
  width: 100%;
  max-width: 1064px;
  margin: 0 auto;
  padding: 40px 20px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.siteFooter__logo img {
  width: 114px;
  height: 30px;
  margin-bottom: 10px;
}

.siteFooter__logo a:hover img {
  opacity: 0.8;
}

.siteFooter__copyright {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.siteFooter__sns a {
  margin-right: 10px;
}

.siteFooter__sns a i {
  font-size: 3.0rem;
}

.siteFooter__sns a:last-of-type {
  margin-right: 0;
}

.pageTop {
  position: fixed;
  right: 30px;
  bottom: 25px;
  z-index: 9998;
}

.pageTop a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  background: -webkit-gradient(linear, left top, right top, from(#ff9933), to(#ff7166));
  background: linear-gradient(to right, #ff9933, #ff7166);
  border: solid 1px linear-gradient(to right, #ff9933, #ff7166);
  border-radius: 50%;
  text-decoration: none;
  -webkit-box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
}

.pageTop a::before {
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  top: 10px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }
  h1 {
    font-size: 4.0rem;
  }
  h2 {
    font-size: 3.8rem;
  }
  h3 {
    font-size: 3.0rem;
  }
  h4 {
    font-size: 2.2rem;
  }
  h5 {
    font-size: 2.0rem;
  }
  table {
    margin-bottom: 40px;
  }
  table th {
    font-size: 1.4rem;
  }
  .only__pc {
    display: none;
    /* PCのみ表示・改行 */
  }
  .siteHeader__inner {
    padding: 0px 20px;
    height: 70px;
  }
  .siteHeader__logo img {
    height: 26px;
    width: 100px;
  }
  .mainVisual__inner {
    max-width: 768px;
    padding: 210px 20px 0;
  }
  .mainVisual__text__subTitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .mainVisual__text__subTitle {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .mainVisual__text__title {
    font-size: 3.0rem;
    margin-bottom: 40px;
  }
  .mainVisual__text__logo {
    max-width: 260px;
  }
  .feature .common__inner {
    padding: 80px 20px 0;
  }
  .common__inner {
    width: 768px;
    padding: 80px 20px;
  }
  .common__headingL:after {
    bottom: -20px;
  }
  .common__headingL {
    font-size: 3.2rem;
  }
  .common__headingM {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .common__headingM__en {
    font-size: 4.6rem;
    margin-bottom: 10px;
  }
  .common__headingS {
    font-size: 2.0rem;
    margin-bottom: 40px;
  }
  .common__headingS--CS {
    font-size: 2.4rem;
  }
  .common__headingS:after {
    bottom: -15px;
  }
  .common__headingXS {
    font-size: 1.8rem;
    padding-left: 22px;
    margin: 50px 0 20px;
  }
  .common__headingXS:after {
    top: 22%;
    width: 12px;
    border-bottom: 12px solid;
  }
  .common__btn a {
    font-size: 1.8rem;
  }
  .common__btn--S a {
    font-size: 1.4rem;
  }
  .common__btn.common__btn--2line a .common__btn--WT__inner span:first-child {
    font-size: 1.2rem;
  }
  .common__img img {
    margin-bottom: 30px;
  }
  .case-study .common__inner {
    padding: 80px 20px 80px;
  }
  .case-study .common__col__3 {
    max-width: 48.047%;
    margin-right: 3.906%;
    margin-bottom: 0;
  }
  .case-study .common__col__3:nth-child(2n),
  .case-study .common__col__3:last-child {
    margin-right: 0;
  }
  .case-study .common__col__3:nth-child(3n) .common__img img {
    margin-top: 30px !important;
  }
  .fadeinUp {
    -webkit-transition: all .7s;
    transition: all .7s;
  }
  .feature__balloon__item {
    max-width: 305px;
    font-size: 1.5rem;
  }
  .feature__balloon__item::before {
    top: 88px;
  }
  .feature__balloon__item::after {
    top: 88px;
  }
  .feature__balloon__item:nth-child(2n) {
    margin: 0 60px 45px 0;
  }
  .feature__balloon__item:nth-child(3n) {
    margin: 0 35px 45px 60px;
  }
  .case-study_flame p {
    font-size: 2.8rem;
  }
  .case-study__movie + .case-study__movie {
    margin-top: 70px;
  }
  .siteFooter__inner {
    text-align: center;
    padding: 25px 20px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .siteFooter__logo img {
    width: 94px;
    height: 25px;
    margin-bottom: 5px;
  }
  .siteFooter__copyright {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .siteFooter__copyright {
    font-size: 1.0rem;
  }
  .siteFooter__sns a i {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.6rem;
  }
  h3 {
    font-size: 2.0rem;
  }
  h4 {
    font-size: 1.8rem;
  }
  h5 {
    font-size: 1.6rem;
  }
  table th, table td {
    padding: 10px;
  }
  .only__tb-pc {
    display: none;
    /* PC・タブレットのみ表示・改行 */
  }
  .mainVisual {
    height: 667px;
  }
  .mainVisual__inner {
    padding: 90px 20px 0;
  }
  .mainVisual__text {
    text-align: center;
  }
  .mainVisual__text__title {
    font-size: 2.6rem;
    margin-bottom: 30px;
  }
  .mainVisual__text__logo {
    max-width: 240px;
    margin: 0 auto;
  }
  .mainVisual__img {
    text-align: center;
  }
  .mainVisual__img img {
    max-width: 280px;
  }
  .common__inner {
    width: 100%;
    padding: 60px 20px;
  }
  .common__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .common__col__2 {
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 30px !important;
  }
  .common__col__3 {
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 40px !important;
  }
  .common__headingL {
    font-size: 2.2rem;
  }
  .common__btn a {
    font-size: 1.4rem;
  }
  .common__img--modal img {
    margin: 0 auto;
  }
  .common__col .common__col__3:first-of-type .common__img--modal img {
    margin: 60px auto 0;
  }
  .common__modal iframe, .common__modal video {
    width: 335px;
    height: 189px;
  }
  .about {
    text-align: left;
  }
  .report {
    text-align: left;
  }
  .feature__balloon {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .feature__balloon__item {
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px;
  }
  .feature__balloon__item:nth-child(2n) {
    margin: 0 0 30px 0;
  }
  .feature__balloon__item:nth-child(3n) {
    margin: 0 0 30px 0;
  }
  .feature__balloon__item:last-child {
    margin: 0 0 30px 0 !important;
  }
  .case-study .common__inner {
    padding: 60px 20px 40px;
  }
  .case-study_flame {
    padding: 40px;
  }
  .case-study_flame p {
    font-size: 2.0rem;
  }
  .common__col .common__col__2:first-of-type .youtube {
    margin: 60px auto 0;
  }
  .youtube {
    margin: 20px auto 0;
  }
  table.service__table th {
    font-size: 1.6rem;
    padding: 12px 15px 8px;
  }
    table.service__table td {
    font-size: 1.4rem;
    padding: 15px;
  }
  .siteFooter__inner {
    padding: 15px 20px 10px;
  }
  .siteFooter__logo img {
    width: 66px;
    height: 18px;
  }
  .siteFooter__sns a i {
    font-size: 1.8rem;
  }
  .pageTop {
    right: 10px;
    bottom: 10px;
  }
  .pageTop a {
    width: 50px;
    height: 50px;
  }
}

@media screen and (min-width: 1025px) {
  .only__sp-tb {
    display: none;
    /* タブレット・スマホのみ表示・改行 */
  }
}

@media screen and (min-width: 768px) {
  .only__sp {
    display: none;
    /* スマホのみ表示・改行 */
  }
}

@media screen and (max-width: 1225px) {
  .siteHeader__gNav {
    display: none;
  }
  .siteHeader__gNavSp {
    display: block;
    color: #fff;
  }
  /*　ハンバガー　*/
  .siteHeader__gNavSp__toggle {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 32px;
    height: 26px;
  }
  .siteHeader__gNavSp__toggle span {
    width: 100%;
    height: 3px;
    display: block;
    background: #37414f;
    position: absolute;
    left: 0;
    -webkit-transition: top .5s ease, -webkit-transform .5s ease-in-out;
    transition: top .5s ease, -webkit-transform .5s ease-in-out;
    transition: transform .5s ease-in-out, top .5s ease;
    transition: transform .5s ease-in-out, top .5s ease, -webkit-transform .5s ease-in-out;
  }
  .siteHeader__gNavSp__toggle span:nth-child(1) {
    top: 0px;
  }
  .open .siteHeader__gNavSp__toggle span:nth-child(1) {
    -webkit-transform: translateY(11px) rotate(135deg);
            transform: translateY(11px) rotate(135deg);
  }
  .siteHeader__gNavSp__toggle span:nth-child(2) {
    top: 11.5px;
  }
  .open .siteHeader__gNavSp__toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .siteHeader__gNavSp__toggle span:nth-child(3) {
    top: 23px;
  }
  .open .siteHeader__gNavSp__toggle span:nth-child(3) {
    -webkit-transform: translateY(-11px) rotate(-135deg);
            transform: translateY(-11px) rotate(-135deg);
  }
  /*　メニュー　*/
  .siteHeader__gNavSp__menu {
    background: -webkit-gradient(linear, left top, right top, from(#ff9933), to(#ff7166));
    background: linear-gradient(to right, #ff9933, #ff7166);
    padding: 10px;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: auto;
    text-align: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .5s ease, visibility .5s ease;
    transition: opacity .5s ease, visibility .5s ease;
  }
  .open .siteHeader__gNavSp__menu {
    visibility: visible;
    opacity: 1;
  }
  .siteHeader__gNavSp__menu__item {
    display: block;
    width: 100%;
    position: relative;
  }
  .siteHeader__gNavSp__menu__item a {
    display: block;
    width: 100%;
    border-bottom: 1px solid #fff;
    font-weight: 500;
    text-decoration: none;
    padding: 15px;
  }
  .siteHeader__gNavSp__menu__item:last-child a {
    border-bottom: none;
  }
  .siteHeader__gNavSp__menu__item a:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 9px;
    height: 9px;
    margin-top: -4.5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .open {
    overflow: hidden;
  }
}

@media all and (-ms-high-contrast: none) {
  .siteHeader__gNav__menu__item--trial a .siteHeader__gNav__menu__item--trial__inner span {
    background: none;
    color: #ff9933;
  }
  .mainVisual__text__title {
    background: none;
    color: #ff9933;
  }
  .common__headingM__en {
    background: none;
    color: #ff9933;
  }
  .common__btn--WT a span {
    background: none;
    color: #ff9933;
  }
  .fontNoto {
    font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  }
  .case-study_flame p {
    background: none;
    color: #ff9933;
  }
}
