@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", "メイリオ", Meiryo, "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic";
  color: #231815;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1 {
  font-size: 5.0rem;
}

h2 {
  font-size: 4.2rem;
}

h3 {
  font-size: 3.2rem;
}

h4 {
  font-size: 2.6rem;
}

h5 {
  font-size: 2.2rem;
}

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

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

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

main p {
  margin-bottom: 0;
}

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

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: #f3f5fa;
}

table tr:nth-of-type(even) td {
  background: #fbfbfb;
}

/*================================================
  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%;
  max-width: 1286px;
  margin: 0 auto;
  padding: 0 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.8;
}

/*　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 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 30px;
}

.siteHeader__gNav__menu__item a {
  text-decoration: none;
}

.siteHeader__gNav__menu__item--document {
  text-align: center;
  margin-right: 20px;
}

.siteHeader__gNav__menu__item--document a {
  color: #fff !important;
  display: block;
  background: #0665fb;
  min-width: 200px;
  height: 42px;
  line-height: 42px;
  padding: 0px 20px;
}

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

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

.siteHeader__gNav__menu__item--inquiry {
  text-align: center;
  margin-right: 0;
}

.siteHeader__gNav__menu__item--inquiry a {
  color: #003b96;
  display: block;
  background: #fff;
  min-width: 200px;
  height: 42px;
  line-height: 42px;
  padding: 0px 20px;
}

.siteHeader.transform .siteHeader__gNav__menu__item--inquiry a {
  color: #fff;
  background: #003b96;
}

.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.transform .siteHeader__gNav__menu__item {
  color: #231815;
}

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

.siteHeader__gNavSp {
  display: none;
}

/*================================================
  body
================================================*/
/* ---------------------------------------
  main visual
--------------------------------------- */
.mainVisual {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mainVisual::after {
  position: absolute;
  display: block;
  content: "";
  z-index: 1;
  height: 720px;
  width: 100%;
  background-image: url(../img/main-visual_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  top: 0;
  left: 0;
}

.mainVisual__inner {
  color: #fff;
  text-align: center;
  /* width: 100%; */
  width: 70%;
  height: 795px !important;
  /* max-width: 1064px; */
  max-width: 605px;
  height: inherit;
  /* margin: 0 auto; */
  margin-right: 105px;
  /* padding: 110px 20px 0; */
  padding: 100px 20px 0;
  position: relative;
  z-index: 10;
}

.mainVisual__text__title {
  display: inline-block;
  font-size: 5.2rem;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.075em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 15px;
}

.mainVisual__text__title span {
  font-size: 4.2rem;
  margin: 0 8px;
}

.mainVisual__text__subTitle {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 20px;
}

.mainVisual__img {
  width: 100%;
  max-width: 686px;
  height: auto;
  margin: 0 auto;
  position: relative;
}

.mainVisual__img img {
  width: inherit;
  max-width: inherit;
}

.mainVisual__img::after {
  position: absolute;
  display: block;
  content: "";
  z-index: 100;
  /* width: 180px;
  height: 176px; */
  width: 174px;
  height: 170px;
  background-image: url(../img/badge.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  top: -5px;
  right: -95px;
}

.mainVisual__form {
  width: 30%;
  margin: 100px 20px 20px 0;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.25);
  box-shadow: 0px 0px 10px rgba(0,0,0,.25);
  overflow: hidden;
  padding: 10px 15px 30px;
  z-index: 5;
}

.mainVisual__form__title {
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 1.7;
  text-align: center;
}

.mainVisual__form iframe {
  width: 100%;
  border: 0;
}


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

/*　フレックスボックス　------------------------- */
.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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}

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

.feature__content:nth-of-type(2n+1) > .common__col {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

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

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

.feature__content:nth-of-type(2n+1) > .common__col .common__col__2:first-child {
  margin-right: 0;
}

.feature__content:nth-of-type(2n+1) > .common__col .common__col__2:last-child {
  margin-right: 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) {
  margin-right: 0;
}

/*　大見出し　------------------------- */
.common__headingL {
  color: #231815;
  font-size: 4.0rem;
  font-weight: 900;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
}

.bgBlue .common__headingL {
  color: #fff;
}

.common__headingL span {
  color: #5c90c4;
  font-size: 1.8rem;
  display: block;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.bgBlue .common__headingL span {
  color: #fff;
}

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

.common__headingM span {
  display: inline-block;
  color: #003b96;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.1em;
  border: 2px solid #003b96;
  background: #d8e9f8;
  padding: 0 16px 0 20px;
  margin-bottom: 25px;
}

.common__headingM::after {
  position: absolute;
  content: " ";
  display: block;
  left: 0;
  bottom: -30px;
  width: 80px;
  border-bottom: 2px solid #003b96;
}

/*　小見出し　------------------------- */
.common__headingS {
  color: #003b96;
  font-size: 3.0rem;
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.webinar .common__headingS {
  color: #fff;
  text-align: left;
}

/*　最小見出し　------------------------- */
.common__headingXS {
  font-size: 1.8rem;
  font-weight: bold;
}

/*　リンクボタン　------------------------- */
.common__btn {
  text-align: center;
  margin: 0 auto;
}

.common__btn a {
  display: inline-block;
  color: #fff;
  font-size: 2.0rem;
  font-weight: bold;
  text-decoration: none;
  width: 100%;
  max-width: 560px;
  padding: 19px 30px 17px;
  border: 2px solid #003b96;
  background: #003b96;
}

.common__btn a span {
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
}

.common__btn a i {
  position: relative;
  display: inline-block;
  padding: 0 0 0 15px;
  vertical-align: middle;
  text-decoration: none;
}

.common__btn a i::before, .common__btn a i::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.common__btn a i::before {
  top: -3px;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.common__btn--white a {
  color: #003b96;
  background: #fff;
  border: 2px solid #fff;
}

.common__btn--white a i::before {
  border-top: 2px solid #003b96;
  border-right: 2px solid #003b96;
}

.common__btn--border a {
  background: none;
  border: 2px solid #fff;
}

/*　箇条書き　------------------------- */
.common__list {
  list-style: none;
  padding-left: 0;
}

.common__list li {
  position: relative;
  padding-left: 25px;
}

.achievement__list .common__list li {
  padding-left: 18px;
}

.common__list li:before {
  background-color: #5c90c4;
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  top: 0.85rem;
  left: 0em;
  border-radius: 50%;
}

.achievement__list .common__list li:before {
  width: 10px;
  height: 10px;
  top: 0.5rem;
}

p + .common__list {
  margin-top: 20px;
}

/*　注意書き　------------------------- */
.common__caution {
  color: rgba(35, 24, 21, 0.7);
  font-size: 1.3rem;
  display: block;
}

/*　上付き文字　------------------------- */
.common__sup {
  vertical-align: super;
  font-size: 1.3rem;
  color: rgba(35, 24, 21, 0.7);
}

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

.fontNotoSerif {
  font-family: 'Noto Serif JP', serif;
}

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

.common__img img {
  width: 100%;
  vertical-align: middle;
}

/*　背景　------------------------- */
.bgGray {
  background: #efefef;
}

.bgBlue {
  color: #fff;
  background-color: linear-gradient(to right, #005cb4, #0b00be);
  background-image: url(../img/inquiry_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/*　区切り線　------------------------- */
.lineGray {
  border: 1px solid #efefef;
  margin: 55px 0;
}

.lineDeepGray {
  border: 1px solid #b3b5b7;
  margin: 100px 0;
}

/*　Youtube　------------------------- */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

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

/*　フェードイン アニメーション　------------------------- */
.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);
}

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

.achievement__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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 100px;
}

.achievement__col__text {
  width: 100%;
  max-width: 64.844%;
  margin-right: 3.906%;
  position: relative;
  min-height: 0%;
}

.achievement__col__img {
  width: 100%;
  max-width: 31.250%;
  position: relative;
  min-height: 0%;
}

.achievement__subTitle {
  font-size: 2.2rem;
  font-weight: 900;
}

.achievement__subTitle span {
  font-size: 3.0rem;
  margin: 0 3px;
}

.achievement__title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 40px;
}

.achievement__title span {
  display: inline-block;
  font-size: 6.0rem;
  background: -webkit-gradient(linear, left top, right top, from(#003b96), to(#004bc2));
  background: linear-gradient(to right, #003b96, #004bc2);
  -webkit-background-clip: text;
  color: transparent;
}

.achievement__title sup {
  display: inline-block;
  font-size: 1.8rem;
  padding-top: 1.6rem;
}

.achievement__frame {
  width: 100%;
  max-width: 944px;
  border: #efefef solid 15px;
  border-radius: 15px;
  padding: 60px 45px;
  margin: 0 auto;
}

.achievement__list {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.achievement__list__item {
  width: 100%;
  max-width: 24.090%;
  margin-right: 1.214%;
  margin-bottom: 10px;
  position: relative;
  min-height: 315px;
  background: #efefef;
}

.achievement__list__item dt {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  background: #003b96;
  padding-top: 4px;
}

.achievement__list__item dd {
  font-size: 1.3rem;
  line-height: 1.7;
  padding: 15px;
}

.achievement__list__item dd .common__img {
  max-width: 140px;
  margin: 0 auto 15px;
}

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

.feature__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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.feature__content:nth-of-type(2n+1) .feature__col {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.feature__col__img {
  width: 100%;
  max-width: 51.953%;
  margin-right: 3.906%;
  position: relative;
  z-index: 1;
  min-height: 0%;
}

.feature__content:nth-of-type(2n+1) .feature__col__img {
  margin-right: 0;
}

.feature__col__img img {
  width: 100%;
  vertical-align: middle;
}

.feature__col__text {
  line-height: 1.8;
  width: 100%;
  max-width: 44.141%;
  padding-right: 45px;
  position: relative;
  min-height: 0%;
}

.feature__content:nth-of-type(2n+1) .feature__col__text {
  padding-right: 0;
  padding-left: 45px;
  margin-right: 3.906%;
}

.feature__accordion {
  width: 100%;
  margin: 0 auto 100px;
  position: relative;
}

.feature__content:last-of-type .feature__accordion {
  margin-bottom: 0;
}

.feature__accordion__title {
  color: #fff;
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  line-height: 74px;
  background: #003b96;
  width: 100%;
  height: 74px;
  max-width: 498px;
  padding: 0 50px;
  position: relative;
  margin: 0 auto;
}

.feature__accordion__title:hover, .feature__accordion__title:active, .feature__accordion__title.open {
  opacity: 0.8;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.feature__accordion__title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 20px;
  height: 2px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: #fff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.feature__accordion__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 20px;
  height: 2px;
  background: #fff;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.feature__accordion__title.open::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.feature__accordion__title.open::after {
  opacity: 0;
}

.feature__accordion__content {
  display: none;
  width: 100%;
  max-width: 944px;
  border-radius: 15px;
  background: #fff;
  padding: 70px 60px;
  margin: 0 auto;
}

.feature__choose {
  text-align: center;
  margin-bottom: 0;
}

.feature__choose .common__img {
  max-width: 210px;
  margin: 0 auto 20px;
}

.feature__choose .common__col__3 {
  margin-bottom: 0;
}

.feature__detail {
  margin-bottom: 30px;
}

.feature__detail .common__col__2:first-child {
  max-width: 31.675%;
  margin-right: 2.427%;
}

.feature__detail .common__col__2:last-child {
  max-width: 65.898%;
  margin-right: 0;
}

#feature2 .feature__detail .common__img {
  padding: 0 25px;
}

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

.case-study_lead {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 50px;
}

.case-study__item {
  display: block;
  text-decoration: none;
}

.case-study__item__img {
  background: #fff;
  line-height: 0;
}

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

.case-study__item__text {
  color: #fff;
  font-size: 1.5rem;
  background: #003b96;
  padding: 30px;
  position: relative;
  min-height: 205px;
}

.case-study__item__text h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.case-study__slider {
  padding: 0;
  margin: 0 -15px;
}

.case-study__slider li {
  margin: 0 15px;
}

.case-study__slider .slide__arrow {
  position: absolute;
  top: 50%;
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  cursor: pointer;
}

.case-study__slider .slide__arrow--prev {
  left: -70px;
}

.case-study__slider .slide__arrow--next {
  right: -70px;
}

.case-study__slider .slide__arrow:hover {
  cursor: pointer;
  opacity: 0.8;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.case-study__slider .slick-dots {
  bottom: -40px;
}

/* ---------------------------------------
  faq
---------------------------------------　*/
.faq__accordion {
  width: 100%;
  margin: 0 auto;
}

.faq__accordion__item {
  margin-bottom: 15px;
}

.faq__accordion__title {
  font-size: 1.6rem;
  background-color: #fff;
  background-image: url(../img/question_icon.svg);
  background-repeat: no-repeat;
  background-position: left 30px center;
  background-size: 24px 32px;
  margin: 0;
  padding: 18px 88px 18px 80px;
  position: relative;
}

.faq__accordion__title:hover, .faq__accordion__title:active {
  background-color: #f0f8ff;
}

.faq__accordion__title i {
  content: "";
  position: absolute;
  background: #000;
  width: 68px;
  height: 100%;
  min-height: 68px;
  top: 0;
  right: 0;
}

.faq__accordion__title i::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 22px;
  height: 2px;
  /*縦線に*/
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: #9fa0a0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.faq__accordion__title i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  /*横線に*/
  width: 22px;
  height: 2px;
  background: #9fa0a0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.faq__accordion__title.open i::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq__accordion__title.open i::after {
  opacity: 0;
}

.faq__accordion__content {
  display: none;
  color: #fff;
  background: #003b96;
  background-image: url(../img/anser_icon.svg);
  background-repeat: no-repeat;
  background-position: left 30px center;
  background-size: 20px 26px;
  padding: 18px 30px 18px 80px;
}

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

.inquiry__lead {
  margin-top: -20px;
  margin-bottom: 80px;
}

.inquiry__btn {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.inquiry__btn .common__btn:first-child {
  width: 100%;
  /* max-width: 460px; */
  margin: 0 40px 0 0;
}

.inquiry__btn .common__btn:last-child {
  width: 100%;
  /* max-width: 400px; */
  margin: 0;
}

/*================================================
  footer
================================================*/
#siteFooter {
  color: #fff;
  background: #333;
  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: 0;
  bottom: 0;
  z-index: 9998;
}

.pageTop a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  background: #231815;
  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: 20px;
  height: 20px;
  top: 10px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-top: 2px solid #9fa0a0;
  border-right: 2px solid #9fa0a0;
  -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;
  }
  main p + p {
    margin-top: 15px;
  }
  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::after {
    height: 660px;
  }
  .mainVisual__inner {
    padding: 80px 20px 0;
    margin-right: 30px;
    height: 712px !important;
  }
  .mainVisual__text__title {
    font-size: 4.2rem;
    line-height: 1.4;
  }
  .mainVisual__text__title span {
    font-size: 4.0rem;
  }
  .mainVisual__text__subTitle {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .mainVisual__img {
    max-width: 560px;
  }
  .mainVisual__img::after {
    /* width: 145px;
    height: 142px;
    right: -60px;
    top: -10px; */
    width: 135px;
    height: 132px;
    right: -33px;
    top: 0px;
  }
  .mainVisual__form {
    margin: 80px 30px 20px 0;
    padding: 10px 5px 30px;
  }
  .mainVisual__form__title {
    font-size: 2.4rem;
  }
  .common__inner {
    width: 768px !important;
    padding: 80px 20px;
  }
  .common__col {
    margin-bottom: 40px;
  }
  .common__headingL {
    font-size: 3.4rem;
    margin-bottom: 50px;
  }
  .common__headingL span {
    font-size: 1.7rem;
  }
  .common__headingM {
    font-size: 2.8rem;
    margin-bottom: 50px;
  }
  .common__headingM span {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .common__headingS {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  .common__headingXS {
    font-size: 1.7rem;
  }
  .common__headingXS {
    font-size: 1.6rem;
  }
  .common__btn a {
    font-size: 1.8rem;
    padding: 17px 25px 15px;
  }
  .fadeinUp {
    -webkit-transition: all .7s;
    transition: all .7s;
  }
  .achievement__col__text {
    max-width: 59.844%;
  }
  .achievement__col__img {
    max-width: 36.25%;
  }
  .achievement__subTitle {
    font-size: 2.0rem;
  }
  .achievement__subTitle span {
    font-size: 2.8rem;
  }
  .achievement__title {
    font-size: 3.6rem;
    margin-bottom: 30px;
  }
  .achievement__title span {
    font-size: 5.4rem;
  }
  .achievement__list__item {
    max-width: 32.237%;
    margin-right: 1.645%;
  }
  .achievement__list__item:nth-child(3n) {
    margin-right: 0;
  }
  .feature__col {
    margin-bottom: 40px;
  }
  .feature__col__text {
    font-size: 1.6rem;
  }
  .feature__accordion__title {
    font-size: 1.8rem;
    line-height: 64px;
    height: 64px;
    max-width: 420px;
  }
  .case-study__item__text {
    padding: 25px 30px;
    min-height: 190px;
  }
  .case-study__item__text h4 {
    font-size: 1.6rem;
  }
  .faq__accordion__title {
    background-size: 20px 27px !important;
    padding: 13px 68px 13px 60px !important;
    background-position: left 20px center !important;
  }
  .faq__accordion__title i {
    width: 58px;
    min-height: 58px;
  }
  .faq__accordion__title i::before {
    right: 20px;
    width: 18px;
  }
  .faq__accordion__title i::after {
    right: 20px;
    width: 18px;
  }
  .faq__accordion__content {
    background-size: 20px 22px;
    background-position: left 20px center;
    padding: 13px 20px 13px 60px;
  }
  .inquiry__lead {
    margin-bottom: 50px;
  }
  .inquiry__btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .inquiry__btn .common__btn:first-child {
    max-width: 100%;
    margin: 0 0 30px;
  }
  .inquiry__btn .common__btn:last-child {
    max-width: 100%;
    margin: 0;
  }
  .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::after {
    height: 667px;
  }
  .mainVisual__inner {
    padding: 95px 20px 0;
    height: 667px !important;
    width: 100%;
    margin: 0;
  }
  .mainVisual__text__title {
    font-size: 3.2rem;
    margin-bottom: 20px;
  }
  .mainVisual__text__title span {
    font-size: 2.6rem;
    margin: 0 3px;
  }
  .mainVisual__text__subTitle {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 80px;
  }
  .mainVisual__img {
    max-width: 335px;
  }
  .mainVisual__img::after {
    width: 120px;
    height: 116px;
    right: -10px;
    top: -40px;
  }
  .mainVisual__form {
    display: none;
  }
  .common__inner {
    width: 100% !important;
    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__2:last-of-type {
    margin-bottom: 0;
  }
  .common__col__3 {
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 30px !important;
  }
  .common__col__3:last-of-type {
    margin-bottom: 0;
  }
  .common__headingL {
    font-size: 2.8rem;
    letter-spacing: 0;
    margin-bottom: 40px;
  }
  .common__headingL span {
    font-size: 1.6rem;
  }
  .common__headingM {
    font-size: 2.2rem;
  }
  .common__headingS {
    font-size: 2.2rem;
  }
  .common__btn a {
    font-size: 1.4rem;
  }
  .common__list li {
    padding-left: 20px;
  }
  .achievement__list .common__list li {
    padding-left: 13px;
  }
  .common__list li:before {
    width: 10px;
    height: 10px;
    top: 0.75rem;
  }
  .achievement__list .common__list li:before {
    width: 8px;
    height: 8px;
    top: 0.45rem;
  }
  .lineGray {
    margin: 40px 0;
  }
  .lineDeepGray {
    margin: 60px 0;
  }
  .achievement__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
  .achievement__col__text {
    max-width: 100%;
    margin-right: 0;
  }
  .achievement__col__img {
    max-width: 100%;
    margin-top: 40px;
  }
  .achievement__subTitle {
    font-size: 1.8rem;
  }
  .achievement__subTitle span {
    font-size: 2.4rem;
  }
  .achievement__title {
    font-size: 2.7rem;
    margin-bottom: 20px;
  }
  .achievement__title span {
    font-size: 4.0rem;
  }
  .achievement__title sup {
    font-size: 1.3rem;
    padding-top: 1rem;
  }
  .achievement__frame {
    border: #efefef solid 5px;
    padding: 30px 15px;
  }
  .achievement__list__item {
    max-width: 48.246%;
    margin-right: 3.509%;
    min-height: 290px;
  }
  .achievement__list__item:nth-child(3n) {
    margin-right: auto;
  }
  .achievement__list__item:nth-child(2n) {
    margin-right: 0;
  }
  .achievement__list__item dt {
    font-size: 1.4rem;
  }
  .achievement__list__item dd {
    font-size: 1.15rem;
    padding: 10px;
  }
  .feature__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .feature__col__img {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .feature__content:nth-of-type(2n+1) .feature__col__text {
    padding-left: 0;
    margin-right: 0;
  }
  .feature__col__text {
    max-width: 100%;
    padding-right: 0;
  }
  .feature__accordion {
    margin: 0 auto 60px;
  }
  .feature__accordion__title {
    font-size: 1.6rem;
    line-height: 64px;
    height: 64px;
  }
  .feature__accordion__content {
    padding: 30px 20px;
  }
  .case-study {
    background: #f3f3f3;
  }
  .case-study__item {
    margin-bottom: 10px;
  }
  .faq__accordion__title {
    font-size: 1.4rem !important;
    background-size: 18px 24px !important;
    padding: 13px 70px 13px 45px !important;
    background-position: left 15px center !important;
  }
  .faq__accordion__title i {
    width: 54px;
    min-height: 54px;
  }
  .faq__accordion__title i::before {
    right: 18px;
  }
  .faq__accordion__title i::after {
    right: 18px;
  }
  .faq__accordion__content {
    background-size: 18px 19px;
    background-position: left 15px center;
  }
  .siteFooter__inner {
    padding: 15px 20px 10px;
  }
  .siteFooter__logo img {
    width: 66px;
    height: 18px;
  }
  .siteFooter__sns a i {
    font-size: 1.8rem;
  }
  .pageTop a {
    width: 50px;
    height: 50px;
  }
}

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

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

@media screen and (max-width: 1120px) {
  .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: #fff;
    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.transform .siteHeader__gNavSp__toggle span {
    background: #231815;
  }
  /*　メニュー　*/
  .siteHeader__gNavSp__menu {
    background: #003b96;
    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 a span {
    vertical-align: middle;
  }
  .siteHeader__gNavSp__menu__item a i {
    font-size: 1.0em;
    padding-left: 10px;
    vertical-align: middle;
  }
  .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) {
  .fontNoto, .fontNotoSerif {
    font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "メイリオ", Meiryo, "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic";
  }
  .achievement__title span {
    background: none;
    color: #003b96;
  }
}
