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

body {
  font-size: 1.8em;
  line-height: 2.0;
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  color: #111111;
  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(17, 17, 17, 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: 100px;
  -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: 35px;
  width: 138px;
  display: block;
}

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

/*　PC用グローバルメニュー　------------------------- */
.siteHeader__gNav {
  width: 100%;
  /*
  @include media(sp) {
    display: none;
  }
  */
}

.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;
  font-size: 2.0rem;
  background: -webkit-gradient(linear, left top, right top, from(#ee6b00), to(#f78e37));
  background: linear-gradient(to right, #ee6b00, #f78e37);
  height: 70px;
  line-height: 70px;
  padding: 0px 20px;
  border-radius: 10px;
  position: relative;
}

.siteHeader__gNav__menu__item--inquiry a:before {
  display: inline-block;
  content: "";
  width: 45px;
  height: 30px;
  background: url(../img/icon_mail.svg) no-repeat;
  background-size: 45px 30px;
  background-position: left top;
  top: 20px;
  padding-right: 45px;
  position: absolute;
}

.siteHeader__gNav__menu__item--inquiry span {
  vertical-align: middle;
  padding-left: 55px;
}

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

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

.siteHeader__gNavSp {
  display: none;
}

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

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

.mainVisual__text {
  width: 100%;
  max-width: 1064px;
  color: #2065b4;
  text-align: center;
  margin: 0 auto;
}

.mainVisual__img {
  width: 100%;
  max-width: 1064px;
  color: #2065b4;
  text-align: center;
  margin: 0 auto;
}

.mainVisual__text__title {
  display: inline-block;
  font-size: 6.0rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  height: 80px;
  line-height: 80px;
  background: #fff;
  padding: 0 20px;
  margin-bottom: 10px;
}

.mainVisual__text__subTitle {
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 700;
  height: 64px;
  line-height: 64px;
  background: #fff;
  padding: 0 20px;
  margin-bottom: 45px;
}

.mainVisual__img img {
  width: 100%;
  max-width: 131px;
  margin-right: 10px;
  -webkit-filter: drop-shadow(0px 0px 15px white);
          filter: drop-shadow(0px 0px 15px white);
}

.mainVisual__img img:last-child {
  margin-right: 0;
}

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

.inquiry .common__inner {
  padding: 65px 20px 40px;
}

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

.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__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 {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 50px;
}

/*　中見出し　------------------------- */
.common__headingM {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 50px;
}

.common__headingM__en {
  display: block;
  color: #fff;
  font-size: 2.6rem;
  line-height: 34px;
  width: 180px;
  height: 34px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 1;
}

.common__headingM__en:before {
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: #2065b4;
}

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

.common__headingS:after {
  position: absolute;
  content: " ";
  display: block;
  left: 0;
  bottom: -25px;
  width: 80px;
  border-bottom: 2px solid;
  -o-border-image: #2065b4;
     border-image: #2065b4;
  border-image-slice: 1;
}

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

.common__btn a {
  display: block;
  font-size: 2.3rem;
  font-weight: bold;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, right top, from(#ee6b00), to(#f78e37));
  background: linear-gradient(to right, #ee6b00, #f78e37);
  height: 74px;
  line-height: 74px;
  padding: 0px 20px;
  border-radius: 10px;
  position: relative;
}

.common__btn a:before {
  display: inline-block;
  content: "";
  width: 48px;
  height: 31px;
  background: url(../img/icon_mail.svg) no-repeat;
  background-size: 48px 31px;
  background-position: left top;
  top: 22px;
  padding-right: 48px;
  position: absolute;
}

.common__btn--detail a:before {
  display: inline-block;
  content: "";
  width: 41px;
  height: 41px;
  background: url(../img/icon_internet.svg) no-repeat;
  background-size: 41px 41px;
  background-position: left top;
  top: 16px;
  padding-right: 41px;
  position: absolute;
}

.common__btn span {
  vertical-align: middle;
  padding-left: 63px;
}

.common__btn--detail span {
  padding-left: 56px;
}

/*　アンダーライン　------------------------- */
.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 4px 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(17, 17, 17, 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;
}

.fontURW {
  font-family: urw-din-condensed, sans-serif;
  font-weight: 900;
  font-style: normal;
}

/*　画像　------------------------- */
.common__img {
  width: 100%;
  margin-bottom: 40px;
}

.common__img img {
  width: 100%;
}

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

/*　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);
}

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

.issue .common__inner {
  padding: 80px 20px 0;
}

.issue .common__col__3 {
  border-right: solid 3px #eaeced;
  max-width: 32%;
  padding-right: calc(2% - 3px);
  margin-right: 2%;
}

.issue .common__col__3:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.issue__content {
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
}

.issue__content img {
  display: inline-block;
  width: 82px;
  margin-right: 10px;
}

.issue__content p {
  display: inline-block;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
}

.issue__icon {
  display: block;
  width: auto;
  height: 130px;
  margin: 0 auto 40px;
}

.issue__title {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  background: #2065b4;
  width: 100%;
  max-width: 240px;
  border-radius: 21px;
  padding: 0 10px 1px;
  margin: 0 auto 20px;
}

.issue__list {
  font-weight: 700;
  width: 100%;
  max-width: 245px;
  margin: 0 auto 20px;
}

.issue__arrow {
  width: 100%;
  overflow: hidden;
}

.issue__arrow div {
  position: relative;
  width: 110%;
  height: 130px;
  z-index: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.issue__arrow div svg:first-child {
  position: absolute;
  top: 0;
  width: 100%;
  height: 130px;
  fill: #eaeced;
}

.issue__arrow div svg:last-child {
  position: absolute;
  top: -3px;
  width: 100%;
  height: 130px;
  fill: #fff;
}

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

.case__sec {
  margin-bottom: 120px;
}

.case .common__inner .case__sec:last-of-type {
  margin-bottom: 0;
}

.case__list {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.7;
}

.case__link {
  display: inline-block;
  color: #2065b4;
  font-weight: 700;
  text-decoration: none;
  margin-top: 20px;
  position: relative;
}

.case__link:after {
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/arrow.png) no-repeat;
  background-size: 1em 1em;
  background-position: right top;
  top: 0.55em;
  padding-left: 1em;
  margin-left: 7px;
  position: absolute;
}

.case__point {
  width: 100%;
  max-width: 690px;
  padding: 45px 20px 20px;
  margin: 0 auto 10px;
  overflow: hidden;
  position: relative;
}

.case__point--red {
  background: rgba(218, 98, 114, 0.15);
}

.case__point--yellow {
  background: rgba(234, 154, 50, 0.15);
}

.case__point--green {
  background: rgba(104, 190, 144, 0.15);
}

.case__point__title {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 30px;
  width: 130px;
  height: 30px;
  top: 0;
  left: -5px;
  position: absolute;
  z-index: 1;
}

.case__point__title::before {
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.case__point--red .case__point__title::before {
  background: #da6272;
}

.case__point--yellow .case__point__title::before {
  background: #ea9a32;
}

.case__point--green .case__point__title::before {
  background: #68be90;
}

.case__point__list {
  font-size: 1.4rem;
}

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

/*================================================
  footer
================================================*/
#siteFooter {
  color: #fff;
  background: #111111;
  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: #2065b4;
  border: solid 1px #2065b4;
  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;
  }
  .siteHeader__gNav__menu__item--inquiry a {
    font-size: 1.4rem;
    height: 50px;
    line-height: 50px;
  }
  .siteHeader__gNav__menu__item--inquiry a:before {
    width: 35px;
    height: 25px;
    background-size: 35px 25px;
    top: 13px;
    padding-right: 35px;
  }
  .siteHeader__gNav__menu__item--inquiry span {
    padding-left: 45px;
  }
  .mainVisual {
    background: #fff url(../img/mv_bg_875-760.jpg) no-repeat center center/cover;
  }
  .mainVisual__inner {
    max-width: 768px;
    padding: 280px 20px 0;
  }
  .mainVisual__text__title {
    font-size: 4.6rem;
    height: 70px;
    line-height: 70px;
  }
  .mainVisual__text__subTitle {
    font-size: 2.6rem;
    height: 50px;
    line-height: 50px;
  }
  .inquiry .common__inner {
    padding: 80px 20px 0;
  }
  .common__inner {
    width: 768px;
    padding: 80px 20px;
  }
  .common__headingL {
    font-size: 3.2rem;
  }
  .common__headingM {
    font-size: 3.2rem;
  }
  .common__headingS {
    font-size: 2.0rem;
    margin-bottom: 40px;
  }
  .common__headingS:after {
    bottom: -15px;
  }
  .common__btn a {
    font-size: 1.8rem;
  }
  .fadeinUp {
    -webkit-transition: all .7s;
    transition: all .7s;
  }
  .issue__content img {
    width: 45px;
    margin-bottom: 5px;
  }
  .case__list {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .case__link {
    margin-top: 10px;
  }
  .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・タブレットのみ表示・改行 */
  }
  .siteHeader__gNav__menu__item--inquiry a {
    height: 40px;
    line-height: 40px;
    padding: 0px 15px;
  }
  .siteHeader__gNav__menu__item--inquiry a:before {
    width: 25px;
    height: 17px;
    background-size: 25px 17px;
    top: 12px;
    padding-right: 25px;
  }
  .siteHeader__gNav__menu__item--inquiry span {
    padding-left: 35px;
  }
  .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: #111111;
    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(#ee6b00), to(#f78e37));
    background: linear-gradient(to right, #ee6b00, #f78e37);
    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 {
    height: 667px;
    background: #fff url(../img/mv_bg_500-667.jpg) no-repeat center center/cover;
  }
  .mainVisual__inner {
    padding: 190px 20px 0;
  }
  .mainVisual__text {
    text-align: center;
  }
  .mainVisual__img {
    text-align: center;
    max-width: 250px;
  }
  .mainVisual__text__title {
    font-size: 2.4rem;
    padding: 0 5px;
    height: 50px;
    line-height: 50px;
  }
  .mainVisual__text__subTitle {
    font-size: 1.4rem;
    padding: 0 5px;
    height: 35px;
    line-height: 35px;
  }
  .mainVisual__img img {
    max-width: 110px;
    margin-right: 20px;
    margin-bottom: 10px;
  }
  .mainVisual__img img:nth-child(2n) {
    margin-right: 0;
  }
  .inquiry .common__inner {
    padding: 60px 20px 30px;
  }
  .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%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .common__col__3 {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .common__headingL {
    font-size: 2.2rem;
  }
  .common__headingM__en {
    font-size: 2.0rem;
    line-height: 30px;
    width: 160px;
    height: 30px;
  }
  .common__headingM {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .common__col__2 .common__btn {
    margin-bottom: 0;
  }
  .common__btn a {
    font-size: 1.6rem;
  }
  .common__img.common__col__2 img,
  .common__img.common__col__3 img {
    margin-bottom: 0;
  }
  .common__img img {
    margin-bottom: 20px;
  }
  .issue .common__col__3 {
    max-width: 100%;
    border-right: none;
    padding-right: 0;
    padding-bottom: 15px;
    margin-right: 0;
    margin-bottom: 40px;
    border-bottom: solid 3px #eaeced;
  }
  .issue .common__col__3:last-child {
    border-bottom: none;
  }
  .issue__content {
    margin-bottom: 30px;
  }
  .issue__content img {
    width: 65px;
    margin-bottom: 0px;
  }
  .issue__content p {
    font-size: 1.6rem;
  }
  .issue__title {
    font-size: 2.0rem;
  }
  .issue__arrow div {
    height: 80px;
  }
  .issue__arrow div svg:first-child {
    height: 80px;
  }
  .issue__arrow div svg:last-child {
    height: 80px;
  }
  .case__point__title {
    font-size: 1.6rem;
    line-height: 25px;
    width: 110px;
    height: 25px;
  }
  .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: 374px) {
  .mainVisual__text__title {
    font-size: 2.0rem;
  }
  .mainVisual__text__subTitle {
    font-size: 1.2rem;
  }
}
