@charset "UTF-8";
/* ***********************************
 *    Ire's CSS Reset & Base
 * *********************************** */
/* Reset margin, padding, border */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Typography */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.4;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  word-wrap: break-word;
}
*:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

a:visited {
  color: inherit;
}

/* Layout */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

/* Elements */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol, ul {
  list-style: none;
}

img, video {
  max-width: 100%;
}

img {
  border-style: none;
}

blockquote {
  quotes: none;
}
blockquote:after, blockquote:before {
  content: "";
  content: none;
}

q {
  quotes: none;
}
q:after, q:before {
  content: "";
  content: none;
}

/* Attributes & states */
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Utility classes */
.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  left: -9999px;
  top: -9999px;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

a {
  color: #37485f;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover {
  color: #37485f;
  text-decoration: underline;
}

html {
  font-size: 62.5%;
}

body {
  color: #532F2F;
  font-family: "Noto Sans CJK JP", "游ゴシック体", "Yu Gothic", "YuGothic", sans-serif, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  position: relative;
}

h2, h3, h4 {
  position: relative;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc_lap {
  display: none;
}
@media (min-width: 64.063em) {
  .pc_lap {
    display: block;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

a {
  color: #37485f;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover {
  color: #37485f;
  text-decoration: underline;
}

.bl_nav_sp {
  position: fixed;
  right: -250px;
  /*右側に隠しておきます*/
  top: 0;
  width: 250px;
  height: 100vh;
  padding-top: 40px;
  background-color: #01568b8f;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 901;
  overflow-y: auto;
  text-align: center;
}
.bl_nav_sp li {
  padding: 1rem;
}
.bl_nav_sp li a {
  color: #fff;
}
.bl_nav_sp li a:link {
  display: block;
  color: #fff;
  padding: 2rem 0 1rem;
  width: 100%;
  margin: 0 auto;
}
.bl_nav_sp li a.bl_btn__cv {
  padding: 10px;
}

.bl_btn_toggle {
  position: absolute;
  right: 0;
  top: -10px;
  width: 55px;
  height: 55px;
  cursor: pointer;
  z-index: 903;
}

.hamburger_line {
  position: absolute;
  left: 8px;
  width: 25px;
  height: 1px;
  background-color: #111;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.hamburger_line_1 {
  top: 20px;
}

.hamburger_line_2 {
  top: 26px;
}

.hamburger_line_3 {
  top: 32px;
}

/* End ハンバーガーボタン(三本線の実装) */
/*ハンバーガーメニュをクリックした後に現れる半透明の背景*/
.black-bg {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 900;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  /* 非表示にしておきます */
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  cursor: pointer;
}

/* Start ハンバーガーボタンをクリックした際の動き */
/* ナビゲーションが現れる */
.nav-open .bl_nav_sp {
  right: 0;
}

.nav-open .black-bg {
  opacity: 0.8;
  visibility: visible;
}

.nav-open .hamburger_line {
  background: #fff;
}

.nav-open .hamburger_line_1 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 25px;
}

.nav-open .hamburger_line_2 {
  width: 0;
  left: 50%;
}

.nav-open .hamburger_line_3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 25px;
}

body {
  color: #37485F;
}

.ly_header {
  padding-top: 10px;
  -webkit-transition: all 0.65s;
  transition: all 0.65s;
}
.ly_header .bl_logo {
  max-width: 120px;
}
.ly_header.header_fxd {
  background-color: rgba(255, 255, 255, 0.8);
  padding-top: 10px;
  position: fixed;
  width: 100%;
  z-index: 899;
  -webkit-transition: all 0.65s;
  transition: all 0.65s;
}
.ly_header.header_fxd .bl_logo {
  max-width: 140px;
}
@media (min-width: 40.063em) {
  .ly_header {
    padding-top: 30px;
  }
  .ly_header .bl_logo {
    max-width: 170px;
  }
}
@media (min-width: 64.063em) {
  .ly_header {
    padding: 30px 20px 0;
  }
}

/*------------------------------
 content: Main visual 
------------------------------*/
.bl_mvWrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.bl_mvWrap:before {
  content: "";
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, transparent), color-stop(0%, #16F4E2), to(#80E7FF));
  background: linear-gradient(to top left, transparent 50%, #16F4E2 0%, #80E7FF 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  max-width: 1366px;
  max-height: 688px;
}
@media (min-width: 40.063em) {
  .bl_mvWrap {
    height: 688px;
  }
}

.bl_mvTtl {
  max-width: 663px;
  padding-top: 40px;
  position: relative;
  z-index: 10;
}
@media (min-width: 40.063em) {
  .bl_mvTtl {
    padding-top: 120px;
  }
}

.bl_mvTxt {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0;
  position: relative;
  z-index: 10;
}
.bl_mvTxt span {
  display: block;
  font-size: 1.4rem;
}
@media (min-width: 40.063em) {
  .bl_mvTxt {
    font-size: 2.8rem;
  }
  .bl_mvTxt span {
    display: inline;
    font-size: 2.8rem;
  }
}

.bl_mvImg {
  -webkit-box-shadow: 10px 13px 16px -6px rgba(0, 0, 0, 0.6);
          box-shadow: 10px 13px 16px -6px rgba(0, 0, 0, 0.6);
  line-height: 0;
  position: absolute;
  right: 0;
  max-width: 280px;
  top: 0;
}
@media (min-width: 40.063em) {
  .bl_mvImg {
    max-width: 580px;
    top: 0;
  }
}
@media (min-width: 64.063em) {
  .bl_mvImg {
    margin: 0;
    max-width: 741px;
    top: 0;
  }
}

/*------------------------------
 content: recommend
------------------------------*/
.bl_recommend {
  position: relative;
  padding-bottom: 30px;
}
.bl_recommend:before {
  bottom: 0;
  content: "";
  background: #0079C4;
  position: absolute;
  width: 100%;
  height: 86.5%;
}

.bl_recommend_img {
  left: 15px;
  top: 0;
  max-width: 240px;
  width: 24%;
}
@media (min-width: 40.063em) {
  .bl_recommend_img {
    position: absolute;
    bottom: -10px;
    width: 23%;
  }
}

.bl_recommend_cont {
  width: 75%;
}
@media (min-width: 40.063em) {
  .bl_recommend_cont {
    width: 75%;
    margin-left: 25%;
  }
}

.bl_recommend_ttl {
  padding: 0 5px 0 10px;
}

.bl_recommend_subTtl {
  color: #fff;
  padding: 40px 0 0 5px;
  font-size: 2rem;
}
.bl_recommend_subTtl span {
  display: block;
  font-size: 1.6rem;
}
.bl_recommend_subTtl strong {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (min-width: 40.063em) {
  .bl_recommend_subTtl {
    padding: 0 0 40px 5px;
    text-align: center;
  }
  .bl_recommend_subTtl span {
    font-size: 18px;
  }
  .bl_recommend_subTtl strong {
    font-size: 20px;
  }
}
@media (min-width: 64.063em) {
  .bl_recommend_subTtl span {
    font-size: 20px;
  }
  .bl_recommend_subTtl strong {
    font-size: 24px;
  }
}

.bl_recommend_list {
  padding-top: 20px;
}
@media (min-width: 40.063em) {
  .bl_recommend_list {
    padding-top: 0;
  }
}

@media (min-width: 40.063em) {
  .sp .bl_recommend_list {
    display: none;
  }
}

.bl_recommend_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bl_recommend_item {
  margin: 0 auto 30px;
  padding: 20px;
  position: relative;
  width: 90%;
}
@media (min-width: 40.063em) {
  .bl_recommend_item {
    margin: 0 0 0 30px;
    width: calc(50% - 30px);
  }
}
.bl_recommend_item.__recomeTw:before {
  content: "";
  background: url(../../assets/img/icon_tw.svg) no-repeat center top;
  background-size: 55px;
  position: absolute;
  left: -15px;
  top: -15px;
  width: 55px;
  height: 55px;
}
.bl_recommend_item.__recomeTw .bl_recommend_itemTtl:before {
  background: #2d2d2e;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2em;
}
.bl_recommend_item.__recomeLi:before {
  content: "";
  background: url(../../assets/img/icon_line.svg) no-repeat left top;
  background-size: 40px;
  height: 40px;
  left: 15px;
  position: absolute;
  top: 20px;
  width: 40px;
}
.bl_recommend_item.__recomeLi .bl_recommend_itemTtl {
  padding-left: 20px;
}

.bl_recommend_itemTtl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 10px 0 5px;
  position: relative;
  text-align: center;
}

/*------------------------------
 content: charm 
------------------------------*/
.bl_charm_card {
  margin-bottom: 30px;
  padding: 0 10px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 641px) {
  .bl_charm_card {
    margin-bottom: 90px;
    padding: 0;
    width: 48%;
  }
}
@media screen and (min-width: 768px) {
  .bl_charm_card {
    margin-bottom: 90px;
    padding: 0;
    width: 32%;
  }
}

.bl_charm_cardTtl {
  color: #1279C4;
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 20px;
}

.bl_charm_cardImg {
  border: 6px solid #fff;
  line-height: 0;
  max-width: 300px;
  margin: 0 auto;
  -webkit-box-shadow: 5px 6px 10px -6px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 6px 10px -6px rgba(0, 0, 0, 0.5);
}

.bl_charm_cardTxt {
  line-height: 1.7em;
  padding-top: 20px;
  text-align: left;
}

/*------------------------------
 content: dashboard 
------------------------------*/
.bl_dboard {
  background: url(../../assets/img/bg_dboard.jpg) no-repeat center top/cover;
  padding: 40px 20px;
}
@media (min-width: 40.063em) {
  .bl_dboard {
    padding: 40px 0 40px 20px;
  }
}
@media (min-width: 64.063em) {
  .bl_dboard {
    height: 757px;
    padding: 78px 0;
  }
}

.bl_dboardBg {
  /*  background: url(../../assets/img/ph_dboard.png) no-repeat right bottom / 53.88%;
    min-height: 563px;
  */
  margin: 0 auto;
  background: none;
  /*  @include breakpoint(mobileonly) {
      background: none;
    }*/
}
@media screen and (min-width: 768px) {
  .bl_dboardBg {
    background: url(../../assets/img/ph_dboard.png) no-repeat right bottom/53.88%;
  }
}
@media (min-width: 85.375em) {
  .bl_dboardBg {
    background: url(../../assets/img/ph_dboard_l.png) no-repeat right 80px/53.88%;
    min-height: 563px;
    max-width: 1366px;
  }
}

.bl_dboardInner {
  max-width: 1000px;
  margin: 0 auto;
}

.bl_dboardTtl {
  color: #fff;
}
.bl_dboardTtl p {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 10px 0;
}
.bl_dboardTtl h3 {
  font-size: 3rem;
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(0, #247BFC));
  background: linear-gradient(transparent 0, #247BFC 0);
  -webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.3);
  line-height: 1.4em;
}
@media (min-width: 40.063em) {
  .bl_dboardTtl p {
    font-size: 2.4rem;
    padding: 10px;
  }
  .bl_dboardTtl h3 {
    font-size: 5.6rem;
  }
}

.bl_dboardImg {
  margin-top: 30px;
}

.bl_dboardList {
  font-weight: bold;
  margin: 25px auto 40px;
  max-width: 96%;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .bl_dboardList {
    font-size: 2rem;
    margin: 25px 0 60px;
    max-width: 50%;
  }
}

.bl_dboardList_item {
  margin-bottom: 15px;
}

/*------------------------------
 content: Line 
------------------------------*/
.bl_line {
  padding: 40px 0;
}

.el_lv3Heading.bl_lineTtl {
  color: #1AB53B;
  margin-bottom: 50px;
  padding-top: 80px;
}

.bl_lineInner {
  background: #EDF4EF;
  border: 20px solid #1AB53B;
  text-align: center;
}
.bl_lineInner figure {
  line-height: 0;
  max-width: 65%;
  margin: 0 auto 40px;
}
@media (min-width: 40.063em) {
  .bl_lineInner figure {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (min-width: 40.063em) {
  .bl_lineInner_l {
    bottom: 0;
    position: absolute;
    left: 10px;
    width: 30%;
  }
  .bl_lineInner_l .bl_lineStep_txt {
    font-size: 1.6rem;
    min-height: auto;
  }
}

@media (min-width: 40.063em) {
  .bl_lineInner_r {
    margin-left: 31%;
    padding: 0 20px 0 0;
  }
}

.bl_lineStep {
  max-width: 973px;
  margin: 0 auto;
}

.bl_lineStep_ttl {
  color: #1AB53B;
  font-size: 2.8rem;
}

.bl_lineStep_txt {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 15px 20px;
}
@media (min-width: 40.063em) {
  .bl_lineStep_txt {
    font-size: 1.4rem;
    min-height: 7.8em;
    padding: 15px 0;
  }
}
@media (min-width: 64.063em) {
  .bl_lineStep_txt {
    padding: 15px 20px;
  }
}

@media (min-width: 40.063em) {
  .bl_lineStep_item {
    width: calc(33.33% - 10px);
  }
}
@media (min-width: 64.063em) {
  .bl_lineStep_item {
    width: calc(33.33% - 10px);
  }
}

/*------------------------------
 content: select 
------------------------------*/
.bl_select {
  position: relative;
}
.bl_select:after {
  content: "";
  position: absolute;
  background: #E5FAFF;
  padding: 0 0 80px;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -999;
}

.bl_select_card {
  margin: 80px 20px 0;
  position: relative;
  padding: 40px 15px;
}
@media (min-width: 40.063em) {
  .bl_select_card {
    padding: 40px 25px;
    width: calc(50% - 20px);
  }
}

.bl_selectList_ttl {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  padding: 20px 0 10px;
}

.bl_selectList_txt {
  font-size: 1.4rem;
}

/* content: plan */
.bl_plan {
  padding-bottom: 80px;
}

.bl_price_list {
  /* width: 160%; */
  overflow: scroll;
}

.bl_price_listInner {
  width: 160%;
}
@media (min-width: 40.063em) {
  .bl_price_listInner {
    width: 100%;
  }
}

.bl_select_reason {
  background: #1279C4;
  padding: 40px 0 80px;
}
@media (min-width: 40.063em) {
  .bl_select_reason {
    padding: 90px 0 80px;
  }
}

.bl_select_reason_item {
  margin: 50px 15px 0;
  line-height: 1.8em;
  position: relative;
  padding: 40px 20px 20px;
}
.bl_select_reason_item:before {
  background: url(../../assets/img/bg_list_head.png) no-repeat center top/100px;
  content: "";
  height: 63px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: -40px;
  width: 100px;
}
@media (min-width: 40.063em) {
  .bl_select_reason_item {
    margin: 0 15px;
    width: calc(33.33% - 30px);
  }
}

.bl_select_headWrap {
  margin-top: -80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bl_select_card_head {
  margin-left: 33%;
  padding-left: 20px;
  width: 67%;
}
.bl_select_card_head h4 {
  font-size: 1.8rem;
  font-weight: bold;
}
.bl_select_card_head p {
  font-size: 1.4rem;
  font-weight: bold;
  padding-top: 20px;
}
.bl_select_card_head p span {
  display: block;
  font-size: 1.2rem;
}
@media (min-width: 64.063em) {
  .bl_select_card_head {
    padding-left: 5px;
  }
}

.bl_select_card_img {
  width: 32%;
  max-width: 120px;
  position: absolute;
  left: 20px;
  top: -40px;
}
/* content: QA */
.bl_qa {
  background: #E5FAFF;
  padding: 0 0 80px;
}

@media (min-width: 64.063em) {
  .bl_qa_list {
    padding: 0 20px;
  }
}

.bl_qa_item {
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 5px 6px 10px -6px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 6px 10px -6px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  margin-bottom: 20px;
  padding: 20px 30px 20px 20px;
}
@media (min-width: 40.063em) {
  .bl_qa_item {
    padding: 20px 30px;
  }
}

.js_tgl_q {
  font-size: 1.6rem;
  position: relative;
  /*
    &:before,
    &:after {
      content: "";
      position: absolute;
      right: 20px;
      top: 0;
      bottom: 0;
      margin: auto 0;
      background-color: #3abec1;
      width: 20px;
      height: 4px;
      transition: all 0.3s;
    }
    &:after {
      transform: rotate(90deg);
    }
  */
}
@media (min-width: 40.063em) {
  .js_tgl_q {
    font-size: 1.8rem;
  }
}
.js_tgl_q:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #2d2d2e;
  border-right: solid 2px #2d2d2e;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: -10px;
  margin-top: -4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 40.063em) {
  .js_tgl_q:before {
    right: 20px;
  }
}

.js-accordion-title.is-active::before {
  position: absolute;
  margin-top: -4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(136deg);
  transform: rotate(136deg);
}

/*
.js-accordion-title::after {
  transform: rotate(90deg);
  transition-duration: .3s;
}

.js-accordion-title.is-active::before {
  opacity: 0;
}

.js-accordion-title.is-active::after {
  transform: rotate(0);
}
*/
.js_tgl_a {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  font-size: 1.5rem;
  height: 0;
  padding: 0 1.5em;
  overflow: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.js_tgl_a.is-open {
  background: #f1f6f9;
  margin: 20px 0 0;
  padding: 10px;
  line-height: 1.6em;
  height: auto;
  opacity: 1;
}

/*------------------------------
content: Get start
------------------------------*/
.bl_start {
  background: #B1F3FF;
  padding: 50px 0 0;
}

.bl_startInner {
  background: none;
}
@media screen and (min-width: 768px) {
  .bl_startInner {
    display: block;
    background: url(../../assets/img/ph_start.png) no-repeat right bottom/400px;
  }
}
@media (min-width: 64.063em) {
  .bl_startInner {
    display: block;
    background: url(../../assets/img/ph_start.png) no-repeat right bottom/500px;
  }
}

.bl_startTtl {
  font-size: 2.8rem;
  padding-bottom: 40px;
}
.bl_startTtl strong {
  font-size: 4.8rem;
}

.bl_startBtn {
  margin: 1em auto;
  max-width: 98%;
  padding: 40px 0 30px;
  z-index: 898;
  position: relative;
  text-align: center;
}
.bl_startBtn p {
  padding-top: 10px;
}
@media (min-width: 40.063em) {
  .bl_startBtn {
    margin: 30px auto;
    max-width: 100%;
  }
}
@media (min-width: 64.063em) {
  .bl_startBtn {
    margin: 0;
    max-width: 100%;
    text-align: left;
  }
}

.bl_start .bl_startBtn {
  margin: 1em auto;
}
@media (min-width: 40.063em) {
  .bl_start .bl_startBtn {
    margin: 0;
    max-width: 100%;
    text-align: left;
  }
}
@media (min-width: 64.063em) {
  .bl_start .bl_startBtn {
    margin: 0;
    max-width: 100%;
  }
}

/*------------------------------
contact Area
------------------------------*/
.bl_contact {
  border: 1px solid #eee;
  padding: 30px 20px;
}
@media (min-width: 40.063em) {
  .bl_contact {
    max-width: 80%;
    margin: 0 auto;
    padding: 30px 40px;
  }
}

/*--- form */
.ly_form {
  padding: 0 0 60px;
}

.bl_form__bg {
  background: #f7f7f7;
  padding: 10px;
  margin: 5px 0 0;
  border-radius: 4px;
}

.bl_form__inner {
  max-width: 326px;
  margin: 0 auto;
}
@media (min-width: 64.063em) {
  .bl_form__inner {
    max-width: 416px;
    padding: 24px 0 55px 90px;
  }
}

.bl_form__inner input, .bl_form__inner textarea, .bl_form__inner select {
  border: 2px solid #532F2F;
  min-height: 40px;
  width: 100%;
}

.bl_form__kiyaku {
  background: rgba(255, 255, 255, 0.8);
  margin-top: 36px;
  padding: 1em;
}

.bl_form__kiyakuList {
  font-size: 1.2rem;
  height: 150px;
  overflow: scroll;
}

.bl_form__name {
  font-size: 1.5rem;
  padding: 37px 0 5px;
  position: relative;
}

.bl_contact input[type=text i],
.bl_contact input[type=email i],
.bl_contact textarea {
  padding: 10px;
  width: 100%;
}
.bl_contact input[type=text i].bl_input_short {
  max-width: 100px;
}
.bl_contact input[type=text i].bl_input_listBox {
  max-width: 120px;
  margin-left: 10px;
  padding: 5px;
}
.bl_contact select {
  max-width: 100px;
  padding: 10px;
}

.bl_form__jobs li {
  font-size: 1.4rem;
  padding-top: 5px;
}

.bl_form__inner input.doui {
  min-height: auto;
  width: auto;
}

.bl_form_doui {
  font-size: 1.2rem;
  display: block;
  text-align: center;
}

.bl_form__inner input.goback {
  width: 30%;
  margin: 0 auto;
  display: block;
  color: #999;
  border: 1px solid #999;
  border-radius: 4px;
  margin-top: 10px;
}

.el_label {
  color: #ff0000;
  display: inline-block;
  font-size: 1.1rem;
  padding: 2px 2em;
}

input.bl_form_btn {
  background: #094EE8;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
  font-size: 1.5rem;
  margin: 10px auto;
  padding: 10px 30px;
  display: block;
  border: none;
  -webkit-transition: all 600ms;
  transition: all 600ms;
  /*    border: none;
      display: block;
      line-height: 1em;
      margin: 20px auto 50px;
      max-width: 188.32px;
      padding: 20px 25px;*/
}
input.bl_form_btn:hover {
  background: #2e0896;
  -webkit-transition: all 600ms;
  transition: all 600ms;
}

.bl_thanks_ttl {
  font-size: 1.8rem;
  padding-bottom: 10px;
  text-align: center;
}

.bl_thanks_txt {
  background: #f4f4f4;
  font-size: 1.4rem;
  line-height: 1.6em;
  padding: 20px;
  text-align: center;
}

.bl_kiyaku_headTtl {
  display: block;
  font-weight: bold;
  padding-bottom: 10px;
}
@media (min-width: 64.063em) {
  .bl_kiyaku_headTtl {
    font-size: 1.8rem;
  }
}

.bl_kiyaku_headTxt {
  font-size: 1.5rem;
  line-height: 1.6em;
  padding: 1em 10px;
}

.bl_kiyakuInner {
  border: 1px solid #eee;
  margin: 0 auto 80px;
  padding: 30px 20px 20px;
}
@media (min-width: 64.063em) {
  .bl_kiyakuInner {
    padding: 40px;
  }
}
.bl_kiyakuInner ul li {
  line-height: 1.6em;
  padding-bottom: 10px;
}
.bl_kiyakuInner ul li li {
  margin-left: 1em;
  text-indent: -1em;
}

.bl_kiyakuInner_sublist {
  font-size: 1.4rem;
  padding: 0 1em 10px;
}
.bl_kiyakuInner_sublist ul {
  padding: 0 0 10px;
}
.bl_kiyakuInner_sublist ul li {
  font-size: 1.2;
  line-height: 1.4em;
  padding: 0 0 5px;
}

.bl_kiyakuInner_ttl {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0.5em 0;
}

/*//幅768px以上に適用されるCSS（タブレットサイズ以上）*/
@media screen and (min-width: 768px) {
  .flexbox .main .item {
    width: calc(33.33% - 20px);
  }
}
/*//幅1280px以上に適用されるCSS（PCサイズ以上）*/
@media screen and (min-width: 1280px) {
  /* twoculmn */
  .flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .flexbox .main {
    width: 66.5%;
  }

  .flexbox .side {
    width: 29.17%;
  }
}
/* ANIMATION */
.effect-fade {
  opacity: 0;
  -webkit-transform: translate(0, 45px);
          transform: translate(0, 45px);
  -webkit-transition: all 600ms;
  transition: all 600ms;
}
.effect-fade.effect-scroll {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.bl_cv_btn {
  -webkit-transform: translate(0, 45px);
          transform: translate(0, 45px);
  -webkit-transition: all 600ms;
  transition: all 600ms;
  bottom: 30px;
  right: 0;
  opacity: 1;
  position: fixed;
  width: 100%;
  z-index: 898;
  /*  &.bl_fxd {
      opacity: 1;
    }*/
}
.bl_cv_btn a {
  -webkit-animation: anime1 1s ease 0s infinite alternate;
          animation: anime1 1s ease 0s infinite alternate;
  display: inline-block;
  margin: 0 auto;
  -webkit-transform-origin: center;
          transform-origin: center;
  text-decoration: none;
  width: clamp( 269px, 5%, 259px );
  bottom: 0;
  /*        bottom: 30vw;*/
  position: absolute;
  right: 2vw;
  z-index: 898;
}
@media screen and (min-width: 768px) {
  .bl_cv_btn a {
    width: clamp( 279px, 5%, 279px );
    bottom: 0;
    /*            bottom: -4vw;*/
  }
}
.bl_cv_btn a img {
  width: 100%;
}

@-webkit-keyframes anime1 {
  from {
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes anime1 {
  from {
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.bl_cv_s_btn a {
  -webkit-animation: anime1 0.5s ease 0s infinite alternate;
          animation: anime1 0.5s ease 0s infinite alternate;
  display: inline-block;
  margin: 0 auto;
  -webkit-transform-origin: center;
          transform-origin: center;
  text-decoration: none;
  width: clamp( 120px, 15%, 200px );
  top: -15vw;
  position: absolute;
  right: 2vw;
  z-index: 898;
}
@media screen and (min-width: 768px) {
  .bl_cv_s_btn a {
    width: clamp( 140px, 15%, 200px );
    top: -80px;
  }
}
@media screen and (min-width: 1280px) {
  .bl_cv_s_btn a {
    width: clamp( 140px, 15%, 200px );
    top: -140px;
  }
}
.bl_cv_s_btn a img {
  width: 100%;
}

@keyframes anime1 {
  from {
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
/*------------------------------
footer Area
------------------------------*/
.bl_footer_logo {
  max-width: 50%;
  margin: 0 auto;
  padding: 30px 0;
}
@media (min-width: 40.063em) {
  .bl_footer_logo {
    margin-left: 10px;
    max-width: 180px;
    padding: 0 0 20px;
  }
}

.bl_footer_list {
  font-size: 1.2rem;
  padding: 10px 0;
  text-align: center;
}
.bl_footer_list li {
  display: inline;
  margin-left: 10px;
}
@media (min-width: 40.063em) {
  .bl_footer_list {
    display: inline;
    font-size: 1.4rem;
    text-align: right;
  }
}

.ly_footer {
  padding-top: 30px;
}
.ly_footer small {
  background: #37485F;
  color: #fff;
  display: block;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1em;
  padding: 16px 0;
  text-align: center;
}

/* Layout */
.bl_grad {
  position: relative;
  width: 100%;
}
.bl_grad:before {
  content: "";
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, transparent), color-stop(0%, #16F4E2), to(#80E7FF));
  background: linear-gradient(to top right, transparent 50%, #16F4E2 0%, #80E7FF 100%);
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100vh;
  max-width: 720px;
  max-height: 362px;
  z-index: -1;
}

/* button */
a.bl_btn__cv {
  background: #FFB100;
  border: 2px solid #fff;
  border-radius: 4px;
  -webkit-box-shadow: 5px 6px 10px -6px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 6px 10px -6px rgba(0, 0, 0, 0.5);
  color: #fff;
  line-height: 1em;
  margin-left: 40px;
  padding: 12px 25px;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
}
a.bl_btn__cv:hover {
  background: #FF6C00;
  text-decoration: none;
}

.bl_btn {
  display: inline-block;
  -webkit-box-shadow: 5px 6px 10px -6px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 6px 10px -6px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.bl_btn:hover {
  text-decoration: none;
}

a.bl_btn_plan {
  background: #FF407B;
  border-radius: 80px;
  border: 2px solid #FFA5D1;
  color: #fff;
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0;
  padding: 10px 40px;
  margin: 0 auto;
  max-width: 80%;
}
a.bl_btn_plan:hover {
  background: #E60047;
}
@media screen and (min-width: 768px) {
  a.bl_btn_plan {
    display: inline-block;
    font-size: 2.4rem;
    max-width: 100%;
    padding: 20px 70px;
  }
}

a.bl_btn_cv__footer {
  background: #094EE8;
  border-radius: 6px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 15px 20px;
}
a.bl_btn_cv__footer:hover {
  background: #2e0896;
}
@media (min-width: 40.063em) {
  a.bl_btn_cv__footer {
    font-size: 2.4rem;
    padding: 25px 40px;
  }
}

.bl_mcopy {
  display: inline-block;
  font-size: 1.2rem;
  position: relative;
  padding: 0 30px;
}
@media (min-width: 40.063em) {
  .bl_mcopy {
    font-size: 1.5rem;
  }
}
.bl_mcopy:before, .bl_mcopy:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: black;
}
.bl_mcopy:before {
  left: 0;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.bl_mcopy:after {
  right: 0;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.ly_inner {
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
  padding: 0 10px;
}
.ly_inner.__w960 {
  max-width: 960px;
}
.ly_inner.__w1000 {
  max-width: 1000px;
}
@media (min-width: 64.063em) {
  .ly_inner {
    padding: 0 20px;
  }
}

.ly_fxd {
  position: fixed;
  z-index: 898;
}
.ly_fxd.__top {
  top: 0;
}
.ly_fxd.__btm {
  bottom: 0;
}

@media (min-width: 40.063em) {
  .ly_flx__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.ly_flx__wrap.__wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ly_flx__wrap.__space {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ly_flx__wrap.__center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ly_flx__wrap._rowrev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* el */
.el_lv2Heading {
  font-size: 2.8rem;
  letter-spacing: 0;
}
@media (min-width: 40.063em) {
  .el_lv2Heading {
    font-size: 6rem;
    letter-spacing: 0.1em;
  }
}

.el_lv3Heading {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #FFFF00));
  background: linear-gradient(transparent 85%, #FFFF00 85%);
  font-size: 2.8rem;
  display: inline-block;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  padding-top: 80px;
}
@media (min-width: 64.063em) {
  .el_lv3Heading {
    font-size: 4.8rem;
    letter-spacing: 0.1rem;
    margin-bottom: 40px;
    padding-top: 130px;
  }
}

.el_cont__ttl {
  font-size: 2.4rem;
  max-width: 326px;
  margin: 0 auto;
  position: relative;
  padding-top: 40px;
  padding-bottom: 60px;
  text-align: center;
}
@media (min-width: 64.063em) {
  .el_cont__ttl {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
.el_cont__ttl:before {
  background: #2d2d2e;
  bottom: 40px;
  content: "";
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2em;
}

.el_cont__lead {
  text-align: center;
}
@media (min-width: 64.063em) {
  .el_cont__lead {
    padding-left: 90px;
  }
}

.el_cont__txtLink {
  color: #532F2F;
}
.el_cont__txtLink:hover {
  color: #532F2F;
}
.el_cont__txtLink:visited {
  color: #532F2F;
}

.el_txt__center {
  margin: 0 auto;
  text-align: center;
}
.el_card {
  background: #fff;
  -webkit-box-shadow: 10px 10px 10px -5px rgba(0, 0, 0, 0.2);
          box-shadow: 10px 10px 10px -5px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

/* list style */
.el_list__check {
  background: url(../../assets/img/icon_check.svg) no-repeat left top/28px;
  padding-left: 38px;
}

.el_link_line {
  text-decoration: underline;
}

/* navi */
@media (min-width: 64.063em) {
  .bl_nav_toggle {
    display: none;
  }
}

.bl_nav_pc {
  display: none;
}
@media (min-width: 64.063em) {
  .bl_nav_pc {
    display: block;
    font-size: 1.5rem;
    position: absolute;
    right: 0;
    top: 0;
    /*  top: 30px;*/
  }
  .bl_nav_pc ul {
    display: inline;
  }
  .bl_nav_pc ul li {
    display: inline;
  }
  .bl_nav_pc ul li a {
    display: inline-block;
    margin-left: 1em;
  }
}

.bl_sp__nav {
  background: url(../../assets/img/frame_bottom.png) no-repeat center top;
  background-size: cover;
  min-height: 124px;
  width: 100%;
}
@media (min-width: 64.063em) {
  .bl_sp__nav {
    display: none;
  }
}

.pdB10 {
  padding-bottom: 10px;
}

.pdB20 {
  padding-bottom: 20px;
}

.pdB40 {
  padding-bottom: 40px;
}

.pdB30 {
  padding-bottom: 30px;
}

.pdB60 {
  padding-bottom: 60px;
}

.pdB80 {
  padding-bottom: 80px;
}

.pdT10 {
  padding-top: 10px;
}

.pdT20 {
  padding-top: 20px;
}

.pdT40 {
  padding-top: 40px;
}

.pdT60 {
  padding-top: 60px;
}