@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: #0f0f0f;
  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 p + h2 {
  margin-top: 80px;
}

main p + h3 {
  margin-top: 50px;
}

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

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

main p + ul {
  margin-top: 10px;
}

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

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

main ul + h2 {
  margin-top: 80px;
}

main ul + h3 {
  margin-top: 50px;
}

main ul + h4 {
  margin-top: 20px;
}

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

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

main ol + h2 {
  margin-top: 80px;
}

main ol + h3 {
  margin-top: 50px;
}

main ol + h4 {
  margin-top: 20px;
}

main a {
  text-decoration: underline;
}

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

table {
  width: 100%;
  background: #fff;
  border-collapse: collapse;
  border-top: 2px solid #cfd6ce;
  border-bottom: 2px solid #cfd6ce;
}

p + table,
div + table {
  margin-top: 30px;
}

table th, table td {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 20px 30px;
  vertical-align: middle;
}

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

table th {
  padding: 15px 30px;
}

table thead th {
  color: #fff;
  font-weight: bold;
  font-size: 2.0rem;
  text-align: center;
  background: #49b44a;
}

table tbody tr:nth-of-type(2n) {
  background: #f5f7f5;
}

table tbody td {
  text-align: center;
}

table tbody img {
  vertical-align: middle;
}

table tbody span {
  color: #666160;
  font-size: 1.3rem;
  display: block;
}

table tbody ul, table tbody ol {
  margin-bottom: 0 !important;
}

/*================================================
  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: 0 40px;
  height: 80px;
  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: 25px;
}

.siteHeader__gNav__menu__item a {
  text-decoration: none;
}

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

.siteHeader__gNav__menu__item--inquiry a, .siteHeader__gNav__menu__item--trial a {
  display: block;
  background: #49b44a;
  border: solid 1px #49b44a;
  height: 36px;
  line-height: 36px;
  padding: 0px 25px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

.siteHeader__gNav__menu__item--trial {
  color: #49b44a;
  margin-right: 20px;
}

.siteHeader__gNav__menu__item--trial a {
  background: #fff;
}

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

.siteHeader__gNavSp {
  display: none;
}

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

.mainVisual__inner {
  width: 100%;
  height: 640px !important;
  max-width: 1064px;
  height: inherit;
  margin: 0 auto;
  z-index: 2;
  padding: 75px 20px 0;
  position: relative;
  z-index: 10;
}

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

.mainVisual__text__title {
  color: #49b44a;
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 7px;
}

.mainVisual__text__subTitle {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 25px;
}

.mainVisual__text__ruby {
  color: #49b44a;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

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

.lead .common__inner {
  padding: 35px 20px;
}

/*　フレックスボックス　------------------------- */
.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: 40px;
}

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

.common__col + .common__col:nth-of-type(2n) .common__col__2 {
  margin-right: 0;
}

.common__col + .common__col:nth-of-type(2n) .common__col__2:nth-child(2n) {
  margin-right: 3.906%;
}

.common__img + .common__col {
  margin-top: 40px;
}

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

.handling .common__col,
.setup .common__col,
.flow .common__col {
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}

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

.common__col__2:nth-child(2n), .common__col__2:last-child {
  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%;
  position: relative;
  min-height: 0%;
}

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

/*　大見出し　------------------------- */
.common__headingL {
  color: #0f0f0f;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 70px;
  position: relative;
}

.common__headingL::after {
  position: absolute;
  content: " ";
  display: block;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -15px;
  width: 80px;
  border-bottom: 5px solid #49b44a;
  border-radius: 3px;
}

.common__headingL--white {
  color: #fff;
}

.common__headingL--white::after {
  border-bottom: 5px solid #fff;
}

/*　中見出し　------------------------- */
.common__headingM {
  color: #49b44a;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
}

/*　小見出し　------------------------- */
.common__headingS {
  color: #0f0f0f;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

/*　最小見出し　------------------------- */
.common__headingXS {
  color: #49b44a;
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.common__headingXS--subColor {
  color: #ed724c;
}

/*　リンクボタン　------------------------- */
.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: 530px;
  padding: 19px 30px 17px;
  border: 2px solid #ed724c;
  border-radius: 41px;
  background: #ed724c;
}

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

.common__btn--S a {
  font-size: 1.4rem !important;
  max-width: 200px !important;
  padding: 10px 30px !important;
  margin-top: 30px;
}

.common__btn--S a i::before {
  width: 9px;
  height: 9px;
}

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

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

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

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

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

/*　注意書き　------------------------- */
.common__caution {
  color: rgba(15, 15, 15, 0.7);
  font-size: 1.4rem;
  font-weight: normal;
}

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

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

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

.fontIBM {
  font-family: 'IBM Plex Sans JP', sans-serif;
}

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

.common__img img {
  width: 100%;
}

.common__img i {
  display: block;
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #0f0f0f transparent;
  opacity: 0.8;
}

.common__img i::before {
  color: #fff;
  position: absolute;
  top: 23px;
  right: 6px;
  width: 16px;
  height: 16px;
  font-size: 2.0rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\2b";
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

/*　枠　------------------------- */
.common__frame {
  background: #f5f7f5;
  border-radius: 10px;
  padding: 30px 60px;
}

.common__frame.common__col__3 {
  padding: 30px 23px;
}

.common__frame .common__col__3 {
  margin-bottom: 0 !important;
}

.bgGray .common__frame,
.bgGreen .common__frame,
.bgLightGreen .common__frame {
  background: #fff;
}

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

.bgGreen {
  background: #49b44a;
}

.bgLightGreen {
  background: #e4f4e4;
}

/*　区切り線　------------------------- */
.lineGray {
  border: 1px solid #efefef;
  margin: 55px 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);
}

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

.modalContent iframe, .modalContent video {
  width: 720px;
  height: 405px;
  display: block;
  -webkit-box-shadow: 0px 0px 15px #494949;
          box-shadow: 0px 0px 15px #494949;
}

.modalContent img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  -webkit-box-shadow: 0px 0px 15px #494949;
          box-shadow: 0px 0px 15px #494949;
}

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

.modalOpen {
  position: relative;
}

.modalOpen:hover {
  cursor: pointer;
}

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

.modalClose:hover {
  cursor: pointer;
}

/* ---------------------------------------
  lead
--------------------------------------- */
.lead {
  width: 100%;
  background: #49b44a;
  position: relative;
}

.lead::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 50px solid transparent;
  border-top: 40px solid #49b44a;
  z-index: 10;
}

.lead__catch {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

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

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

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

.about__list {
  width: 100%;
  max-width: 860px;
  list-style: none;
  margin: 30px auto 0;
}

.about__list li {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.about__list li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1.4em;
  height: 1.4em;
  background-image: url(../img/icon_check.svg);
  background-repeat: no-repeat;
  padding-left: 40px;
}

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

.feature__frame {
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  margin-top: 60px;
  position: relative;
}

.feature__frame img {
  margin-bottom: 25px;
}

.feature__frame p {
  font-size: 1.5rem;
  text-align: left;
}

.feature__frame__number {
  position: absolute;
  top: -25px;
  left: 30px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  background: #ed724c;
}

.feature__frame__number span {
  color: #fff;
  font-size: 3.0rem;
  font-weight: bold;
  line-height: 60px;
}

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

/* ---------------------------------------
  setup
--------------------------------------- */
.setup {
  width: 100%;
  color: #fff;
  text-align: center;
}

.setup__step .common__col__3 {
  position: relative;
}

.setup__step .common__col__3::after {
  position: absolute;
  content: '';
  width: 25px;
  height: 25px;
  top: 140px;
  right: -25px;
  margin: auto;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  border-radius: 2.5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.setup__step .common__col__3:last-of-type::after {
  content: none;
}

.setup__step img {
  width: 100%;
  max-width: 290px;
  margin-bottom: 10px;
}

.setup__point {
  width: 100%;
  max-width: 740px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.6;
  background: #ed724c;
  border-radius: 10px;
  padding: 20px 30px;
  margin: 50px auto 0;
}

/* ---------------------------------------
  flow
--------------------------------------- */
.flow {
  width: 100%;
  color: #49b44a;
  text-align: center;
}

.flow__step .common__col__3 {
  position: relative;
}

.flow__step .common__col__3::after {
  position: absolute;
  content: '';
  width: 25px;
  height: 25px;
  top: 140px;
  right: -25px;
  margin: auto;
  border-top: 5px solid #49b44a;
  border-right: 5px solid #49b44a;
  border-radius: 2.5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.flow__step .common__col__3:last-of-type::after {
  content: none;
}

.flow__step img {
  width: 100%;
  max-width: 290px;
  margin-bottom: 10px;
}

.flow__step p {
  margin-top: -20px;
}

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

.trial img {
  width: 100%;
  max-width: 740px;
}

/* ---------------------------------------
  inquiry
---------------------------------------　*/
.inquiry {
  color: #fff;
  width: 100%;
  text-align: center;
  background: #fff url(../img/inquiry_bg.jpg) no-repeat center center/cover;
}

.inquiry__lead {
  font-size: 1.6rem;
  margin-top: -20px;
  margin-bottom: 50px;
}

/*================================================
  footer
================================================*/
#siteFooter {
  color: #fff;
  background: #0f0f0f;
  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;
  border-radius: 30px;
  background: #ed724c;
  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);
  margin: 0 20px 20px 0;
}

.pageTop a::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  top: 10px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  border-radius: 2px;
  -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;
  }
  main p + h2 {
    margin-top: 30px;
  }
  main p + h3 {
    margin-top: 30px;
  }
  main p + h4 {
    margin-top: 15px;
  }
  main ul + p {
    margin-top: 15px;
  }
  main ul + h2 {
    margin-top: 30px;
  }
  main ul + h3 {
    margin-top: 30px;
  }
  main ul + h4 {
    margin-top: 15px;
  }
  main ol + p {
    margin-top: 15px;
  }
  main ol + h2 {
    margin-top: 30px;
  }
  main ol + h3 {
    margin-top: 30px;
  }
  main ol + h4 {
    margin-top: 15px;
  }
  table {
    margin-bottom: 40px;
  }
  table th {
    padding: 10px 15px;
  }
  table thead th {
    font-size: 1.8rem;
  }
  .only__pc {
    display: none;
    /* PCのみ表示・改行 */
  }
  .siteHeader__inner {
    padding: 0px 20px;
    height: 70px;
  }
  .siteHeader__logo img {
    height: 26px;
    width: 100px;
  }
  .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: #0f0f0f;
    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: #49b44a;
    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;
  }
  .mainVisual {
    margin: 70px auto 0;
  }
  .mainVisual__inner {
    height: 560px !important;
    padding: 75px 20px 0;
  }
  .mainVisual__text__title {
    font-size: 3.2rem;
    line-height: 1.3;
  }
  .mainVisual__text__subTitle {
    font-size: 1.6rem;
  }
  .mainVisual__text__ruby {
    font-size: 1.5rem;
  }
  .common__inner {
    width: 768px !important;
    padding: 60px 20px;
  }
  .common__col {
    margin-bottom: 40px;
  }
  .common__headingL {
    font-size: 3.0rem;
    margin-bottom: 50px;
  }
  .common__headingM {
    font-size: 2.0rem;
    padding: 0 0 10px;
    margin-bottom: 10px;
  }
  .common__headingS {
    font-size: 1.8rem;
  }
  .common__headingXS {
    font-size: 1.7rem;
  }
  .common__headingXS {
    font-size: 1.6rem;
  }
  .common__btn a {
    font-size: 1.8rem;
    padding: 17px 25px 15px;
  }
  .common__btn--S a {
    margin-top: 15px;
  }
  .common__caution {
    font-size: 1.3rem;
  }
  .common__frame.common__col__3 {
    padding: 20px 15px;
  }
  .common__frame {
    padding: 25px 30px;
  }
  .fadeinUp {
    -webkit-transition: all .7s;
    transition: all .7s;
  }
  .lead__catch {
    font-size: 3.2rem;
  }
  .lead__catch {
    font-size: 2.6rem;
  }
  .about__list li {
    font-size: 1.6rem;
  }
  .setup__step .common__col__3::after {
    width: 17px;
    height: 17px;
    top: 105px;
    right: -20px;
  }
  .flow__step .common__col__3::after {
    width: 17px;
    height: 17px;
    top: 105px;
    right: -20px;
  }
  .inquiry__lead {
    margin-bottom: 50px;
  }
  .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 {
    background: #fff url(../img/main-visual_sp_bg.jpg) no-repeat center center/cover;
  }
  .mainVisual__inner {
    padding: 40px 20px 0;
  }
  .mainVisual__text__title {
    font-size: 2.8rem;
  }
  .mainVisual__text__subTitle {
    line-height: 1.4;
    padding: 5px 15px;
    letter-spacing: 0;
    margin-bottom: 10px;
  }
  .common__inner {
    width: 100% !important;
    padding: 50px 20px;
  }
  .common__col + .common__col:nth-of-type(2n) .common__col__2:nth-child(2n) {
    margin-right: 0;
  }
  .common__col {
    margin-bottom: 0;
    -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: 40px !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.6rem;
    letter-spacing: 0;
  }
  .common__btn a {
    font-size: 1.4rem;
  }
  .common__list li {
    padding-left: 15px;
  }
  .common__list li:before {
    width: 10px;
    height: 10px;
    top: 0.75rem;
  }
  .common__frame {
    padding: 25px;
  }
  .lineGray {
    margin: 40px 0;
  }
  .modalContent iframe, .modalContent video {
    width: 400px;
    height: 270px;
  }
  .setup__step .common__col__3::after {
    content: none;
  }
  .setup__point {
    font-size: 1.8rem;
    margin: 0px auto;
  }
  .flow__step .common__col__3::after {
    content: none;
  }
  .inquiry__lead {
    font-size: 1.4rem;
  }
  .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;
    /* タブレット・スマホのみ表示・改行 */
  }
}

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

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