@charset "utf-8";

@import url(ress.css);
@import url(default.css);



/* -------------------------------- box base -------------------------------- */
html {
  height: 100%;
}
body {
  height: 100vh;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
}
header,
main,
footer {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  position: relative;
}
main .inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  height: auto;
  width: calc(100% - 20px);
  margin: 0 10px;
}
header,
footer {
  width: 100%;
  height: auto;
}
footer {
  background-color: #FFFFFF;
  color: #000000;
}
#lp footer {
  padding-bottom: 60px;
}
/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
  main {
    background-size: auto;
  }
  main .inner {
    height: auto;
    width: 100%;
    margin: 0 auto;
  }
  #lp footer {
    padding-bottom: 0;
  }
}
/* pc */
@media screen and (min-width: 1025px) {
  main {
  }
  main .inner {
    height: auto;
    width: 1024px;
    margin: 0 auto;
  }
  #lp footer {
    padding-bottom: 0;
  }
}




/* -------------------------------- flex box patarn -------------------------------- */
/* pc + tab */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
.flex-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flex-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flex-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.flex-align-stretch {
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
.flex-align-start {
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.flex-align-end {
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.flex-align-center {
  -ms-flex-line-pack: center;
  align-content: center;
}
.flex-align-spacearound {
  -ms-flex-line-pack: distribute;
  align-content: space-around;
}
/* sp */
@media screen and (max-width : 767px) {
  .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .row-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

/* -------------------------------- decoration -------------------------------- */
.text-blur {
  text-shadow: 0 4px 8px #000000, 0 -4px 8px #000000, 4px 0 8px #000000, -4px 0 8px #000000;
}
.box-shadow {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.50);
}
.radius {
  border-radius: 3px;
}
.list {
  list-style: none;
  margin: 0 0 0 0;
}
.list li {
  padding-left: 1em;
  text-indent: -0.5em;
}
.list li::before {
  content: '●';
  display: inline-block;
  font-size: 1em;
  line-height: 1em;
  /* width: 1em;
  height: 1em; */
  margin-right: 3px;
}

/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
  .radius {
    border-radius: 8px;
  }
}
/* pc */
@media screen and (min-width: 1025px) {
  .radius {
    border-radius: 8px;
  }
}


/* -------------------------------- colors/arrows -------------------------------- */
.orange {
  background-color: #FF5E00;
}
.red {
  background-color: #FF0000;
}
.blue {
  background-color: #15377B;
}
.lightblue {
  background-color: #3F94FF;
}
.emerald {
  background-color: #37BBAA;
}
.white {
  background-color: #FFFFFF;
}
.border-orange {
  border: 2px solid #FF5E00;
}
.border-blue {
  border: 2px solid #15377B;
}
.border-lightblue {
  border: 2px solid #3F94FF;
}
.border-white {
  border: 2px solid #FFFFFF;
}
.text-orange {
  color: #FF5E00;
}
.text-red {
  color: #FF0000;
}
.text-blue {
  color: #15377B;
}
.text-lightblue,
strong.text-lightblue {
  color: #3F94FF !important;
}
.text-white {
  color: #FFFFFF !important;
}
.text-yellow {
  color: #FFB100 !important;
}
.arrow-orange {
  background-image: url(../images/arrow_orange.svg);
  background-repeat: no-repeat;
}
.arrow-blue {
  background-image: url(../images/arrow_blue.svg);
  background-repeat: no-repeat;
}
.arrow-white {
  background-image: url(../images/arrow_white.svg);
  background-repeat: no-repeat;
}
.arrow-right {
  background-position: calc(100% - 10px) center;
}
.arrow-left {
  background-position: 10px center;
  transform: rotate(180deg);
}
.inq {
  background-position: calc(100% - 10px) center;
  background-size: 20px;
  color: #FFFFFF !important;
  font-size: 1.2rem;
  line-height: 40px;
  height: 40px;
  /* padding-right: 23px !important; */
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tab {
  background-position: calc(100% - 10px) center;
  background-size: 20px;
  border-radius: 5px !important;
  color: #FFFFFF !important;
  font-size: 1.8rem;
  line-height: 30px;
  height: 30px;
  padding-right: 23px !important;
  margin: 0 auto;
}
/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
  .inq {
    background-size: 20px;
    font-size: 2rem;
    line-height: 40px;
    height: 40px;
    /* padding-right: 25px !important; */
    margin: 0 auto;
  }
  .inq span {
    font-size: inherit;
    font-weight: inherit;
  }
  .tab {
    background-size: 18px;
    font-size: 1.8rem;
    line-height: 30px;
    height: 30px;
    padding-right: 25px !important;
    margin: 0 auto;
  }
  .tab span {
    font-size: inherit;
    font-weight: inherit;
  }
}
/* pc */
@media screen and (min-width: 1025px) {
  .inq {
    background-size: 25px;
    font-size: 2.4rem;
    line-height: 60px;
    height: 70px;
    /* padding-right: 25px !important; */
    margin: 0 auto;
  }
  .inq span {
    font-size: inherit;
    font-weight: inherit;
  }
  .tab {
    background-size: 20px;
    font-size: 2rem;
    line-height: 30px;
    height: 40px;
    padding-right: 25px !important;
    margin: 0 auto;
  }
  .tab span {
    font-size: inherit;
    font-weight: inherit;
  }
}


/* -------------------------------- button/links -------------------------------- */
.button {
  border-radius: 8px;
  display: block;
}
/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
  .button {
  }
}
/* pc */
@media screen and (min-width: 1025px) {
  .button {
    padding: 5px;
  }
}

/* --------------------------------other-------------------------------- */
nav {
  transition: .3s;
}
.clone-nav {
  display: none;
  /* position: relative; */
}
.clone-nav ul {
  margin-left: 0;
  list-style: none;
}
.is-show {
  transform: translateY(100%);
}
/* .hide {
  position: relative;
} */
/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
  .clone-nav {
    display: block;
    background-color: rgba(255, 255, 255, 0.7);
    position: fixed !important;
    width: 100%;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 20px 10px;
    z-index: 10;
  }
  .is-show {
    transform: translateY(100%);
  }
  /* .hide {
    position: relative !important;
  } */
}
/* pc */
@media screen and (min-width: 1025px) {
  .clone-nav {
    display: block;
    background-color: rgba(255, 255, 255, 0.7);
    position: fixed !important;
    width: 100%;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 20px calc((100% - 1024px) / 2);
    z-index: 10;
  }
  .is-show {
    transform: translateY(100%);
  }
  /* .hide {
    position: relative !important;
  } */
}

/* --------------------------------header-------------------------------- */
header {
  background: #FFFFFF;
  display: block;
  width: 100%;
  height: auto;
  padding: 10px 0;
  position: relative;
}
header h1 {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
header #logotype {
  display: block;
  height: auto;
  line-height: 0;
  width: 211px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
header #logotype img {
  width: 100%;
  height: auto;
}
header #logotype span {
  position: absolute;
  top: 0;
}
header #contact {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 30%;
  height: auto;
  position: absolute;
  top: 25px;
  right: 10px;
}
header .link_cost {
  margin-right: 10px;
}
header .telephone a,
header .contact a {
  border-radius: 3px;
  color: #FFFFFF;
  display: table-cell;
  height: 31px;
  width: 31px;
  text-indent: -999999px;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: middle;
}
header .telephone a {
  background: url(../images/icon_tel_white.svg) center no-repeat;
  background-color: #37BBAA;
  background-size: 20px;
  display: inline-block;
  margin-right: 5px;
  padding: 5px;
}
header .contact a {
  background: url(../images/icon_mail_white.svg) center no-repeat;
  background-color: #15377B;
  background-size: 20px;
  display: inline-block;
  padding: 5px;
}

/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
  header {
    padding: 20px 0;
  }
  header h1 {
    font-size: 1.2rem;
  }
  header #logotype {
    height: auto;
    width: 269px;
  }
  header #contact {
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
    -ms-flex-direction: inherit;
    flex-direction: inherit;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: auto;
    height: auto;
    position: relative;
    top: inherit;
    right: inherit;
  }
  header .link_cost a,
  header .telephone a,
  header .contact a {
    border-radius: 5px;
    color: #FFFFFF;
    display: table-cell;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1em;
    text-indent: inherit;
    white-space: inherit;
    overflow: inherit;
    height: 55px;
    width: 180px !important;
    vertical-align: middle;
  }
  header .link_cost a {
    background-size: 1.6rem;
  }
  header .telephone {
    margin-right: 10px;
  }
  header .telephone time {
    color: #000000;
    font-size: 1.2rem;
    display: block;
  }
  header .telephone a {
    background: none;
    background-color: #37BBAA;
    background-size: inherit;
    margin-right: 5px;
    padding: 5px;
  }
  header .contact a {
    background: none;
    background-color: #15377B;
    background-size: inherit;
    padding: 5px;
  }
}
/* pc */
@media screen and (min-width: 1025px) {
  header {
    padding: 20px 0;
  }
  header h1 {
    font-size: 1.4rem;
  }
  header #logotype {
    height: auto;
    width: 269px;
  }
  header #contact {
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
    -ms-flex-direction: inherit;
    flex-direction: inherit;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: auto;
    height: auto;
    position: relative;
    top: inherit;
    right: inherit;
  }
  header .link_cost a,
  header .telephone a,
  header .contact a {
    border-radius: 8px;
    color: #FFFFFF;
    display: table-cell;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1em;
    text-indent: inherit;
    white-space: inherit;
    overflow: inherit;
    height: 61px;
    width: 200px !important;
    vertical-align: middle;
  }
  header .link_cost a {
    background-size: 1.6rem;
  }
  header .telephone {
    margin-right: 10px;
  }
  header .telephone time {
    color: #000000;
    font-size: 1.2rem;
    display: block;
  }
  header .telephone a {
    background: none;
    background-color: #37BBAA;
    background-size: inherit;
    margin-right: 5px;
    padding: 8px;
  }
  header .contact a {
    background: none;
    background-color: #15377B;
    background-size: inherit;
    padding: 8px;
  }
}


/* -------------------------------- top -------------------------------- */
/* ---------- Promortion Movie Ver 2020.08.14 ---------- */
/* #fv */
#fv {
  background-color: #598ffa;
  height: auto;
  line-height: 0;
  text-align: center;
  padding: 0;
  position: relative;
}
#fv::after {
  content: '';
  display: block;
  border-bottom: 1px solid #37BBAA;
  width: 100%;
  height: 1px;
  z-index: 2;
  left: 0;
  bottom: 0;
  transform: translateY(-1px);
}
#pv {
  background-color: #FFF;
  width: 100%;
  height: auto;
  line-height: 0;
}
/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
  #fv {
    height: auto;
  }
  #pv {
    /* background-color: #FFF;
    width: 100%;
    height: auto;
    line-height: 0; */
  }
}
/* pc */
@media screen and (min-width: 1025px) {
  #fv {
    height: 516px !important;
  }
  #pv {
    /* background-color: #FFF; */
    width: 1024px;
    /* height: auto;
    line-height: 0; */
  }
}

/* #cost-more */
#cost-more {
  background-color: #37BBAA;
  margin: 0 0 10px 0;
  padding: 10px 0;
  text-align: center;
}
#cost-more h2 {
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 10px;
}
#cost-more a.button {
  background-position: calc(100% - 5px) center;
  background-size: 16px;
  font-size: 1.4rem;
  line-height: 36px;
  font-weight: 700;
  height: 40px;
}
/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
  #cost-more {
    text-align: left;
    /* margin-top: -27px; */
  }
  #cost-more h2 {
    color: #FFFFFF;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 0;
  }
  #cost-more a.button {
    background-position: calc(100% - 5px) center;
    background-size: 16px;
    font-size: 1.4rem;
    line-height: 36px;
    font-weight: 700;
    height: 40px;
  }
}
/* pc */
@media screen and (min-width: 1025px) {
  #cost-more {
    text-align: left;
    /* margin-top: -27px; */
  }
  #cost-more h2 {
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 0;
  }
  #cost-more a.button {
    background-position: calc(100% - 5px) center;
    background-size: 16px;
    font-size: 1.8rem;
    line-height: 46px;
    font-weight: 700;
    height: 60px;
  }
}

/* #introduction */
/* #introduction ol {
  counter-reset: counter-name;
  margin-left: 0;
}
#introduction ol li {
  position: relative;
}
#introduction ol li::before {
  background-color: #15377B;
  color: #FFFFFF;
  counter-increment: counter-name;
  content: 'Pattern-'counter(counter-name);
  display: block;
  font-weight: 700;
  text-align: center;
  padding: 3px;
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: auto;
} */
#introduction h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2em;
  width: 100%;
}
#introduction img.ph-pattern,
#introduction p {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  text-align: center;
}
#introduction article {
  margin-top: 20px;
}
#introduction #brand-mark img {
  max-width: 100%;
}
/* sp */
@media screen and (max-width: 767px) {
  #introduction ol.row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #introduction ol li.quarter {
    width: calc((100% - 10px) / 2);
  }
}
/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print {
  #introduction h2 {
    font-size: 2.6rem;
    font-weight: 700;
  }
  #introduction li p {
    font-size: 1.4rem;
    line-height: 1.3em;
    text-align: center;
  }
}
/* pc */
@media screen and (min-width: 1025px) {
  #introduction h2 {
    font-size: 3.8rem;
    font-weight: 700;
  }
  #introduction li p {
    font-size: 1.8rem;
    line-height: 1.3em;
    text-align: center;
  }
}


/* #introduction1 */
/* #introduction1 ol {
  counter-reset: counter-name;
  margin-left: 0;
}
#introduction1 ol li {
  position: relative;
}
#introduction1 ol li::before {
  background-color: #15377B;
  color: #FFFFFF;
  counter-increment: counter-name;
  content: 'Pattern-'counter(counter-name);
  display: block;
  font-weight: 700;
  text-align: center;
  padding: 3px;
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: auto;
} */
#introduction1 h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2em;
  width: 100%;
}
#introduction1 img.ph-pattern,
#introduction p {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  text-align: center;
}
#introduction1 article {
  margin-top: 20px;
}
#introduction1 #brand-mark img {
  max-width: 100%;
}
/* sp */
@media screen and (max-width: 767px) {
  #introduction1 ol.row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #introduction1 ol li.quarter {
    width: calc((100% - 10px) / 2);
  }
}
/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print {
  #introduction1 h2 {
    font-size: 2.6rem;
    font-weight: 700;
  }
  #introduction1 li p {
    font-size: 1.4rem;
    line-height: 1.3em;
    text-align: center;
  }
}
/* pc */
@media screen and (min-width: 1025px) {
  #introduction1 h2 {
    font-size: 3.8rem;
    font-weight: 700;
  }
  #introduction1 li p {
    font-size: 1.8rem;
    line-height: 1.3em;
    text-align: center;
  }
}


/* #point */
#point .scroll {
  padding-bottom: 30px;
}
table#hikaku {
  border-top: 1px solid #15377B;
  table-layout: fixed;
  position: relative;
  width: 150%;
}
table#hikaku .now {
  background-color: #FFFFFF;
}
table#hikaku .kkweb {
  background-color: #538DFF;
  color: #FFFFFF;
}
table#hikaku th {
  /* font-size: 120%; */
}
table#hikaku thead th {
  vertical-align: middle;
}
table#hikaku thead th:first-child,
table#hikaku tbody th {
  padding: 10px;
  width: calc(100% / 3);
}
table#hikaku thead th.kkweb {
  font-size: 150%;
}
table#hikaku tbody td strong.big {
  font-size: 150%;
  font-weight: 700;
}
table#hikaku #star {
  background: url(../images/star.svg) center no-repeat;
  background-size: cover;
  color: #000000;
  width: 100px;
  height: 100px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2em;
  text-align: center;
  position: absolute;
  bottom: -30px;
  right: -10px;
  transform: rotate(20deg);
}
/* sp */
@media screen and (max-width: 767px) {
  #point {
    /* margin-bottom: 30px; */
  }
}
/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
  table#hikaku {
    width: 100%;
  }
  table#hikaku thead th.now,
  table#hikaku tbody td.now,
  table#hikaku thead th.kkweb,
  table#hikaku tbody td.kkweb {
    /* width: calc((100% - 150px) / 2); */
  }
  table#hikaku thead th:first-child,
  table#hikaku tbody th {
    width: 150px;
  }
  table#hikaku th {
    font-size: 120%;
  }
  table#hikaku thead th.kkweb {
    font-size: 180%;
  }
  table#hikaku tbody td strong.big {
    font-size: 120%;
  }
  table#hikaku #star {
    width: 120px;
    height: 120px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2em;
    bottom: -40px;
    right: 10px;
  }
}
/* pc */
@media screen and (min-width: 1025px) {
  table#hikaku {
    width: 100%;
  }
  table#hikaku thead th.now,
  table#hikaku tbody td.now,
  table#hikaku thead th.kkweb,
  table#hikaku tbody td.kkweb {
    width: calc((1024px - 200px) / 2);
  }
  table#hikaku thead th:first-child,
  table#hikaku tbody th {
    width: 200px;
  }
  table#hikaku tbody td strong.big {
    font-size: 150%;
  }
  table#hikaku #star {
    width: 140px;
    height: 140px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2em;
    bottom: -40px;
    right: 10px;
  }
}

/* #case */
#case article h2 {
  color: #37BBAA;
  font-size: 3.6rem;
  line-height: 1em;
  position: relative;
}
#case article h2::after {
  content: '';
  width: 100%;
  height: 1px;
  border-bottom: 3px solid #37BBAA;
  position: absolute;
  bottom: 5px;
  left: 0;
}
#case article h3 {
  color: #000000;
  font-size: 1.8rem;
}
#case article .before {
  margin-bottom: 30px;
}
#case article .before h4 {
  background-color: #37BBAA;
  border-radius: 8px 8px 0 0;
  color: #FFFFFF;
  display: block;
  font-size: 1.8rem;
  line-height: 1em;
  padding: 5px 10px;
  position: relative;
  margin-bottom: 20px;
}
#case article .before h4::after {
  content: '';
  display: block;
  height: 1px;
  border-bottom: 1px solid #37BBAA;
  position: absolute;
  bottom: 0;
  left: 0;
}
#case article .after h4 {
  background-color: #15377B;
  border-radius: 8px 8px 0 0;
  color: #FFFFFF;
  display: block;
  font-size: 1.8rem;
  line-height: 1em;
  padding: 5px 10px;
  position: relative;
  margin-bottom: 20px;
}
#case article .after h4::after {
  content: '';
  display: block;
  height: 1px;
  border-bottom: 1px solid #15377B;
  position: absolute;
  bottom: 0;
  left: 0;
}
#case .before img,
#case .after img {
  margin-bottom: 10px;
}
/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
  #case article h2 {
    font-size: 4rem;
  }
  #case article h3 {
    font-size: 2rem;
  }
  #case article .before {
    margin-bottom: 30px;
  }
  #case article .before h4 {
    border-radius: 8px 8px 0 0;
    font-size: 2.2rem;
    padding: 5px 10px;
    margin-bottom: 20px;
  }
  #case article .before h4::after {
    width: calc(100% * 3 + 40px);
  }
  #case article .after h4 {
    border-radius: 8px 8px 0 0;
    display: block;
    font-size: 2.4rem;
    padding: 5px 10px;
    margin-bottom: 20px;
  }
  #case article .after h4::after {
    width: calc(100% * 3 + 40px);
  }
  #case .before img,
  #case .after img {
    margin-bottom: 0;
  }
}
/* pc */
@media screen and (min-width: 1025px) {
  #case article h2 {
    font-size: 5rem;
  }
  #case article h3 {
    font-size: 2.6rem;
  }
  #case article .before {
    margin-bottom: 30px;
  }
  #case article .before h4 {
    border-radius: 8px 8px 0 0;
    font-size: 2.4rem;
    padding: 5px 10px;
    margin-bottom: 20px;
  }
  #case article .before h4::after {
    width: 1024px;
    height: 1px;
  }
  #case article .after h4 {
    border-radius: 8px 8px 0 0;
    display: block;
    font-size: 2.4rem;
    padding: 5px 10px;
    margin-bottom: 20px;
  }
  #case article .after h4::after {
    width: 1024px;
  }
  #case .before img,
  #case .after img {
    margin-bottom: 0;
  }
}




/* #demo */
section#demo {
  margin-bottom: 20px;
  position: relative;
}
#demo #demonstration {
  background: url(../images/bg_monitor.jpg) center top  no-repeat;
  background-size: contain;
  display: block;
  height: 400px;
}
#demo #demonstration video {
  padding-top: 0;
  transform: translateY(20px);
  height: auto;
  width: calc(100% - 35px);
}
/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
  #demo #demonstration {
    height: 500px;
  }
  #demo #demonstration video {
    padding-top: 0 !important;
    transform: translateY(20px);
    height: auto;
    width: calc((100vw - 40px) / 3 * 2 + 20px - 50px);
  }
}
/* pc */
@media screen and (min-width: 1025px) {
    #demo #demonstration {
      height: 613px;
    }
    #demo #demonstration video {
      padding-top: 3px;
      height: auto;
      width: auto !important;
    }
  }

/* #faq */
section#faq .tab_area {
  width: 100%;
  margin: auto;
  flex-wrap: wrap;
  display: flex;
}
section#faq .tab {
  width: 100%;
  height: auto;
  padding-right: 0 !important;
}
section#faq ul.tab li {
  width: 100%;
  height: 50px;
  list-style: none;
}
section#faq ul.tab li a {
  width: 100%;
  background-color: #FFF;
  border: 1px solid #15377B;
  border-radius: 10px 10px 0 0;
  color: #000;
  cursor: pointer;
  display: block;
  line-height: 50px;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 600;
  text-align: center;
  float: left;
  order: -1;
}
section#faq .tab li.active a,
section#faq .tab li a:hover,
section#faq .tab li a:active {
  background-color: #15377B;
  border: 1px solid #15377B;
  color: #FFF;
}
section#faq .tabs li a:hover {
  opacity: .5;
}
.tabContents {
  display: none;
}
.tabContents.active {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 30px;
}
section#faq dl {
  border-top: 1px solid #15377B;
  display: inherit !important;
  width: 100%;
  height: auto;
}
section#faq dl dt,
section#faq dl dd {
  border-bottom: 1px solid #15377B;
  display: block;
  width: 100%;
  height: auto;
  padding: 20px 46px 20px 80px;
  position: relative;
  white-space: normal;
}
section#faq dl dt {
  /* background-color: #F3F3F3; */
  cursor: pointer;
  font-weight: 700;
}
section#faq dl dt:hover,
section#faq dl dt:active {
  opacity: 0.7;
}
section#faq dl dt .q {
  background-color: #15377B;
  color: #FFFFFF;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1em;
  position: absolute;
  left: 0;
  top:0;
  height: 100%;
  width: 60px;
}
section#faq dl dt::after {
  content: '';
  background: url(../images/arrow_blue.svg) center no-repeat;
  background-size: cover;
  display: inline-block;
  width: 1em;
  height: 1em;
  position: absolute;
  right: 20px;
  top: calc((100% - 1em) / 2);
  transform: rotate(90deg);
}
section#faq dl dt.opened::after {
  transform: rotate(-90deg);
  transition-duration: 100ms;
}
section#faq dl dd {
  background-color: #FFFFFF;
}
section#faq dl dd::before {
  background-color: #15377B;
  content: '';
  color: #FFFFFF;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 700;
  font-family:'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
  line-height: 1em;
  margin-right: 0.5em;
  position: absolute;
  left: 0;
  top:0;
  height: 100%;
  width: 60px;
}
/* faq-moji */
@media screen and (min-width: 1025px) {

section#faq dl dd::before {

  background-color: #15377B;
  content: '';
  color: #FFFFFF;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 700;
  font-family:'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
  line-height: 1em;
  margin-right: 0.5em;
  position: absolute;
  left: 0;
  top:0;
  height: 100%;
  width: 60px;
}
}

/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
}
/* pc */
@media screen and (min-width: 1025px) {
}


/* #cost */
section#cost table tbody {
  border-top: 1px solid #15377B;
}
section#cost table th,
section#cost table td {
  padding: 20px 0;
}

/* #cost1 */
section#cost1 table tbody {
  border-top: 1px solid #15377B;
}
section#cost1 table th,
section#cost1 table td {
  padding: 20px 0;
}



/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
}
/* pc */
@media screen and (min-width: 1025px) {
}


/* #contact-info */
section#contact-info {
  background-color: #CBDDFF;
  padding: 40px 0;
}
#contact-info a[href^="tel:"] {
  display: table;
  background-color: #37BBAA;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2em;
  text-align: center;
  margin: 10px auto 20px auto;
  padding: 10px 20px;
  vertical-align: middle;
}
#contact-info a[href^="tel:"] span {
  display: block;
  color: #000000;
  font-size: 1.2rem !important;
  line-height: 1em;
}
#contact-info ul {
  list-style: none;
  margin: 10px 0 0 0;
}
#contact-info ul li:not(:last-child) {
  margin-bottom: 10px;
}
#contact-info ul.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
#contact-info ul li.col1 {
  flex-grow: 1;
  margin-right: 10px;
}
#contact-info ul li.col1:last-child {
  margin-right: 0;
}
/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
  #contact-info ul li.col1 {
    flex-grow: 1;
    margin-right: 20px;
  }
  #contact-info ul li.col1:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
}
/* pc */
@media screen and (min-width: 1025px) {
  #contact-info ul li.col1 {
    flex-grow: 1;
    margin-right: 20px;
  }
  #contact-info ul li.col1:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
}

/* #form-select-sp */
section#contact-info-sp {
  background-color: #CBDDFF;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 10px;
  position: fixed;
  left: 0;
  bottom:0;
  z-index: 3;
}
section#contact-info-sp nav#form-select-sp ul.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
#form-select-sp ul li.col1 {
  flex-grow: 1;
  margin-right: 10px;
}
#form-select-sp ul li.col1:last-child {
  margin-right: 0;
}
/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
}
/* pc */
@media screen and (min-width: 1025px) {
}


/* form-html */
form#mail_form dl {
  border-bottom: none;
}
form#mail_form dl dt,
form#mail_form dl dd {
  display: block;
}
form#mail_form dl dt {
  font-weight: 700;
  margin: 5px 0;
}
form#mail_form span.required {
  background-color: #FF5E00;
  border-radius: 5px;
  color: #FFFFFF;
  display: inline-block;
  float: right;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1em;
  padding: 3px 5px;
  transform: translateY(0);
}
form#mail_form span.optional {
  display: none;
}
form#mail_form span.error_blank {
  color: #FF0000;
  display: block;
}
article.policy .scroll {
  background: #CBDDFF;
  border: 1px solid #979797;
  box-shadow: inset 0 1px 3px 0 rgba(0,0,0,0.50);
  border-radius: 10px;
  width: 100%;
  height: 300px;
  overflow-x: hidden;
  overflow-y: hidden;
}
article.policy .scroll .scroll-contents {
  width: calc(100% + 17px);
  height: 300px;
  padding: 10px 17px 10px 10px;
  overflow-y: scroll;
}
article.policy .scroll h4 {
  font-size: 120%;
  margin:  5px 0;
}
article.policy .scroll ol {
  margin-left: 2em;
}
.error_blank {
  animation: 2s linear infinite blink_effect;
}
@keyframes blink_effect {
      0% {
          opacity: 0;
      }
      50% {
          opacity: 1;
      }
      100% {
          opacity: 0;
      }
  }
/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
  form#mail_form span.required {
    font-size: 1.2rem;
    transform: translateY(4px);
  }
  form#mail_form dl dt,
  form#mail_form dl dd {
    border-bottom: none;
    display: block;
    padding-bottom: 10px;
    vertical-align: middle;
  }
  form#mail_form label {
    display: inline-block;
  }
  form#mail_form label:not(:last-child) {
    margin-right: 10px;
  }
  form#mail_form a[href^="tel:"] {
    font-size: 3rem;
  }
  form#mail_form a[href^="tel:"] span {
    font-size: 1.6rem !important;
  }
  article.policy .scroll h4 {
    font-size: 120%;
    margin:  10px 0;
  }
}
/* pc */
@media screen and (min-width: 1025px) {
  form#mail_form span.required {
    font-size: 1.2rem;
    transform: translateY(4px);
  }
  form#mail_form dl dt,
  form#mail_form dl dd {
    border-bottom: none;
    display: block;
    padding-bottom: 20px;
    vertical-align: middle;
  }
  form#mail_form label {
    display: inline-block;
  }
  form#mail_form label:not(:last-child) {
    margin-right: 10px;
  }
  article.policy .scroll h4 {
    font-size: 120%;
    margin:  10px 0;
  }
}

/* thanks.html */
#thanks a[href^="tel:"] {
  display: table;
  background-color: #37BBAA;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2em;
  text-align: center;
  margin: 10px auto 20px auto;
  padding: 10px 20px;
  vertical-align: middle;
}
#thanks a[href^="tel:"] span {
  display: block;
  color: #000000;
  font-size: 1.2rem !important;
  line-height: 1em;
}

/* -------------------------------- footer -------------------------------- */
footer #go-top {
  margin: 0;
}
footer #go-top a {
  background: url(../images/icon_arrow_pagetop.svg) center no-repeat;
  background-size: cover;
  box-shadow: 0 4px 7px 0 rgba(0,0,0,0.50);
  border-radius: 5px;
  display: block;
  text-indent: -999999px;
  overflow: hidden;
  opacity: 0.5;
  white-space: nowrap;
  width: 40px;
  height: 40px;
  position: fixed;
  right: 20px;
  bottom: 85px;
  z-index: 1000;
}
footer #go-top a:hover,
footer #go-top a:active {
  opacity: 1;
}
footer #foot-contents {
  padding: 10px 0 0 0;
}
footer span {
  color: #363636;
  display: block;
  font-weight: 700;
  transform: translateY(-20px);
}
footer #company-info,
footer #footer-nav {
  width: 100%;
  height: auto;
}
footer #company-info {
  width: 60%;
  height: auto;
  margin: 0 auto;
}
footer #company-logomark {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
}
footer #company-logomark img {
  width: 100%;
  height: auto;
}
footer nav ul {
  line-height: 1em;
  list-style: none;
  margin: 0 auto 20px auto;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
footer nav ul li {
  width: 50%;
  height: auto;
}
footer nav ul li a {
  background-color: #D6D6D6;
  color: #000000 !important;
  display: block;
  white-space: nowrap;
  width: 100%;
  height: auto;
  padding: 3px;
}
footer nav ul li:not(:first-child) {
  border-left: 1px solid #FFFFFF;
}
footer nav ul li ul {
  display: none;
}
footer #copyright {
  background-color: #000000;
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 30px;
  text-align: center;
}
/* tab */
@media screen and (min-width : 768px) and (max-width : 1024px), print  {
  footer #go-top a {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 50px;
  }
  footer p,
  footer span {
    font-size: 1.2rem;
  }
  footer #company-info {
    width: 40%;
    margin: 0;
  }
  footer #footer-nav {
    width: 60%;
  }
  footer #footer-nav ul li a {
    font-size: 1.2rem;
  }
  footer #company-logomark {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
  }
  footer #company-logomark img {
    width: 100%;
    height: auto;
  }
  footer #company-logomark {
    width: 90%;
    height: auto;
    margin: 0 auto 0 0;
    transform: translateX(-1px);
  }
  footer nav ul {
    background-color: inherit;
    margin-top: 0;
  }
  footer nav ul li {
    width: inherit;
  }
  footer nav ul li a {
    background-color: transparent;
    line-height: 1em;
    padding: 0;
  }
  footer nav ul li ul {
    display: block;
  }
  footer nav ul li:not(:last-child) {
    border-right: 1px solid #000000;
    margin-right: 1em;
    padding-right: 1em;
  }
  footer #copyright {
    font-size: 1rem;
    line-height: 30px;
  }
}
/* pc */
@media screen and (min-width: 1025px) {
  footer #go-top a {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 60px;
  }
  footer #foot-contents {
    padding: 20px 0;
  }
  footer #company-info {
    width: 309px;
    height: auto;
    margin: 0;
  }
  footer #footer-nav {
  }
  footer #company-logomark {
    display: block;
    width: 230px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
  }
  footer #company-logomark img {
    width: 100%;
    height: auto;
  }
  footer #company-logomark {
    width: 100%;
    height: auto;
  }
  footer nav ul {
    line-height: 1em;
    margin: 0;
  }
  footer nav ul li:not(:last-child) {
    border-right: 1px solid #000000;
    margin-right: 1em;
    padding-right: 1em;
  }
  footer nav ul li a {
    background-color: transparent;
    line-height: 1em;
    padding: 0;
  }
  footer nav ul li ul {
    display: block;
    margin-left: 1em;
  }
  footer #copyright {
    font-size: 1.2rem;
    line-height: 35px;
  }
}
