@charset "UTF-8";
@import url(//use.fontawesome.com/releases/v5.15.3/css/all.css);
@import url(//fonts.googleapis.com/css2?family=Bebas+Neue&display=swap);
@import url(//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap);
/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5em;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

a {
  color: #222;
  text-decoration: none;
}
a.hvop {
  transition: opacity .3s ease;
}
a.hvop:hover {
  opacity: .7;
  transition: opacity .2s ease;
}
a.link-tel {
  pointer-events: none;
}

.disp-tab {
  display: none;
}

.disp-sp {
  display: none;
}

.wrapper {
  overflow: hidden;
}

@media only screen and (max-width: 1024px) {
  .disp-tab {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 1.2em;
  }
  a.hvop:hover {
    opacity: 1;
  }
  a.link-tel {
    pointer-events: auto;
  }
  .disp-pc {
    display: none;
  }
  .disp-sp {
    display: block;
  }
}

/*------------------------------------------
  modules
------------------------------------------*/
.l-grid {
  display: -moz-flex;
  display:      flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
}

.l-grid-col-2 .l-grid-item {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 4%;
}
.l-grid-col-2 .l-grid-item:nth-child(2n) {
  margin-right: 0;
}

.l-grid-col-3 .l-grid-item {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.l-grid-col-3 .l-grid-item:nth-child(3n) {
  margin-right: 0;
}

.l-grid-col-4 .l-grid-item {
  width: 23%;
  margin-right: 2.6666%;
  margin-bottom: 4%;
}
.l-grid-col-4 .l-grid-item:nth-child(4n) {
  margin-right: 0;
}

/* ====== layout ====== */
[class*="l-inner"] {
  margin: auto;
  padding: 0 30px;
}

.l-inner__type01 {
  max-width: 1060px;
}

.l-inner__type02 {
  max-width: 870px;
}

/* ====== title ====== */
.m-title__type01 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 2rem;
}

.m-title__type02 {
  text-align: center;
  margin-bottom: 45px;
  font-weight: 700;
  font-size: 3rem;
  color: #005bab;
}

.m-title__type03 {
  font-size: 2.2rem;
  color: #005bab;
  text-align: center;
  margin-bottom: 1em;
  font-weight: 500;
}

.m-title__type04 {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 30px;
}
.m-title__type04 span {
  font-weight: 500;
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

/* ====== btn ====== */
.m-btn__type01 {
  display: inline-block;
  text-align: center;
  font-weight: 500;
  color: #fff;
  font-size: 2rem;
  width: 360px;
  max-width: 100%;
  padding: 20px 0;
  border-radius: 50px;
  box-shadow: 3px 3px 16px -6px rgba(0, 0, 0, .2);
}
.m-btn__type01 .label {
  background: #fff;
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: .05em;
  padding: 2px 3px 0;
  line-height: 1.1;
  margin-right: 8px;
}
.m-btn__type01.c-pink {
  background: #ed2360;
  background: linear-gradient(90deg, #020024 0%, #ed2360 0%, #f74fb7 100%);
}
.m-btn__type01.c-blue {
  background: #36abdf;
  background: linear-gradient(90deg, #020024 0%, #36abdf 0%, #77d9f1 100%);
}
.m-btn__type01.c-blue .label {
  color: #56c2e8;
}

.m-btn__type02 {
  display: inline-block;
  text-align: center;
  font-weight: 500;
  color: #fff;
  font-size: 1.8rem;
  width: 360px;
  max-width: 100%;
  padding: 20px 0;
  border-radius: 50px;
  box-shadow: 3px 3px 16px -6px rgba(0, 0, 0, .2);
  background: #36abdf;
  background: linear-gradient(90deg, #020024 0%, #36abdf 0%, #77d9f1 100%);
}

.m-btn__type03 {
  text-align: center;
  display: inline-block;
  background: #005bab;
  color: #fff;
  font-weight: 500;
  width: 300px;
  padding: 1em 0;
  border-radius: 50px;
}

@media only screen and (max-width: 1024px) {
  /* ====== layout ====== */
  [class*="l-inner"] {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 768px) {
  /* ====== title ====== */
  .m-title__type01 {
    margin-bottom: 1.5em;
    font-size: 1.5rem;
  }
  .m-title__type02 {
    margin-bottom: 1em;
    font-size: 2rem;
  }
  .m-title__type03 {
    font-size: 1.7rem;
    margin-bottom: .5em;
  }
  .m-title__type04 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    line-height: 1.4;
  }
  .m-title__type04 span {
    font-size: 1.3rem;
  }
  /* ====== btn ====== */
  .m-btn__type01 {
    font-size: 1.4rem;
    width: 80%;
    padding: 12px 0;
  }
  .m-btn__type02 {
    font-size: 1.2rem;
    width: 80%;
    padding: 15px 0;
  }
  .m-btn__type03 {
    font-size: 1.3rem;
  }
}

/*------------------------------------------
  header
------------------------------------------*/
.page-header {
  padding-top: 10px;
  background: #fff;
}
.page-header__title {
  padding-top: 10px;
}
.page-header .header-title__text {
  color: #888;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.page-header__contents {
  margin-left: auto;
}
.page-header .header-contents__info {
  align-items: flex-end;
  justify-content: flex-end;
}
.page-header .info-tel {
  text-align: right;
}
.page-header .info-tel .tel__num a {
  color: #005bab;
  font-size: 4rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: .03em;
  display: block;
  line-height: 1.1;
}
.page-header .info-tel .tel__num i {
  font-size: 3rem;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.page-header .info-tel .tel__text {
  font-size: 1.3rem;
  line-height: 1.1;
}
.page-header .info-btn__contact {
  width: 190px;
  margin-left: 25px;
}
.page-header .info-btn__trial {
  width: 220px;
  margin-left: 10px;
}
.page-header .info-btn a {
  font-size: 16px;
  padding: 13px 0;
}

.global-nav__list {
  justify-content: flex-end;
}
.global-nav__list li {
  margin-left: 2em;
}
.global-nav__list a {
  display: block;
  padding: 1em 0;
}

.fix-header {
  position: fixed;
  top: -52px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  transition: .3s;
  border-bottom: 1px solid #fff;
}
.fix-header .js-gnav-trigger {
  border-left: none;
}
.fix-header.is-active {
  top: 0;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .1);
}

.fix-btn-list {
  width: calc( 100% - 50px);
  text-align: center;
}
.fix-btn-list li {
  width: 33.333%;
  border-right: 1px solid #fff;
  box-sizing: border-box;
  line-height: 1.2;
}
.fix-btn-list a {
  height: 50px;
  color: #fff;
  font-weight: 500;
  align-items: center;
}
.fix-btn-list a div {
  width: 100%;
}
.fix-btn-list .btn-icon {
  font-size: 2rem;
  margin-bottom: 2px;
}
.fix-btn-list .btn-icon span {
  display: inline-block;
  color: #56c2e8;
  background: #fff;
  font-family: "Bebas Neue", sans-serif;
  line-height: 20px;
  padding: 2px 2px 0;
}
.fix-btn-list .btn__tel {
  background: #00398c;
  background: linear-gradient(90deg, #020024 0%, #003a8d 0%, #007dca 100%);
}
.fix-btn-list .btn__contact {
  background: #ed2360;
  background: linear-gradient(90deg, #020024 0%, #ed2360 0%, #f74fb7 100%);
}
.fix-btn-list .btn__trial a {
  background: #36abdf;
  background: linear-gradient(90deg, #020024 0%, #36abdf 0%, #77d9f1 100%);
}

@media only screen and (max-width: 1100px) {
  .page-header .header-title__text {
    max-width: 244px;
  }
}

@media only screen and (max-width: 1024px) {
  .page-header {
    padding-top: 0;
    position: relative;
  }
  .page-header__inner {
    height: 50px;
    align-items: center;
  }
  .page-header__title {
    padding-top: 0;
  }
  .page-header .header-title__logo {
    width: 118px;
  }
  .page-header .header-title__text {
    font-size: 1.1rem;
    margin-bottom: 2px;
    line-height: 1.2;
  }
  .page-header__contents {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    background: rgba(2, 0, 36, .95);
    background: linear-gradient(90deg, rgba(2, 0, 36, .95) 0%, rgba(0, 58, 141, .95) 0%, rgba(0, 125, 202, .95) 100%);
    width: 100%;
    height: calc( 100vh -50px);
    z-index: 100;
  }
  .page-header__contents__inner {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
  }
  .page-header .header-contents__info {
    width: 100%;
    -ms-order: 2;
        order: 2;
  }
  .page-header .info-tel {
    text-align: center;
    width: 100%;
    padding-top: 30px;
    -ms-order: 3;
        order: 3;
  }
  .page-header .info-tel .tel__num a {
    color: #fff;
    font-size: 4rem;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: .03em;
    display: block;
    line-height: 1.1;
  }
  .page-header .info-tel .tel__num i {
    font-size: 3rem;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
  }
  .page-header .info-tel .tel__text {
    color: #fff;
  }
  .page-header .info-btn {
    width: 100%;
    margin: 0;
  }
  .page-header .info-btn__contact {
    -ms-order: 1;
        order: 1;
  }
  .page-header .info-btn__trial {
    -ms-order: 2;
        order: 2;
  }
  .page-header .info-btn a {
    width: 100%;
    border-radius: 0;
    text-align: left;
    font-size: 1.5rem;
    padding: 1em 2em;
    box-sizing: border-box;
  }
  .page-header .header-contents__nav {
    width: 100%;
    -ms-order: 1;
        order: 1;
  }
  .global-nav__list li {
    width: 100%;
    border-bottom: 1px solid #4d7db6;
    margin: 0;
    font-size: 1.5rem;
  }
  .global-nav__list a {
    color: #fff;
    padding: 1em 2em;
  }
  .js-gnav-trigger {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-left: 1px solid #ddd;
    background: #f4f4f4;
    box-sizing: border-box;
    cursor: pointer;
  }
  .js-gnav-trigger .trigger-icon {
    width: 20px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    transition: .3s;
  }
  .js-gnav-trigger .trigger-icon span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #005bab;
    transition: .3s;
  }
  .js-gnav-trigger .trigger-icon span:nth-child(1) {
    top: 0;
  }
  .js-gnav-trigger .trigger-icon span:nth-child(2) {
    top: 50%;
    margin-top: -1px;
  }
  .js-gnav-trigger .trigger-icon span:nth-child(3) {
    bottom: 0;
  }
  .js-gnav-trigger.trigger-open .trigger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .js-gnav-trigger.trigger-open .trigger-icon span:nth-child(2) {
    opacity: 0;
  }
  .js-gnav-trigger.trigger-open .trigger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
  }
}

@media only screen and (max-width: 768px) {
  .page-header .info-tel .tel__text {
    font-size: 1.1rem;
  }
  .page-header .info-btn a {
    font-size: 1.3rem;
  }
  .global-nav__list li {
    font-size: 1.3rem;
  }
  .fix-btn-list .btn-text {
    font-size: 1rem;
  }
}

/*------------------------------------------
  footer
------------------------------------------*/
.page-footer {
  padding: 50px 0;
}
.page-footer__inner {
  position: relative;
}
.page-footer .footer-info__logo {
  margin-bottom: 50px;
}
.page-footer .footer-info__text a {
  color: #005bab;
}
.page-footer__contents {
  margin-left: auto;
  padding-top: 15px;
}
.page-footer .sns-list li {
  border-right: 1px solid rgba(146, 187, 203, .3);
  margin-right: 1.5em;
  padding-right: 1.5em;
  box-sizing: border-box;
}
.page-footer .sns-list li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.page-footer .sns-list a {
  display: block;
}
.page-footer .sns-list span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}
.page-footer .copyright {
  position: absolute;
  bottom: 0;
  right: 30px;
  font-size: 1.3rem;
  color: #6198ad;
}

.btn-pagetop {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
}

@media only screen and (max-width: 1024px) {
  .page-footer__info {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .page-footer__contents {
    width: 100%;
    padding-top: 0;
    margin-bottom: 30px;
  }
  .page-footer .sns-list {
    justify-content: center;
  }
  .page-footer .copyright {
    position: static;
    width: 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .page-footer {
    padding: 35px 0 20px;
  }
  .page-footer__info {
    margin-bottom: 40px;
  }
  .page-footer .footer-info__logo {
    margin-bottom: 35px;
  }
  .page-footer .footer-info__logo img {
    width: 118px;
  }
  .page-footer__contents {
    margin-bottom: 20px;
  }
  .page-footer .sns-list {
    max-width: 255px;
    margin: auto;
    font-size: 1.1rem;
  }
  .page-footer .sns-list li {
    width: 50%;
    margin: 0 0 10px;
    padding: 0;
  }
  .page-footer .sns-list li:nth-child(odd) {
    width: 38%;
  }
  .page-footer .sns-list li:nth-child(even) {
    border-right: none;
  }
  .page-footer .sns-list li a {
    padding: 0 1.5em;
  }
  .page-footer .sns-list li span {
    width: 20px;
  }
  .page-footer .copyright {
    font-size: 1rem;
  }
  .btn-pagetop {
    width: 35px;
    bottom: 0;
    right: 0;
  }
}

/*------------------------------------------
  contents
------------------------------------------*/
/* ===== MV ===== */
.page-visual {
  background: url(../images/bg01.png) no-repeat left center;
  position: relative;
  padding: 80px 0 70px;
  background-size: cover;
}
.page-visual:after {
  content: "";
  width: 1600px;
  height: 244px;
  position: absolute;
  bottom: -1px;
  left: 50%;
  margin-left: -800px;
  background: url(../images/bg-visual.png) no-repeat center bottom;
}
.page-visual__inner {
  max-width: 1070px;
  align-items: center;
  justify-content: space-between;
}
.page-visual .visual-contents {
  width: 48%;
}
.page-visual .visual-contents__thumb {
  text-align: right;
}
.page-visual .visual-contents .btn {
  margin-top: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-visual .visual-contents .btn a {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 500;
  background: rgba(86, 194, 232, .5);
  border-radius: 50px;
  padding: 1em 0;
}
.page-visual .visual-contents .thumb img {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .2);
}

.page-head__title {
  text-align: center;
  background: url(../images/bg01.png) no-repeat center;
  background-size: cover;
  padding: 80px 0;
}
.page-head__title .title-text {
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: .03em;
}

.page-head__breadcrumb {
  font-size: 1.3rem;
}
.page-head__breadcrumb ul {
  padding: 1em 0;
}
.page-head__breadcrumb li {
  margin-right: 1em;
}
.page-head__breadcrumb li:last-child {
  margin-right: 0;
}
.page-head__breadcrumb a {
  display: block;
}
.page-head__breadcrumb a:after {
  content: "＞";
  padding-left: 1em;
}

.BD-page .page-main {
  padding-top: 70px;
  padding-bottom: 100px;
  background: url(../images/bg03.png) repeat-y center top;
  background-size: 100%;
}

@media only screen and (max-width: 1024px) {
  .page-visual {
    padding: 60px 0 80px;
  }
  .page-visual:after {
    width: 100%;
    left: 0;
    margin-left: 0;
    background-size: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .page-visual {
    background: url(../images/bg01-sp.png) no-repeat center;
    padding: 30px 0 25px;
    background-size: cover;
  }
  .page-visual:before, .page-visual:after {
    content: "";
    position: absolute;
    width: 150px;
    height: 115px;
    bottom: 0;
  }
  .page-visual:before {
    right: 0;
    background: url(../images/bg-visual-sp02.png) no-repeat right bottom;
    background-size: 100%;
  }
  .page-visual:after {
    left: 0;
    background: url(../images/bg-visual-sp01.png) no-repeat center bottom;
    background-size: 100%;
  }
  .page-visual__inner {
    max-width: 480px;
  }
  .page-visual .visual-contents {
    width: 100%;
  }
  .page-visual .visual-contents img {
    width: 100%;
  }
  .page-visual .visual-contents__thumb {
    margin-top: 17px;
    padding: 0 20px;
  }
  .page-visual .visual-contents .btn {
    margin-top: 35px;
  }
  .page-visual .visual-contents .btn a {
    max-width: 70%;
    font-size: 1.2rem;
  }
  .page-head__title {
    padding: 40px 0;
  }
  .page-head__title .title-text {
    font-size: 2rem;
  }
  .page-head__breadcrumb {
    font-size: 1.1rem;
  }
  .BD-page .page-main {
    padding-top: 25px;
    padding-bottom: 50px;
  }
}

/* ===== section ===== */
.page-section {
  padding: 70px 0;
}
.page-section .section-contents {
  margin-bottom: 90px;
}
.page-section .section-contents:last-child {
  margin-bottom: 0;
}
.page-section .section-more {
  text-align: center;
  margin-top: 70px;
}

@media only screen and (max-width: 768px) {
  .page-section {
    padding: 35px 0 40px;
  }
  .page-section .section-contents {
    margin-bottom: 35px;
  }
  .page-section .section-more {
    margin-top: 35px;
  }
}

/* ===== client ===== */
.client-list {
  max-width: 840px;
  margin: auto;
  justify-content: center;
}
.client-list li {
  width: 25%;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page-section__client {
    padding-bottom: 15px;
  }
  .client-list {
    max-width: 480px;
  }
  .client-list li {
    margin: 0 0 25px;
    width: 46%;
    text-align: center;
  }
  .client-list li img {
    height: 7.4vw;
    max-height: 40px;
  }
}

/* ===== feature ===== */
.page-section__feature {
  background: url(../images/bg03.png) repeat-y center top;
  background-size: 100%;
}

.feature-box {
  position: relative;
  margin-bottom: 50px;
}
.feature-box .box__image {
  width: 600px;
}
.feature-box .box__contents {
  width: 600px;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
  padding: 50px 2% 50px 5%;
}
.feature-box .box__contents .num {
  font-size: 8rem;
  color: #56c2e8;
  position: absolute;
  left: 15px;
  top: 0;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  line-height: 1.1;
}
.feature-box .box__contents .title {
  font-weight: 700;
  font-size: 3rem;
  color: #005bab;
  margin-bottom: .8em;
  line-height: 1.4;
}
.feature-box:nth-child(odd) .box__contents {
  right: 0;
}
.feature-box:nth-child(even) .box__image {
  margin-left: auto;
}
.feature-box:nth-child(even) .box__contents {
  left: 0;
}

@media only screen and (max-width: 768px) {
  .page-section__feature .section-contents {
    max-width: 480px;
    margin: auto;
  }
  .feature-box {
    margin-bottom: 25px;
  }
  .feature-box .box__image {
    width: 100%;
  }
  .feature-box .box__contents {
    width: calc( 100% - 20px);
    margin: -50px auto 0;
    position: relative;
    transform: translateY(0);
    padding: 25px 20px;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .1);
  }
  .feature-box .box__contents .num {
    font-size: 4rem;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .feature-box .box__contents .title {
    text-align: center;
    font-size: 2rem;
  }
}

/* ===== spec ===== */
.spec-list01 {
  padding-top: 25px;
  justify-content: space-between;
}
.spec-list01 li {
  width: 49%;
  background: #eff7fa;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  padding: 55px 1em 40px;
  margin-top: 70px;
}
.spec-list01 li:nth-child(1), .spec-list01 li:nth-child(2) {
  margin-top: 0;
}
.spec-list01 .item__icon {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate3d(-50%, -50%, 0);
}
.spec-list01 .item__title {
  font-size: 2rem;
  color: #005bab;
  margin-bottom: 1em;
  font-weight: 500;
}
.spec-list01 .item__image {
  margin-bottom: 20px;
}
.spec-list01 .item__image img {
  border: 1px solid #e4e9eb;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .1);
}

.spec-list02 {
  justify-content: center;
}
.spec-list02 li {
  width: 23%;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  border: 4px solid #eff7fa;
  padding: 22px 0;
  background: #fff;
  margin: 0 1% 2%;
}
.spec-list02 .item__num {
  font-family: "Bebas Neue", sans-serif;
  color: #56c2e8;
  font-size: 3.6rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
.spec-list02 .item__icon {
  margin-bottom: 15px;
}
.spec-list02 .item__title {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 500;
  color: #005bab;
}

@media only screen and (max-width: 768px) {
  .spec-list01 {
    padding-top: 10px;
  }
  .spec-list01 li {
    width: 100%;
    margin-top: 0;
    margin-bottom: 30px;
    padding: 30px 25px 20px;
    font-size: 1.3rem;
  }
  .spec-list01 li:last-child {
    margin-bottom: 0;
  }
  .spec-list01 .item__icon img {
    width: 39px;
  }
  .spec-list01 .item__title {
    font-size: 1.8rem;
  }
  .spec-list01 .item__image {
    margin-bottom: 20px;
  }
  .spec-list01 .item__image img {
    width: 60%;
  }
  .spec-list02 li {
    width: 48%;
    border-width: 2px;
    margin: 0 0 4%;
  }
  .spec-list02 li:nth-child(2n) {
    margin-left: auto;
  }
  .spec-list02 .item__num {
    font-family: "Bebas Neue", sans-serif;
    color: #56c2e8;
    font-size: 3.6rem;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .spec-list02 .item__icon {
    margin-bottom: 15px;
  }
  .spec-list02 .item__icon img {
    width: 33px;
  }
  .spec-list02 .item__title {
    font-size: 1.4rem;
    margin-bottom: 1em;
  }
}

/* ===== price ===== */
.page-section__price {
  background: url(../images/patt01.png) repeat;
}
.page-section__price .section-contents {
  margin-bottom: 65px;
}
.page-section__price .contents__price {
  border-bottom: 1px solid #e4e9eb;
  padding: 0 3em 40px;
  margin-bottom: 40px;
}
.page-section__price .contents__price:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price-box {
  background: #fff;
  width: 48%;
  text-align: center;
  position: relative;
  padding-bottom: 128px;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .1);
}
.price-box:nth-child(2n) {
  margin-left: auto;
}
.price-box .box__title {
  color: #fff;
  font-weight: bold;
  font-size: 2.2rem;
  padding: .8em 0;
}
.price-box .box__contents {
  padding: 35px 35px 0;
}
.price-box .box__contents .price {
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}
.price-box .box__contents .btn {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 35px;
}
.price-box .box__contents .btn a {
  width: 300px;
}
.price-box01 .box__title {
  background: #56c2e8;
}
.price-box01 .box__contents .price {
  color: #56c2e8;
  font-size: 2.6rem;
}
.price-box01 .box__contents .price span {
  font-size: 180%;
}
.price-box02 .box__title {
  background: #005bab;
}
.price-box02 .box__contents .price {
  color: #005bab;
  font-size: 2.8rem;
}
.price-box02 .box__contents .price span {
  font-size: 190%;
}

@media only screen and (max-width: 768px) {
  .page-section__price .section-contents {
    margin-bottom: 25px;
  }
  .page-section__price .contents__price {
    padding: 0 0 25px;
    margin-bottom: 25px;
  }
  .price-box {
    width: 100%;
    margin-bottom: 25px;
    padding-bottom: 0;
  }
  .price-box:nth-child(2n) {
    margin-bottom: 0;
  }
  .price-box .box__title {
    font-size: 1.7rem;
  }
  .price-box .box__contents {
    padding: 25px;
  }
  .price-box .box__contents .price {
    margin-bottom: 15px;
  }
  .price-box .box__contents .btn {
    position: static;
    margin-top: 15px;
  }
  .price-box .box__contents .btn a {
    width: 80%;
  }
  .price-box01 .box__contents .price {
    font-size: 1.8rem;
  }
  .price-box02 .box__contents .price {
    font-size: 1.8rem;
  }
  .price-box02 .box__contents .price span {
    font-size: 200%;
  }
}

/* ===== voice ===== */
.page-section__voice {
  background: url(../images/bg02.png) no-repeat center;
  background-size: cover;
}

.voice-list {
  padding-top: 56px;
  justify-content: space-between;
}
.voice-list li {
  text-align: center;
  width: 23%;
  background: #fff;
  position: relative;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .1);
  box-sizing: border-box;
  padding: 75px 0 25px;
}
.voice-list .item__image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.voice-list .item__contents .title {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 1em;
}

@media only screen and (max-width: 768px) {
  .voice-list {
    max-width: 480px;
    margin: auto;
    padding-top: 25px;
  }
  .voice-list li {
    width: 70%;
    margin: 0 auto 35px;
    padding: 40px 0 25px;
  }
  .voice-list li:last-child {
    margin-bottom: 0;
  }
  .voice-list .item__image img {
    width: 56px;
  }
  .voice-list .item__contents .title {
    font-size: 1.4rem;
  }
}

/* ===== step ===== */
.step-list {
  max-width: 880px;
  margin: auto;
  justify-content: space-between;
  position: relative;
}
.step-list:before {
  content: "";
  width: 100%;
  height: 4px;
  background: #eff7fa;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: 0;
}
.step-list li {
  width: 31%;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  border: 4px solid #eff7fa;
  padding: 22px 0;
  background: #fff;
}
.step-list .item__num {
  font-family: "Bebas Neue", sans-serif;
  color: #56c2e8;
  font-size: 3.6rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
.step-list .item__icon {
  margin-bottom: 15px;
}
.step-list .item__title {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 500;
  color: #005bab;
}

@media only screen and (max-width: 768px) {
  .step-list {
    max-width: 480px;
  }
  .step-list:before {
    width: 2px;
    height: 100%;
    top: 0;
    margin-top: 0;
    left: 50%;
    margin-left: -1px;
  }
  .step-list li {
    border-width: 2px;
    width: 80%;
    margin: 0 auto 20px;
  }
  .step-list li:last-child {
    margin-bottom: 0;
  }
  .step-list .item__num {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  .step-list .item__icon {
    margin-bottom: 10px;
  }
  .step-list .item__icon img {
    width: 45px;
  }
  .step-list .item__title {
    font-size: 1.5rem;
    margin-bottom: .5em;
  }
}

/* ===== faq ===== */
.page-section__faq {
  background: url(../images/patt01.png) repeat;
}

.faq-list {
  position: relative;
}
.faq-list__item {
  margin-bottom: 30px;
  background: #fff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .1);
}
.faq-list__item:last-child {
  margin-bottom: 0;
}
.faq-list__item .item__title {
  position: relative;
  border-bottom: 1px solid #e6eff3;
  padding: 25px;
  padding-left: 68px;
  font-size: 2.2rem;
  color: #005bab;
  font-weight: 500;
}
.faq-list__item .item__contents {
  position: relative;
  padding: 25px;
  padding-left: 68px;
  line-height: 2.2;
}
.faq-list__item .icon {
  color: #56c2e8;
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  position: absolute;
  left: 30px;
  top: 22px;
  line-height: 1.1;
}

@media only screen and (max-width: 768px) {
  .faq-list__item {
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .1);
  }
  .faq-list__item:last-child {
    margin-bottom: 0;
  }
  .faq-list__item .item__title {
    padding: 15px;
    padding-left: 36px;
    font-size: 1.5rem;
  }
  .faq-list__item .item__contents {
    padding: 15px;
    padding-left: 36px;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .faq-list__item .icon {
    font-size: 2.5rem;
    left: 15px;
    top: 15px;
  }
}

/* ===== contact ===== */
.page-section__contact {
  padding: 50px 0 45px;
  background: url(../images/bg01.png) no-repeat left bottom;
  background-size: cover;
}
.page-section__contact .section-contents {
  max-width: 780px;
  margin: auto;
  color: #fff;
}
.page-section__contact .tel-info {
  margin-bottom: 30px;
  align-items: center;
}
.page-section__contact .tel-info .info__num {
  line-height: 1.2;
}
.page-section__contact .tel-info .info__num a {
  color: #fff;
  font-size: 4rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: .03em;
}
.page-section__contact .tel-info .info__num i {
  display: inline-block;
  margin-right: 5px;
  font-size: 3rem;
  vertical-align: middle;
}
.page-section__contact .tel-info .info__num span {
  display: inline-block;
  vertical-align: middle;
  padding-right: 15px;
}
.page-section__contact .tel-info .info__caution {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, .5);
  line-height: 1.4;
}
.page-section__contact .btn-list {
  align-items: flex-end;
  justify-content: space-between;
}
.page-section__contact .btn-list li {
  width: 48%;
  text-align: center;
}
.page-section__contact .btn-list .label {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: .5em;
}

@media only screen and (max-width: 1024px) {
  .page-section__contact .tel-info {
    text-align: center;
    margin-bottom: 25px;
  }
  .page-section__contact .tel-info .info__num {
    width: 100%;
  }
  .page-section__contact .tel-info .info__caution {
    width: 100%;
    border-left: none;
    padding-left: 0;
    margin-top: 1em;
  }
}

@media only screen and (max-width: 768px) {
  .page-section__contact {
    padding: 30px 0 45px;
    background: url(../images/bg01-sp.png) no-repeat left bottom;
    background-size: cover;
  }
  .page-section__contact .btn-list li {
    width: 100%;
    margin-bottom: 18px;
  }
  .page-section__contact .btn-list li:last-child {
    margin-bottom: 0;
  }
}

/* ===== know how ===== */
.page-section__expertise .section-contents {
  background: #e7f3f7 url(../images/bg-expertise.png) no-repeat center right;
  background-size: auto 100%;
  padding: 40px;
}
.page-section__expertise .section-contents .contents__inner {
  max-width: 550px;
}
.page-section__expertise .section-contents .text {
  margin-bottom: 25px;
}

.page-section__expertise .section-title {
  margin-bottom: 25px;
}
.page-section__expertise .section-title span {
  display: inline-block;
  background: #fff;
  font-size: 3rem;
  font-weight: 500;
  padding: 0 12px;
  margin-bottom: 10px;
}
.page-section__expertise .section-title span:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .page-section__expertise {
    padding: 25px 0;
  }
  .page-section__expertise .section-inner {
    padding: 0;
  }
  .page-section__expertise .section-contents {
    background: #e7f3f7;
    position: relative;
    padding: 20px 20px 42vw;
  }
  .page-section__expertise .section-contents:before {
    content: "";
    background: url(../images/bg-expertise-sp.png) no-repeat right bottom;
    background-size: 100%;
    height: 100%;
    width: 72%;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .page-section__expertise .section-contents .contents__inner {
    max-width: 550px;
    position: relative;
  }
  .page-section__expertise .section-contents .text {
    margin-bottom: 20px;
  }
  .page-section__expertise .section-title {
    margin-bottom: 20px;
  }
  .page-section__expertise .section-title span {
    font-size: 4vw;
    padding: 0 8px;
    margin-bottom: 5px;
  }
}

/* ===== form ===== */
.form-section {
  background: #fff;
  max-width: 1000px;
  margin: 0 auto 80px;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .1);
}
.form-section:last-child {
  margin-bottom: 0;
}
.form-section .section-contents {
  padding: 55px 0 60px;
}
.form-section .form__lead {
  text-align: center;
  border-bottom: 1px solid #e6eff3;
}
.form-section .form__lead .contents__head {
  color: #f2398c;
  margin-bottom: 40px;
}
.form-section .form__lead .head-lead {
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 5px;
}
.form-section .form__lead .head-title {
  font-weight: 700;
  font-size: 3rem;
}
.form-section .form__lead .tel-lead {
  margin-bottom: 2em;
}
.form-section .form__lead .tel-num {
  justify-content: center;
  align-items: center;
}
.form-section .form__lead .tel-num .num {
  margin-right: 15px;
  line-height: 1.3;
}
.form-section .form__lead .tel-num .num a {
  color: #005bab;
  font-size: 4rem;
  letter-spacing: .03em;
  font-family: "Bebas Neue", sans-serif;
}
.form-section .form__lead .tel-num .num i {
  font-size: 2.8rem;
  display: inline-block;
  vertical-align: middle;
}
.form-section .form__main .contents__inner {
  max-width: 600px;
}
.form-section .form__main .contents__head {
  text-align: center;
  margin-bottom: 50px;
}
.form-section .form__main .head-title {
  font-size: 3rem;
  font-weight: 700;
  color: #005bab;
  margin-bottom: .6em;
}

.form-contents .mark {
  display: inline-block;
  font-size: 1.3rem;
  padding: 0 4px;
  color: #fff;
  background: #f2398c;
}

.form-contents .error {
  font-size: 1.2rem;
  color: #f2398c;
  margin-top: .5em;
}

.form-contents table {
  width: 100%;
  text-align: left;
  margin-bottom: 50px;
}
.form-contents table tr {
  border-bottom: 1px solid #e6eff3;
}
.form-contents table th {
  position: relative;
  vertical-align: top;
  padding-top: 28px;
  width: 190px;
}
.form-contents table th .mark {
  position: absolute;
  right: 0;
  top: 30px;
}
.form-contents table td {
  padding: 15px 20px;
}

.form-contents .table-conf tr:last-child {
  display: none;
}

.form-contents .table-conf th {
  padding: 15px 0;
}

.form-contents input[type="text"] {
  background: #fff;
  border: 1px solid #d9e1e5;
  height: 50px;
  width: 100%;
  padding: 0 1em;
}

.form-contents textarea {
  background: #fff;
  border: 1px solid #d9e1e5;
  width: 100%;
  padding: 1em;
  font-family: "Noto Sans JP", sans-serif;
}

.form-contents .radio label ~ label {
  margin-left: 15px;
}

.form-contents .radio input[type=radio] {
  margin-right: 8px;
}

.form-contents .radio input[type=radio] {
  display: none;
}

.form-contents .radio label {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  line-height: 50px;
}

.form-contents .radio label::before {
  position: absolute;
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d9e1e5;
  left: 0;
  top: 50%;
  margin-top: -15px;
}

.form-contents .radio label::after {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #005bab;
  left: 5px;
  top: 50%;
  margin-top: -10px;
  opacity: 0;
  transition: .3s;
}

.form-contents .radio input[type=radio]:checked + label::after {
  opacity: 1;
}

.form-agree {
  text-align: center;
  margin-bottom: 30px;
}
.form-agree .agree-text {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 30px;
}
.form-agree a {
  text-decoration: underline;
}
.form-agree label ~ label {
  margin-left: 15px;
}
.form-agree input[type=checkbox] {
  margin-right: 8px;
}
.form-agree input[type=checkbox] {
  display: none;
}
.form-agree label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.form-agree label::before {
  position: absolute;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #d9e1e5;
  left: 0;
  top: 50%;
  margin-top: -10px;
}
.form-agree label::after {
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 12px;
  border-bottom: 3px solid #005bab;
  border-right: 3px solid #005bab;
  left: 5px;
  top: 50%;
  margin-top: -10px;
  opacity: 0;
  transition: .3s;
  transform: rotate(45deg);
}
.form-agree input[type=checkbox]:checked + label::after {
  opacity: 1;
}

.form-btn {
  text-align: center;
}
.form-btn .btn-entry input {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 50px;
  width: 400px;
  height: 70px;
  color: #fff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .1);
  background: #ed2360;
  background: linear-gradient(90deg, #020024 0%, #ed2360 0%, #f74fb7 100%);
}
.form-btn .btn-back {
  margin-bottom: 30px;
}
.form-btn .btn-back input {
  text-decoration: underline;
}
.form-btn input {
  transition: .3s;
}
.form-btn input:hover {
  opacity: .7;
}

::-moz-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

.form-error {
  color: #f2398c;
  font-size: 1.3rem;
}

@media only screen and (max-width: 768px) {
  .form-section {
    margin: 0 auto 50px;
  }
  .form-section .section-contents {
    padding: 25px 0 35px;
  }
  .form-section .form__lead .contents__head {
    margin-bottom: 15px;
  }
  .form-section .form__lead .head-lead {
    font-size: 1.5rem;
  }
  .form-section .form__lead .head-title {
    font-size: 2rem;
  }
  .form-section .form__lead .tel-num p {
    width: 100%;
  }
  .form-section .form__lead .tel-num .num {
    margin-right: 0;
  }
  .form-section .form__main .contents__head {
    margin-bottom: 20px;
  }
  .form-section .form__main .head-title {
    font-size: 2.2rem;
  }
  .form-section .form__main .head-lead {
    text-align: left;
  }
  .form-contents .mark {
    font-size: 1.1rem;
  }
  .form-contents table {
    margin-bottom: 30px;
  }
  .form-contents table th, .form-contents table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .form-contents table th {
    padding: 10px;
    background: #f4f4f4;
  }
  .form-contents table th .mark {
    position: static;
    margin-left: 1em;
  }
  .form-contents table td {
    padding: 15px 0 30px;
  }
  .form-contents .table-conf th {
    padding: 10px;
  }
  .form-contents .table-conf td {
    padding-left: 10px;
    padding-right: 10px;
  }
  .form-contents input[type="text"] {
    height: 45px;
  }
  .form-contents .radio label {
    padding-left: 25px;
    line-height: 25px;
  }
  .form-contents .radio label::before {
    width: 20px;
    height: 20px;
    margin-top: -11px;
  }
  .form-contents .radio label::after {
    width: 12px;
    height: 12px;
    margin-top: -6px;
  }
  .form-agree {
    text-align: left;
  }
  .form-btn .btn-entry input {
    font-size: 1.6rem;
    width: 100%;
    height: 60px;
  }
  .form-btn .btn-back {
    margin-bottom: 20px;
  }
  .form-btn .btn-back input {
    font-size: 1.3rem;
  }
  ::-moz-placeholder {
    font-size: 1.2rem;
  }
  :-ms-input-placeholder {
    font-size: 1.2rem;
  }
  ::-ms-input-placeholder {
    font-size: 1.2rem;
  }
  ::placeholder {
    font-size: 1.2rem;
  }
  .form-error {
    margin-bottom: 15px;
    font-size: 1.2rem;
  }
}