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

body {
  font-size: 1.8em;
  line-height: 1.6;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  color: #515357;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}

h1 {
  font-size: 4rem;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 3.6rem;
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 2.6rem;
  }
}

h3 {
  font-size: 2.8rem;
}
@media screen and (max-width: 1024px) {
  h3 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 2.6rem;
}
@media screen and (max-width: 1024px) {
  h4 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  h4 {
    font-size: 1.8rem;
  }
}

h5 {
  font-size: 2.2rem;
}
@media screen and (max-width: 1024px) {
  h5 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  h5 {
    font-size: 1.6rem;
  }
}

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

a {
  color: inherit;
  border: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  cursor: pointer;
  opacity: 0.8;
}
a img {
  color: inherit;
  border: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

main p {
  margin-bottom: 0;
}
main p + p {
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  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;
}
p + table, div + table {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  table {
    margin-bottom: 40px;
  }
}
table th, table td {
  border-right: 2px solid #d6d7d7;
  border-bottom: 2px solid #d6d7d7;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  table th, table td {
    padding: 10px;
  }
}
table th:last-child, table td:last-child {
  border-right: none;
}
table th {
  color: #fff;
  font-size: 1.8rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  background: #9fa0a0;
  padding: 10px 25px 6px;
}
@media screen and (max-width: 1024px) {
  table th {
    font-size: 1.5rem;
    padding: 10px 15px 6px;
  }
}
table thead th {
  background: #17375E;
  padding: 15px 25px 15px;
}
table tbody {
  border-top: 2px solid #d6d7d7;
}
table td {
  padding: 15px 25px;
}
.bgGray table td {
  background: #fff;
}
@media screen and (max-width: 1024px) {
  table td {
    font-size: 1.3rem;
    padding: 10px;
  }
}
table ul, table ol {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 1024px) {
  .only__pc {
    display: none; /* PCのみ表示・改行 */
  }
}
@media screen and (max-width: 767px) {
  .only__tb-pc {
    display: none; /* PC・タブレットのみ表示・改行 */
  }
}
@media screen and (min-width: 1025px) {
  .only__sp-tb {
    display: none; /* タブレット・スマホのみ表示・改行 */
  }
}
@media screen and (min-width: 768px) {
  .only__sp {
    display: none; /* スマホのみ表示・改行 */
  }
}
/*================================================
  header
================================================*/
/*　ベース　------------------------- */
.siteHeader {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  -webkit-transition: 0.3s;
  transition: 0.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 0 0 40px;
  height: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .siteHeader__inner {
    padding: 0px 20px;
    height: 70px;
  }
}

/*　ロゴ　------------------------- */
.siteHeader__logo img {
  height: 30px;
  width: 114px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .siteHeader__logo img {
    height: 26px;
    width: 100px;
  }
}
.siteHeader__logo a:hover img {
  opacity: 0.85;
}

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

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

.siteHeader__gNav__menu__item {
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 25px;
}
.siteHeader__gNav__menu__item a {
  text-decoration: none;
}
.siteHeader__gNav__menu__item--inquiry, .siteHeader__gNav__menu__item--top {
  color: #fff;
  margin-right: 0;
}
.siteHeader__gNav__menu__item--inquiry a, .siteHeader__gNav__menu__item--top a {
  display: block;
  background: #f8722e;
  height: 80px;
  line-height: 80px;
  width: 100%;
  min-width: 190px;
  text-align: center;
}
.siteHeader__gNav__menu__item--inquiry span, .siteHeader__gNav__menu__item--top span {
  vertical-align: middle;
}
.siteHeader__gNav__menu__item--inquiry i, .siteHeader__gNav__menu__item--top i {
  font-size: 2rem;
  vertical-align: middle;
  padding-left: 10px;
}
.siteHeader__gNav__menu__item--top a {
  background: #f8a72e;
}

/*　SP用グローバルメニュー　------------------------- */
@media screen and (max-width: 1024px) {
  .siteHeader__gNavSp {
    display: block !important;
    color: #fff;
  }
  /*　ハンバガー　*/
  /*　メニュー　*/
}
.siteHeader__gNavSp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .siteHeader__gNavSp__toggle {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 32px;
    height: 26px;
  }
  .siteHeader__gNavSp__toggle span {
    width: 100%;
    height: 3px;
    display: block;
    background: #515357;
    position: absolute;
    left: 0;
    -webkit-transition: top 0.5s ease, -webkit-transform 0.5s ease-in-out;
    transition: top 0.5s ease, -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, top 0.5s ease;
    transition: transform 0.5s ease-in-out, top 0.5s ease, -webkit-transform 0.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: #17375E;
    padding: 10px;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: auto;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.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;
  }
}
/*================================================
  body
================================================*/
/* ---------------------------------------
  main visual
--------------------------------------- */
.mainVisual {
  width: 100%;
  height: 235px;
  margin: 80px auto 0;
  background: #fff url(../img/main-visual_pc.jpg) no-repeat center right/cover;
}
@media screen and (max-width: 1024px) {
  .mainVisual {
    margin: 70px auto 0;
    background: #fff url(../img/main-visual_pc.jpg) no-repeat 90% center/cover;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual {
    height: 430px;
    background: #fff url(../img/main-visual_sp.jpg) no-repeat center center/cover;
  }
}

.mainVisual__inner {
  width: 100%;
  max-width: 1064px;
  height: inherit;
  margin: 0 auto;
  padding: 45px 0;
}
@media screen and (max-width: 1024px) {
  .mainVisual__inner {
    max-width: 768px;
    padding: 55px 20px;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual__inner {
    width: 100%;
    padding: 25px 0;
  }
}

.mainVisual__text {
  width: 100%;
  color: #fff;
  line-height: 1.2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .mainVisual__text {
    text-align: center;
  }
}

.mainVisual__text__subTitle {
  display: inline-block;
  color: #17375E;
  font-size: 1.7rem;
  font-weight: 900;
  background: #fff;
  padding: 5px 18px;
  margin-bottom: 25px;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 1024px) {
  .mainVisual__text__subTitle {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual__text__subTitle {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}

.mainVisual__text__title {
  font-size: 5.8rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.8));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.8));
}
@media screen and (max-width: 1024px) {
  .mainVisual__text__title {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual__text__title {
    font-size: 4.4rem;
  }
}

.mainVisual__text__catch {
  font-size: 1.65rem;
  -webkit-filter: drop-shadow(0px 0px 4px rgb(0, 0, 0));
          filter: drop-shadow(0px 0px 4px rgb(0, 0, 0));
}
@media screen and (max-width: 1024px) {
  .mainVisual__text__catch {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual__text__catch {
    margin-bottom: 17px;
  }
}

.mainVisual__form {
  width: 30%;
  max-width: 370px;
  margin: 20px 20px 20px 0;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 20px 15px;
}
@media screen and (max-width: 1024px) {
  .mainVisual__form {
    padding: 10px 5px 30px;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual__form {
    display: none;
  }
}

.mainVisual__form__title {
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.4;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .mainVisual__form__title {
    font-size: 2.4rem;
  }
}

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

/* ---------------------------------------
  common module
--------------------------------------- */
/*　コンテナ　------------------------- */
.common__inner {
  width: 1064px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .common__inner {
    width: 768px;
    padding: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  .common__inner {
    width: 100%;
    padding: 30px 20px;
  }
}
.product .common__inner {
  padding: 60px 20px;
}
@media screen and (max-width: 1024px) {
  .product .common__inner {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 767px) {
  .product .common__inner {
    padding: 40px 20px;
  }
}

/*　フレックスボックス　------------------------- */
.common__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .common__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .common__col:last-of-type {
    margin-bottom: 0;
  }
}
.common__col + .common__col {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .common__col + .common__col {
    margin-top: 0;
  }
}

.common__col__2 {
  width: 100%;
  max-width: 48.047%;
  margin-right: 3.906%;
  position: relative;
  min-height: 0%;
}
@media screen and (max-width: 767px) {
  .common__col__2 {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.common__col__2:nth-child(2n) {
  margin-right: 0;
}

.common__col__3 {
  width: 100%;
  max-width: 30.664%;
  margin-right: 3.906%;
  min-height: 0%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .common__col__3 {
    max-width: 100%;
    margin-right: 0;
  }
}
.common__col__3:nth-child(3n) {
  margin-right: 0;
}

/*　フロート　------------------------- */
.common__float {
  width: 100%;
}
.common__float .common__float__item {
  margin-bottom: 40px;
}
.common__float .common__float__item .common__headingS {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.common__float .common__float__item .common__float__img {
  width: 100%;
  max-width: 328px;
  vertical-align: bottom;
  margin: 0 0 20px 40px;
  float: right;
}
@media screen and (max-width: 1024px) {
  .common__float .common__float__item .common__float__img {
    max-width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .common__float .common__float__item .common__float__img {
    max-width: 100%;
    float: none;
    margin: 0 0 20px;
  }
}
.common__float .common__float__item .common__float__img img {
  width: 100%;
}
.common__float .common__float__item:nth-child(2n) .common__float__img {
  margin: 0 40px 20px 0;
  float: left;
}
@media screen and (max-width: 767px) {
  .common__float .common__float__item:nth-child(2n) .common__float__img {
    float: none;
    margin: 0 0 20px;
  }
}

/*　大見出し　------------------------- */
.common__headingL {
  color: #17375E;
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .common__headingL {
    font-size: 3.6rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .common__headingL {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}

.common__headingL__green {
  color: #17375E;
}

.common__headingL__en {
  display: inline-block;
  color: #fff;
  font-size: 2.6rem;
  line-height: 42px;
  height: 42px;
  text-align: center;
  background: #f8722e;
  padding: 0 20px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 1024px) {
  .common__headingL__en {
    font-size: 2rem;
    line-height: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 767px) {
  .common__headingL__en {
    font-size: 1.5rem;
    line-height: 28px;
    height: 28px;
    margin: 0 auto 10px;
  }
}

/*　中見出し　------------------------- */
.common__headingM {
  font-size: 3.8rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
}
.common__headingM--blue {
  color: #6696c4;
}
.common__headingM--purple {
  color: #a6a0c9;
}
@media screen and (max-width: 1024px) {
  .common__headingM {
    font-size: 3rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .common__headingM {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

/*　小見出し　------------------------- */
.common__headingS {
  color: #376092;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  position: relative;
}
table .common__headingS {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  table .common__headingS {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .common__headingS {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .common__headingS {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
}
.common__headingS a {
  color: #2653e0;
}
.common__headingS__number {
  display: inline-block;
  color: #fff;
  font-size: 1.8rem;
  background-color: #17375E;
  height: 28px;
  width: 28px;
  line-height: 28px !important;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .common__headingS__number {
    font-size: 1.6rem;
    height: 23px;
    width: 23px;
    line-height: 23px !important;
  }
}
@media screen and (max-width: 767px) {
  .common__headingS__number {
    font-size: 1.3rem;
    height: 20px;
    width: 20px;
    line-height: 20px !important;
    margin-right: 5px;
  }
}
.common__headingS__caution {
  font-size: 1.8rem;
  margin-left: 15px;
}
@media screen and (max-width: 1024px) {
  .common__headingS__caution {
    font-size: 1.6rem;
  }
}

/*　最小見出し　------------------------- */
.common__headingXS {
  color: #E46C0A;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  border-bottom: 2px solid #d6d7d7;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .common__headingXS {
    font-size: 1.6rem;
    padding-bottom: 15px;
  }
}
.common__headingXS i {
  background-image: url(../img/icon_check.svg);
  background-repeat: no-repeat;
  background-position: 0 60%;
  background-size: 2rem;
  padding-right: 30px;
}
@media screen and (max-width: 1024px) {
  .common__headingXS i {
    padding-right: 25px;
  }
}

/*　リンクボタン　------------------------- */
.common__btnL {
  text-align: center;
  padding: 2px;
}
.common__btnL a {
  display: inline-block;
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  width: 100%;
  max-width: 530px;
  padding: 22px 30px 21px;
  background: #f8722e;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .common__btnL a {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .common__btnL a {
    font-size: 1.8rem;
  }
}
.common__btnL i {
  padding-left: 10px;
}

.common__btnS {
  text-align: center;
}
.common__btnS a {
  text-align: center;
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  width: 100%;
  max-width: 236px;
  padding: 5px 10px;
  background: #b8193f;
  border-radius: 19px;
  text-decoration: none;
}
.common__btnS a span {
  vertical-align: middle;
}
.common__btnS a i {
  font-size: 1.2em;
  padding-left: 10px;
  vertical-align: middle;
}
.common__btnS--white a {
  background: #fff;
}
.common__btnS--white a span, .common__btnS--white a i {
  color: #17375E;
}
.product .common__btnS {
  text-align: left;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .product .common__btnS {
    text-align: center;
  }
}

/*　注意書き　------------------------- */
.common__caution {
  color: rgba(81, 83, 87, 0.7);
  font-size: 85%;
  display: block;
}

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

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

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

@media all and (-ms-high-contrast: none) {
  .fontNoto {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  }
}
/*　画像　------------------------- */
.common__img {
  width: 100%;
  position: relative;
}
.common__img img {
  width: 100%;
}
p + .common__img {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  p + .common__img {
    margin-top: 30px;
  }
}
.common__img--resolve img {
  max-height: 270px;
}
.common__img--functions img {
  max-width: 190px;
  max-height: 190px;
}
.common__img i {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #515357 transparent;
  opacity: 0.8;
}
.common__img i::before {
  color: #fff;
  position: absolute;
  top: 27px;
  right: 5px;
  width: 16px;
  height: 16px;
  font-size: 1.6rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "+";
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

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

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

/*　枠　------------------------- */
.common__frame {
  background: #FDEADA;
  border-radius: 5px;
  padding: 20px 30px;
}
.common__frame--blue {
  background: #DCE6F2;
}
.common__frame--purple {
  background: #E1DFED;
}
.common__frame.common__col__3 {
  padding: 20px 20px;
}
@media screen and (max-width: 1024px) {
  .common__frame.common__col__3 {
    padding: 20px 15px;
  }
}
.common__frame .common__col__3 {
  font-size: 1.7rem;
  max-width: 32.333% !important;
  margin-right: 1% !important;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1024px) {
  .common__frame .common__col__3 {
    max-width: 100% !important;
  }
}
.bgGray .common__frame {
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .common__frame {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 767px) {
  .common__frame {
    padding: 25px;
  }
}

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

.bgOrenge {
  background: #fffbf6;
}

/*　角丸 ------------------------- */
.radius {
  border-radius: 10px;
}

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

@media screen and (max-width: 1024px) {
  .fadeinUp {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
  }
}
/*　モーダルウィンドウ　------------------------- */
.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.75);
}

.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;
  border-radius: 4px;
  background: #17375E;
}
.modalClose:hover {
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .modalContent iframe, .modalContent video {
    width: 400px;
    height: 270px;
  }
}
/* ---------------------------------------
  about
---------------------------------------　*/
.about {
  width: 100%;
}

.about__wrap {
  background: #ECF1F8;
  padding: 30px 40px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .about__wrap {
    padding: 15px;
  }
}

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

.feature__table {
  position: relative;
}
.feature__table::before {
  content: "";
  position: absolute;
  background-image: url("../img/diagnose_02.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 200px;
  height: 200px;
  bottom: 0;
  right: -50px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .feature__table::before {
    width: 100px;
    height: 100px;
    right: -20px;
  }
}
@media screen and (max-width: 767px) {
  .feature__table::before {
    background-image: none;
  }
}

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

.platform__list {
  width: 100%;
  text-align: center;
  padding-left: 0;
}

.platform__list__item {
  background: #f3fafb;
  border-bottom: 2px solid #d6d7d7;
  list-style-type: none;
  margin-bottom: 40px;
}

.platform__list__item__title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  background: #6696c4;
  padding: 5px 0;
  border-radius: 5px 5px 0 0;
}
.platform__list__item__title--purple {
  background: #a6a0c9;
}
@media screen and (max-width: 1024px) {
  .platform__list__item__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .platform__list__item__title {
    font-size: 1.6rem;
  }
}

.platform__list__item__lead {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .platform__list__item__lead {
    font-size: 1.4rem;
  }
}

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

.detail table th {
  background: #17375E;
}

/* ---------------------------------------
  inquiry
--------------------------------------- */
.inquiry {
  text-align: left;
  width: 100%;
  background: url(../img/inquiry_bg.jpg), #17375E;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .inquiry {
    background-position: 90% center;
  }
}
@media screen and (max-width: 767px) {
  .inquiry {
    background-position: 100% center;
  }
}

.inquiry__text {
  color: #fff;
  font-size: 2.3rem;
  -webkit-filter: drop-shadow(0px 0px 4px rgb(0, 0, 0));
          filter: drop-shadow(0px 0px 4px rgb(0, 0, 0));
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .inquiry__text {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .inquiry__text {
    text-align: center;
  }
}

.inquiry__btn {
  width: 100%;
  max-width: 530px;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 1024px) {
  .inquiry__btn {
    max-width: 470px;
  }
}
@media screen and (max-width: 767px) {
  .inquiry__btn {
    max-width: 100%;
  }
}

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

.siteFooter__inner {
  width: 100%;
  max-width: 1064px;
  margin: 0 auto;
  padding: 40px 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .siteFooter__inner {
    text-align: center;
    padding: 25px 20px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .siteFooter__inner {
    padding: 15px 20px 10px;
  }
}

.siteFooter__logo img {
  width: 114px;
  height: 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .siteFooter__logo img {
    width: 94px;
    height: 25px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .siteFooter__logo img {
    width: 66px;
    height: 18px;
  }
}
.siteFooter__logo a:hover img {
  opacity: 0.8;
}

.siteFooter__copyright {
  font-size: 1.4rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .siteFooter__copyright {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .siteFooter__copyright {
    font-size: 1rem;
  }
}

.siteFooter__sns a {
  margin-right: 10px;
}
.siteFooter__sns a i {
  font-size: 3rem;
}
@media screen and (max-width: 1024px) {
  .siteFooter__sns a i {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .siteFooter__sns a i {
    font-size: 1.8rem;
  }
}
.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: #f8a72e;
  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);
}
@media screen and (max-width: 767px) {
  .pageTop a {
    width: 50px;
    height: 50px;
  }
}
.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);
}