@charset "utf-8";
/* ======================================================
 * bft.css
 * ------------------------------------------------------
 * Common
 * @media print, screen and (min-width: 768px)
 * - Page Component
 * - Clearfix
 * PC Media Queries
 * @media only screen and (max-width: 767px)
 * - Page Component
 * - Clearfix
 * SP Media Queries
 * Print
====================================================== */
/* ------------------------------------------------------
   * Common
  ------------------------------------------------------ */
/* ----- font ----- */
/* Noto Sans */
.bft-hero-layout, .bft-spec-layout, .bft-banner-layout {
  font-family: "Noto Sans", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/* ======================================================
 * PC
====================================================== */
@media print, screen and (min-width: 768px) {
  /* ----- 購入ボタン ----- */
  /* ----- bft-button ----- */
  .bft-heading {
    position: relative;
    padding-right: 100px;
  }
  .heading-bft-button {
    position: absolute;
    display: inline-block;
    width: 88px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .bft-button_link {
    display: inline-block;
    padding: 5px 26px 7px;
    background-color: #fff;
    border: 2px solid #418fde;
    border-radius: 6px;
    color: #418fde !important;
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 1;
    font-family: "Noto Sans JP", "Noto Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .bft-button_link:hover {
    background-color: #daebfc;
  }
  .table-bft-button {
    display: inline-block;
    margin-left: 10px;
    max-width: 250px;
    min-width: 88px;
  }
  .table-bft-button_link {
    display: inline-block;
    padding: 5px 25px 7px;
    background-color: #fff;
    border: 2px solid #418fde;
    border-radius: 6px;
    color: #418fde;
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 1;
    font-family: "Noto Sans JP", "Noto Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .table-bft-button_link:hover {
    opacity: 1;
    background-color: #daebfc;
  }

  /* ------------------------------------------------------
   * Page Component
  ------------------------------------------------------ */

  /* ----- bft-heading2 ----- */
.bft-heading2 {
  margin-top: 30px;
  text-align: center;
  font-family: "Noto Sans JP", "Noto Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.bft-heading2_title {
  display: inline-block;
  font-size: 34px;
  font-weight: bold;
  color: #1c2e67;
  position: relative;
}
.bft-heading2_title::before,
.bft-heading2_title::after {
  position: absolute;
  content: "";
  top: 15px;
  left: -32px;
  width: 2px;
  height: 32px;
  background-color: #1c2e67;
  -webkit-transform: rotate(-25deg);
  transform: rotate(-25deg);
}
.bft-heading2_title::after {
  left: auto;
  right: -31px;
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}

  /* ----- bft-text ----- */
.bft-text {
  margin-top: 14px;
  line-height: 1.9;
  font-size: 18px;
  font-family: "Noto Sans JP", "Noto Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

  /*---bft-column-layout---*/
  .bft-column-layout {
    margin-top: 92px;
  }
  .bft-column_head {
    background-color: #1c2e67;
    text-align: center;
  }
  .bft-column_title {
    font-size: 2.6rem;
    font-weight: bold;
    font-family: "Noto Sans JP";
    color: #fff;
  }
  .bft-column_body {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-top: 30px;
  }
  .bft-column_item {
    width: calc((100% - 40px ) / 2);
  }
  .bft-column_item:nth-child(n+3) {
    margin-top: 48px;
  }
.bft-contents {
  margin-top: 1em;
  padding-left: 10px;
  border-left: 12px solid #1c2e67;
}

  /*---bft-text-lead---*/
  .bft-text-lead {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
  }

  /*---bft-text-v2---*/
  .bft-text-v2 {
    margin: 5px 0 0;
    font-size: 20px;
  }

  /*---bft-list-note---*/
  .bft-list-note > li {
    padding-left: 16px;
    position: relative;
    font-size: 1.6rem;
    color: #555;
  }
  .bft-list-note > li + li {
    margin-top: 0;
  }
  .bft-list_mark {
    position: absolute;
    top: 0;
    left: 0;
  }

  /*---bft-banner-layout---*/
  .bft-banner-layout {
    margin-top: 44px;
  }
  .bft-banner_inner:hover {
    opacity: .7;
  }


  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .clearfix::after {
    display: block;
    clear: both;
    content: "";
  }
}
/* ======================================================
 * PC Media Queries
====================================================== */
@media screen and (min-width: 768px) and (max-width: 1280px) {
}
/***
@media screen and (min-width: 768px) and (max-width: 1080px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (min-width: 1921px) {
}
@media screen and (min-width: 768px) and (max-width: 1920px) {
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
}
***/
/* ======================================================
 * SP
====================================================== */
@media only screen and (max-width: 767px) {
  .bft-heading {
    position: relative;
    padding-right: 80px;
  }

  .bft-hero-layout {
    margin: 0 -15px;
  }

  /* ----- bft-button ----- */
  .heading-bft-button {
    position: absolute;
    display: inline-block;
    width: 70px;
    right: 0;
    top: 0;
  }
  .bft-button {
    margin-top: 17px;
    text-align: center;
  }
  .bft-button_link {
    display: inline-block;
    padding: 2px 19px;
    background-color: #fff;
    border: 2px solid #418fde;
    border-radius: 5px;
    color: #418fde !important;
    font-weight: bold;
    font-size: 1.4rem;
    font-family: "Noto Sans JP", "Noto Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .table-bft-button {
    display: inline-block;
    max-width: 120px;
    min-width: 65px;
    margin-top: 5px;
    margin-left: 10px;
    padding: 0;
  }
  .table-bft-button_link {
    display: inline-block;
    border: 2px solid #418fde;
    border-radius: 5px;
    padding: 3px 15px;
    color: #418fde;
    font-weight: bold;
    font-size: 1.4rem;
    font-family: "Noto Sans JP", "Noto Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }

  /* ----- bft-heading2 ----- */
.bft-heading2 {
  margin-top: 30px;
  text-align: center;
  font-family: "Noto Sans JP", "Noto Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.bft-heading2_title {
  display: inline-block;
  font-size: 23px;
  font-weight: bold;
  color: #1c2e67;
  position: relative;
}
.bft-heading2_title::before,
.bft-heading2_title::after {
  position: absolute;
  content: "";
  top: 5px;
  left: -17px;
  width: 2px;
  height: 25px;
  background-color: #1c2e67;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.bft-heading2_title::after {
  left: auto;
  right: -17px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

  /* ----- bft-text ----- */
.bft-text {
  margin-top: 11px;
  font-size: 14px;
  line-height: 1.6;
  font-family: "Noto Sans JP", "Noto Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

  /*---bft-column-layout---*/
  .bft-column-layout {
    margin-top: 32px;
  }

  .bft-column_head {
    background-color: #1c2e67;
    text-align: center;
    padding: 3px 0;
  }
  .bft-column_title {
    font-size: 1.7rem;
    font-weight: bold;
    font-family: "Noto Sans JP";
    color: #fff;
  }
  .bft-column_body {
    margin-top: 16px;
  }
  .bft-column_item {
    width: 85%;
    margin: 0 auto;
  }
  .bft-column_item:nth-child(n+2) {
    margin-top: 35px;
  }
.bft-contents {
  padding-left: 10px;
  border-left: 12px solid #1c2e67;
  margin-top: 1em;
}

  /*---bft-text-lead---*/
  .bft-text-lead {
    margin: 0;
    font-size: 19px;
    font-weight: bold;
    line-height: 1.5;
  }

  /*---bft-text-v2---*/
  .bft-text-v2 {
    margin: 5px 0 0;
    font-size: 14px;
  }

  /*---bft-list-note---*/
  .bft-list-note > li {
    padding-left: 16px;
    position: relative;
    font-size: 1.4rem;
    color: #555;
  }
  .bft-list-note > li + li {
    margin-top: 0;
  }
  .bft-list_mark {
    position: absolute;
    top: 0;
    left: 0;
  }

  /*---bft-banner-layout---*/
  .bft-banner-layout {
    margin-top: 26px;
  }


  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .clearfix::after {
    display: block;
    clear: both;
    content: "";
  }
}
/* ======================================================
 * SP Media Queries
====================================================== */
/***
@media only screen and (min-width: 320px) and (max-width: 767px) {
}
@media only screen and (max-width: 736px) {
}
@media only screen and (max-width: 667px) {
}
@media only screen and (max-width: 640px) {
}
@media only screen and (max-width: 568px) {
}

@media only screen and (max-width: 375px) {
}
***/
@media only screen and (min-width: 480px) and (max-width: 767px) {}
@media only screen and (max-width: 374px) {}
@media only screen and (max-width: 370px) {}
/***
@media only screen and (max-width: 320px) {
}



/* ======================================================
 * Print
====================================================== */
@media print {}