@charset "UTF-8";
/*----------------------------------
# Block Common
------------------------------------*/
.lpbb-block {
  margin: 0 auto;
  padding: 20px;
  max-width: 960px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.lpbb-block.alignwide {
  max-width: 1140px;
}

.lpbb-block.alignfull {
  padding-right: 0;
  padding-left: 0;
  max-width: none;
}

.lpbb-block.alignfull > .lpbb-content {
  padding: 0 20px;
}

.lpbb-block.alignfull .block-decoration {
  margin-right: 0;
  margin-left: 0;
}

.lpbb-block.alignfull .block-decoration.triangle1 svg,
.lpbb-block.alignfull .block-decoration.triangle2 svg,
.lpbb-block.alignfull .block-decoration.arc2 svg {
  width: 102%;
  margin-right: -1%;
  margin-left: -1%;
}

.lpbb-block .lpbb-block-header {
  margin-bottom: 80px;
}

.lpbb-block .lpbb-block-header .block-header-title {
  font-size: 36px;
  font-size: 3.6rem;
}

.lpbb-block .block-decoration {
  margin: 80px -21px -20px;
  overflow: hidden;
}

.lpbb-block .block-decoration svg {
  position: relative;
  bottom: -1px;
  vertical-align: top;
  width: calc(100% + 1px);
}

.lpbb-block .btn.btn-lpbb {
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 6px 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.lpbb-block .btn.btn-lpbb:hover {
  color: #fff;
}

.lpbb-block .btn.btn-lpbb .btn-inner {
  display: inline-block;
  text-align: left;
}

.lpbb-block .btn.btn-lpbb i {
  position: absolute;
  right: .5em;
  margin: 0;
  display: inherit;
  -webkit-box-align: inherit;
  -webkit-align-items: inherit;
          align-items: inherit;
  -webkit-box-pack: inherit;
  -webkit-justify-content: inherit;
          justify-content: inherit;
  font-size: 1.025em;
  line-height: 1;
  -webkit-transition: ease all .3s;
  transition: ease all .3s;
}

.lpbb-block .btn.btn-lpbb.has-icon {
  padding-right: 1.5em;
  padding-left: 1.5em;
}

.lpbb-block .btn.btn-lpbb.has-icon:hover i {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

.lpbb-block .btn.btn-lpbb.has-icon.btn-icon--before i {
  right: auto;
  left: .5em;
}

.lpbb-block .btn.btn-lpbb.has-icon.btn-icon--before:hover i {
  -webkit-transform: translateX(-3px);
          transform: translateX(-3px);
}

.lpbb-block .btn.btn-lpbb.has-transition {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: ease-in-out .3s;
  transition: ease-in-out .3s;
}

.lpbb-block .btn.btn-lpbb.has-transition::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0;
  height: 100%;
  background: #337ab7;
  -webkit-transition: all 0.3s cubic-bezier(1, 0, 0, 1);
  transition: all 0.3s cubic-bezier(1, 0, 0, 1);
}

.lpbb-block .btn.btn-lpbb.has-transition:hover {
  color: #fff !important;
  border-color: transparent !important;
  background-color: transparent !important;
}

.lpbb-block .btn.btn-lpbb.has-transition.transition--top-bottom::after {
  top: auto;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
}

.lpbb-block .btn.btn-lpbb.has-transition.transition--top-bottom:hover::after {
  top: 0;
  bottom: auto;
  height: 100%;
}

.lpbb-block .btn.btn-lpbb.has-transition.transition--right-left::after {
  right: auto;
  left: 0;
  bottom: 0;
}

.lpbb-block .btn.btn-lpbb.has-transition.transition--right-left:hover::after {
  right: 0;
  left: auto;
  width: 100%;
}

.lpbb-block .btn.btn-lpbb.has-transition.transition--bottom-top::after {
  top: 0;
  left: 0;
  bottom: auto;
  width: 100%;
  height: 0;
}

.lpbb-block .btn.btn-lpbb.has-transition.transition--bottom-top:hover::after {
  top: auto;
  bottom: 0;
  height: 100%;
}

.lpbb-block .btn.btn-lpbb.has-transition.transition--left-right::after {
  right: 0;
  left: auto;
  bottom: 0;
}

.lpbb-block .btn.btn-lpbb.has-transition.transition--left-right:hover::after {
  left: 0;
  width: 100%;
}

/* Link */
.link-block {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  -webkit-transition: ease all .3s;
  transition: ease all .3s;
}

.link-block:hover {
  opacity: .7;
}

/* BlockReveal */
.lpbb-effect-br {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
  opacity: 0;
}

/**
 * 位置指定(position)
 */
.position--absolute {
  position: absolute !important;
}

.position--top-left {
  top: 0 !important;
  left: 0 !important;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.position--top-center {
  top: 0 !important;
  right: auto !important;
  bottom: auto !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.position--top-right {
  top: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  left: auto !important;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.position--center-left {
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  left: 0 !important;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.position--center-center {
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.position--center-right {
  top: 50% !important;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.position--bottom-left {
  top: auto !important;
  right: auto !important;
  bottom: 0 !important;
  left: 0 !important;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.position--bottom-center {
  top: auto !important;
  right: auto !important;
  bottom: 0 !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.position--bottom-right {
  top: auto !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  -webkit-transform: transla;
          transform: transla;
}

/**
 * Video
 */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * 文字
 */
.align--left {
  text-align: left;
}

.align--right {
  text-align: right;
}

.align--center {
  text-align: center;
}

.align--justify {
  text-align: justify;
}

/**
 * 背景設定
 */
/* 背景画像あり */
.has-bg--image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* 背景ぼかし */
.has-bg--blur {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.has-bg--blur::after {
  content: '';
  position: absolute;
  z-index: -2;
  /* 輪郭がぼやけてしまうのでブラー範囲を広げる */
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  background: inherit;
  background-blend-mode: inherit;
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

/* ドット背景 */
.has-dot--black,
.has-dot--white,
.has-bg--blur {
  position: relative;
  z-index: 0;
}

.has-dot--black::before,
.has-dot--white::before,
.has-bg--blur::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: repeat transparent center center;
  pointer-events: none;
}

.has-dot--black::before {
  background-image: -webkit-radial-gradient(#000000 1%, transparent 1%), -webkit-radial-gradient(#000000 1%, transparent 1%);
  background-image: radial-gradient(#000000 1%, transparent 1%), radial-gradient(#000000 1%, transparent 1%);
  background-position: 0 0, 2px 2px;
  background-size: 4px 4px;
}

.has-dot--white::before {
  background-image: -webkit-radial-gradient(#ffffff 1%, transparent 1%), -webkit-radial-gradient(#ffffff 1%, transparent 1%);
  background-image: radial-gradient(#ffffff 1%, transparent 1%), radial-gradient(#ffffff 1%, transparent 1%);
  background-position: 0 0, 2px 2px;
  background-size: 4px 4px;
}

.has-bg--fixed {
  background-attachment: fixed;
}

/* Grid Layout(Flexbox) */
.flex-row.lpbb-column--1 .column-item {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

@media screen and (min-width: 880px) {
  /* grid column */
  .flex-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .flex-row:not(.lpbb-column--1) .column-item {
    width: 48.1%;
  }
}

@media screen and (min-width: 1170px) {
  /* grid column */
  .flex-row {
    padding: 40px 0;
  }
  .flex-row.lpbb-column--3 .column-item {
    width: 30.79667%;
  }
  .flex-row.lpbb-column--3::after {
    content: "";
    display: block;
    width: 30.79667%;
    height: 0;
  }
  .flex-row.lpbb-column--4 .column-item {
    width: 22.15%;
  }
  .flex-row.lpbb-column--4::before, .flex-row.lpbb-column--4::after {
    content: "";
    display: block;
    width: 22.15%;
    height: 0;
  }
  .flex-row.lpbb-column--4::before {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 1170px) {
  .align-break--lg {
    text-align: left !important;
  }
  .full-width--lg {
    width: 100% !important;
    min-width: auto !important;
  }
  .btn-align-break--lg {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
            justify-content: flex-start !important;
  }
}

@media screen and (max-width: 880px) {
  .align-break--md {
    text-align: left !important;
  }
  .full-width--md {
    width: 100% !important;
    min-width: auto !important;
  }
  .btn-align-break--md {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
            justify-content: flex-start !important;
  }
}

@media screen and (max-width: 480px) {
  .align-break--sm {
    text-align: left !important;
  }
  .full-width--sm {
    width: 100% !important;
    min-width: auto !important;
  }
  .btn-align-break--sm {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
            justify-content: flex-start !important;
  }
}

.ocean {
  height: 5%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #015871;
}

.wave {
  position: absolute;
  top: -198px;
  width: 6400px;
  height: 198px;
  -webkit-animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
          animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
  top: -175px;
  -webkit-animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
          animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
  opacity: 1;
}

@-webkit-keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}

@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}

@-webkit-keyframes swell {
  0%, 100% {
    -webkit-transform: translate3d(0, -25px, 0);
            transform: translate3d(0, -25px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
}

@keyframes swell {
  0%, 100% {
    -webkit-transform: translate3d(0, -25px, 0);
            transform: translate3d(0, -25px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
}

/*----------------------------------
# Button Block
------------------------------------*/
.button-block .btn.btn-lpbb {
  padding: 1em 1.4em;
  min-width: 240px;
}

.card-block .layout--grid .has-padding--lr .card-content {
  padding-right: 0;
  padding-left: 0;
}

.card-block .layout--grid .has-padding--tb .card-content {
  padding-bottom: 0;
}

.card-block .layout--grid .card-figure {
  margin: 0;
  width: 100%;
}

.card-block .layout--grid .card-figure.figure--img {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding-top: 56.25%;
}

.card-block .layout--grid .card-figure.figure--img img {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.card-block .layout--grid .card-item .link-block:hover + .figure--img img {
  -webkit-transform: translate(-50%, -50%) scale(1.2);
          transform: translate(-50%, -50%) scale(1.2);
}

.card-block .layout--list .card-item {
  margin-right: auto;
  margin-left: auto;
}

.card-block .layout--list .has-padding--tb .card-content {
  padding: 20px 0 0 0;
}

.card-block .card-item {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0 0 40px;
  background: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.04);
}

.card-block .card-item .link-block {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  z-index: 2;
}

.card-block .card-item .link-block + .figure--img {
  overflow: hidden;
}

.card-block .card-item .link-block + .figure--img img,
.card-block .card-item .link-block + .figure--icon i {
  -webkit-transition: ease .3s;
  transition: ease .3s;
}

.card-block .card-item .link-block:hover {
  background: rgba(255, 255, 255, 0.4);
}

.card-block .card-item .link-block:hover + .figure--img img,
.card-block .card-item .link-block:hover + .figure--icon i {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.card-block .card-item .figure--icon > i {
  font-size: 40px;
  font-size: 4rem;
}

.card-block .card-item .card-content {
  padding: 20px;
}

.card-block .card-item .card-content .card-title {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}

.card-block .card-item .card-content .card-title.has-border {
  padding-bottom: 5px;
  border-bottom: 1px solid #d8d8d8;
}

.card-block .card-item .card-content .card-subtitle {
  margin-top: 0;
  margin-bottom: 16px;
  color: #00BCD4;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
}

.card-block .card-item .card-content .card-content--excerpt {
  margin-bottom: 48px;
  color: #777;
}

.card-block .card-item .card-content .card-content--body .btn-lpbb {
  margin: 0;
  width: 100%;
}

@media screen and (min-width: 480px) {
  .card-block .card-item .card-content .card-content--body .btn-lpbb {
    width: auto;
    min-width: 163px;
  }
}

.card-item:not(.has-padding--lr):not(.has-padding--tb) .figure--icon {
  padding: 20px;
}

@media screen and (min-width: 880px) {
  .card-block .layout--list .card-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }
  .card-block .layout--list .card-item .figure--img {
    padding-top: 0;
  }
  .card-block .layout--list .card-item .figure--img {
    position: relative;
    overflow: hidden;
    margin: 0;
  }
  .card-block .layout--list .card-item .figure--img img {
    position: static;
  }
  .card-block .layout--list .card-item .figure--img.figure-swap {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
            order: 2;
  }
  .card-block .layout--list .card-item .card-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
            flex: 1;
    padding: 20px;
  }
  .card-block .layout--list .card-item .figure--icon + .card-content {
    padding-left: 0;
  }
  .card-block .layout--list .has-padding--lr .card-content {
    padding: 0 0 0 20px;
  }
}

@media screen and (max-width: 880px) {
  .card-block .layout--list {
    padding: 0;
  }
  .card-block .layout--list .card-figure {
    width: 100% !important;
  }
  .card-block .layout--list .figure--img {
    margin: 0;
  }
}

/*----------------------------------
# Footer Block
------------------------------------*/
.footer-block .lpbb-ft-content {
  padding-top: 0;
  padding-bottom: 0;
}

.footer-block .lpbb-copyright {
  display: block;
}

.footer-block p > .lpbb-copyright {
  padding: 0;
}

.footer-block :last-child {
  margin-bottom: 0;
}

/*----------------------------------
# Form Block
------------------------------------*/
.form-block .lpbb-form-content {
  margin: 0 auto;
  max-width: 1140px;
}

.form-block .lpbb-form-content .wpcf7 {
  color: #333;
  /* Ajax loader*/
  /* Spinner */
  /* error */
  /* Tooltip arrow */
  /* メッセージ */
  /* error message */
  /* ok message */
}

.form-block .lpbb-form-content .wpcf7 input,
.form-block .lpbb-form-content .wpcf7 textarea,
.form-block .lpbb-form-content .wpcf7 select {
  color: #333;
  font-weight: 400;
}

.form-block .lpbb-form-content .wpcf7 .wpcf7-text,
.form-block .lpbb-form-content .wpcf7 .wpcf7-textarea {
  margin-top: 5px;
  padding: 10px;
  width: 100%;
  font-weight: normal !important;
  background-color: #f5f5f5;
  border-color: #e6e6e6;
  border-width: 1px;
  border-style: solid;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.form-block .lpbb-form-content .wpcf7 .wpcf7-text:focus,
.form-block .lpbb-form-content .wpcf7 .wpcf7-textarea:focus,
.form-block .lpbb-form-content .wpcf7 .wpcf7-select:focus {
  background: #fff;
  outline: 1px solid #55ccff;
  box-shadow: 0px 0px 5px #55ccff;
}

.form-block .lpbb-form-content .wpcf7 .wpcf7-acceptance {
  margin: auto;
  padding: 1em 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.form-block .lpbb-form-content .wpcf7 .wpcf7-acceptance label {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.form-block .lpbb-form-content .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.form-block .lpbb-form-content .wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 1.14em;
  line-height: 1.4;
}

.form-block .lpbb-form-content .wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  margin-right: .75em;
}

.form-block .lpbb-form-content .wpcf7 .form-submit-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.form-block .lpbb-form-content .wpcf7 .form-submit-wrap.align--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.form-block .lpbb-form-content .wpcf7 .form-submit-wrap.align--right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}

.form-block .lpbb-form-content .wpcf7 .lpbb-form-submit,
.form-block .lpbb-form-content .wpcf7 .input[type="submit"].wpcf7-submit {
  padding: 1.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  min-width: 240px;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
}

.form-block .lpbb-form-content .wpcf7 .lpbb-form-submit.js-disabled:hover,
.form-block .lpbb-form-content .wpcf7 .input[type="submit"].wpcf7-submit.js-disabled:hover {
  box-shadow: none;
}

.form-block .lpbb-form-content .wpcf7 .wpcf7-form .ajax-loader {
  float: none;
  margin-left: 0;
  margin: 7px auto 0 !important;
  display: block !important;
  width: 16px !important;
  height: 16px !important;
}

.form-block .lpbb-form-content .wpcf7 .wpcf7-form .wpcf7-spinner {
  display: none;
}

.form-block .lpbb-form-content .wpcf7 .wpcf7-form.submitting .wpcf7-spinner {
  margin: 16px auto;
  display: block;
}

.form-block .lpbb-form-content .wpcf7 span.wpcf7-not-valid-tip {
  position: relative;
  margin-top: 5px;
  padding: 5px 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  background: rgba(255, 51, 51, 0.8);
  border-radius: 6px;
}

.form-block .lpbb-form-content .wpcf7 span.wpcf7-not-valid-tip:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 20px;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent rgba(255, 51, 51, 0.8) transparent;
}

.form-block .lpbb-form-content .wpcf7 .wpcf7-not-valid.wpcf7-text, .form-block .lpbb-form-content .wpcf7 .wpcf7-not-valid.wpcf7-textarea, .form-block .lpbb-form-content .wpcf7 .wpcf7-not-valid.wpcf7-select {
  background: #fbeff3 !important;
  border-color: #f33 !important;
}

.form-block .lpbb-form-content .wpcf7 div.wpcf7-response-output {
  margin: 2em 0 1em;
  padding: 1em;
  width: 100%;
  font-size: 14px;
  font-size: 1.4rem;
  border-radius: 4px;
}

.form-block .lpbb-form-content .wpcf7 .wpcf7-form.invalid .wpcf7-response-output {
  color: #f33;
  border-color: #f33;
  background: #fbeff3;
}

.form-block .lpbb-form-content .wpcf7 .wpcf7-form.sent .wpcf7-response-output {
  color: #204b61;
  border-color: #b2d0f8;
  background: #e1ecfc;
}

.form-block.design-custom--off .btn-lpbb.lpbb-form-submit {
  background-color: #000;
}

.form-block.design-custom--off .btn-lpbb.lpbb-form-submit:not(.js-disabled):hover {
  background: #666;
}

.block-editor-page .form-block .lpbb-form-submit:active {
  pointer-events: none;
}

.lpbb-form-custom > p + p {
  margin-top: 1.5em;
}

.lpbb-form-custom .wpcf7-list-item,
.lpbb-form-custom label {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.lpbb-form-custom .wpcf7-list-item {
  margin: 0;
}

.lpbb-form-custom .wpcf7-list-item:first-child {
  margin-top: 1.4em;
}

.lpbb-form-custom .wpcf7-list-item {
  margin-bottom: 1.4em;
}

.lpbb-form-custom label {
  cursor: pointer;
}

.lpbb-form-custom [type="radio"],
.lpbb-form-custom [type="checkbox"] {
  position: absolute;
  left: -9999px;
}

.lpbb-form-custom [type="radio"] + .wpcf7-list-item-label,
.lpbb-form-custom [type="checkbox"] + .wpcf7-list-item-label {
  position: relative;
  padding-left: 30px;
  line-height: 20px;
}

.lpbb-form-custom [type="radio"] + .wpcf7-list-item-label::before,
.lpbb-form-custom [type="checkbox"] + .wpcf7-list-item-label::before,
.lpbb-form-custom [type="radio"] + .wpcf7-list-item-label::after,
.lpbb-form-custom [type="checkbox"] + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.lpbb-form-custom [type="radio"] + .wpcf7-list-item-label::before,
.lpbb-form-custom [type="radio"] + .wpcf7-list-item-label::after {
  border-radius: 50%;
}

.lpbb-form-custom [type="radio"] + .wpcf7-list-item-label::before,
.lpbb-form-custom [type="checkbox"] + .wpcf7-list-item-label::before {
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #eee;
  background-color: #f5f5f5;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.lpbb-form-custom [type="radio"] + .wpcf7-list-item-label::before {
  border-radius: 40px;
}

.lpbb-form-custom [type="radio"] + .wpcf7-list-item-label::after {
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  background: #55ccff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.lpbb-form-custom [type="radio"] + .wpcf7-list-item-label::after {
  border-radius: 20px;
}

.lpbb-form-custom [type="checkbox"] + .wpcf7-list-item-label::after {
  content: '';
  display: block;
  top: .5em;
  left: 3px;
  width: 15px;
  height: 8px;
  border-left: 4px solid #55ccff;
  border-bottom: 4px solid #55ccff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.lpbb-form-custom [type="radio"]:not(:checked) + .wpcf7-list-item-label::after,
.lpbb-form-custom [type="checkbox"]:not(:checked) + .wpcf7-list-item-label::after {
  opacity: 0;
  -webkit-transform: scale(0.01);
          transform: scale(0.01);
}

.lpbb-form-custom [type="radio"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.lpbb-form-custom [type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  -webkit-transform: scale(1) rotate(-45deg);
          transform: scale(1) rotate(-45deg);
}

.lpbb-form-custom [type="radio"]:focus + .wpcf7-list-item-label::before,
.lpbb-form-custom [type="checkbox"]:focus + .wpcf7-list-item-label::before {
  box-shadow: 0px 0px 5px #55ccff;
}

.lpbb-form-custom [type="radio"]:checked + .wpcf7-list-item-label::before,
.lpbb-form-custom [type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background: #fff;
}

.lpbb-form-custom .label-required {
  position: relative;
}

.lpbb-form-custom .label-required::before {
  content: "必須";
  padding: 3px 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  width: 50px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  background: #d43f3a;
  border: 1px solid #d43f3a;
  border-radius: 3px;
}

.lpbb-form-custom select {
  padding: .5em 1em;
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: #f5f5f5;
  vertical-align: middle;
  font-size: inherit;
  border: 1px solid #eee;
  border-radius: 4px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.lpbb-form-custom select::-ms-expand {
  display: none;
}

.lpbb-form-custom select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

/*----------------------------------
# Head Block
------------------------------------*/
.head-block .decoration--btm {
  display: inline-block;
}

.head-block .decoration--btm::after {
  content: "";
  margin: .5em auto 0;
  display: block;
  width: 50%;
  height: 2px;
  background: #d90000;
}

.head-block .decoration--top-btm {
  padding: .5em;
  display: inline-block;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.head-block .decoration--cross {
  position: relative;
  padding: 0.5em 1em;
  display: inline-block;
  border-top: solid 2px #000;
  border-bottom: solid 2px #000;
}

.head-block .decoration--cross:before, .head-block .decoration--cross:after {
  content: '';
  position: absolute;
  top: -.25em;
  width: 2px;
  height: calc(100% + .5em);
  background-color: #000;
}

.head-block .decoration--cross::before {
  left: .25em;
}

.head-block .decoration--cross::after {
  right: .25em;
}

.head-block .decoration--slash {
  position: relative;
  display: inline-block;
  padding: 0 1.5em;
}

.head-block .decoration--slash::before, .head-block .decoration--slash::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 1.5em;
  height: 2px;
  background-color: #000;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.head-block .decoration--slash::before {
  left: 0;
}

.head-block .decoration--slash::after {
  right: 0;
}

.head-block .decoration--endline {
  position: relative;
  display: inline-block;
  padding: 0 2em;
}

.head-block .decoration--endline::before, .head-block .decoration--endline::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 1.5em;
  height: 1px;
  background-color: #000;
}

.head-block .decoration--endline::before {
  left: 0;
}

.head-block .decoration--endline::after {
  right: 0;
}

/*----------------------------------
# Hero Block
------------------------------------*/
.hero-block {
  position: relative;
  padding: 0;
  height: 500px;
}

.editor-styles-wrapper .hero-block {
  padding: 0;
}

.hero-block .lpbb-hero-content {
  position: relative;
  height: 100%;
}

.hero-block .content-area {
  position: absolute;
  padding: 20px;
  display: inline-block;
  min-width: 240px;
}

.hero-block .content-area:not(.position--absolute) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hero-block .content-area > :first-child {
  margin-top: 0;
  padding-top: 0;
}

.hero-block .content-area > :last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-block .content-area *[class*="wp-block-"] {
  max-width: none;
}

.hero-block .content-area .lpbb-block-button {
  padding: 0;
}

/*----------------------------------
# List Block
------------------------------------*/
.list-block .lpbb-list-content {
  /* ノーマル表示 */
  /* アコーディオン表示 */
}

.list-block .lpbb-list-content .list-item {
  padding-left: 0;
  list-style: none;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (min-width: 601px) {
  .list-block .lpbb-list-content .list-item {
    font-size: 20px;
    font-size: 2rem;
  }
}

.list-block .lpbb-list-content .list-item__title,
.list-block .lpbb-list-content .list-item__content {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.list-block .lpbb-list-content .list-item__title p,
.list-block .lpbb-list-content .list-item__content p {
  line-height: 1.6;
}

.list-block .lpbb-list-content .list-item__title > *,
.list-block .lpbb-list-content .list-item__content > * {
  margin-top: 0;
}

.list-block .lpbb-list-content .list-item__title *:last-child,
.list-block .lpbb-list-content .list-item__content *:last-child {
  margin-bottom: 0;
}

.list-block .lpbb-list-content .list-item__title > i,
.list-block .lpbb-list-content .list-item__content > i {
  margin: 0 .4em 0 0;
  -webkit-align-self: start;
              -ms-grid-row-align: start;
          align-self: start;
  color: inherit;
  font-size: 1.6em;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}

.list-block .lpbb-list-content .list-item__title {
  margin-bottom: 1em;
}

.list-block .lpbb-list-content .list-item__title + .list_item__title {
  margin-top: 15px;
}

@media screen and (min-width: 601px) {
  .list-block .lpbb-list-content .list-item__title + .list_item__title {
    margin-top: 30px;
  }
}

.list-block .lpbb-list-content .list-item__content {
  margin-bottom: 2em;
  padding-left: 2.4em;
}

.list-block .lpbb-list-content .has-title-bg .list-item__content {
  padding: 1em;
}

.list-block .lpbb-list-content .list-accordion .list-item__title {
  position: relative;
  margin-bottom: 0;
  padding: 15px calc(1.6em + 15px) 15px 15px;
  font-weight: normal;
  background: #e2e2e2;
  -webkit-transition: box-shadow ease-in-out .3s;
  transition: box-shadow ease-in-out .3s;
}

.list-block .lpbb-list-content .list-accordion .list-item__title::after {
  position: absolute;
  top: 50%;
  right: 7.5px;
  margin-top: -.5em;
  content: "\ff0b";
  font-size: 1.6em;
  font-family: Arial;
  font-weight: normal;
  line-height: 1;
  -webkit-transition: ease .3s;
  transition: ease .3s;
}

.list-block .lpbb-list-content .list-accordion .list-item__title:not(.js-toggle--open) + .list-item__content + .list-item__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
}

.list-block .lpbb-list-content .list-accordion .list-item__title.js-toggle--open::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.list-block .lpbb-list-content .list-accordion .list-item__title:hover, .list-block .lpbb-list-content .list-accordion .list-item__title.js-toggle--open {
  cursor: pointer;
  box-shadow: inset 0 0 0 99999px rgba(0, 0, 0, 0.15);
}

.list-block .lpbb-list-content .list-accordion .list-item__content {
  margin: 0;
  padding: 1em;
  display: none;
  border-style: solid;
  border-color: #e2e2e2;
  border-width: 0 2px 2px 2px;
}

/*----------------------------------
# Map Block
------------------------------------*/
.map-block .lpbb-map-container {
  margin: 0 auto;
}

.map-block .lpbb-map-container .lpbb-map {
  width: 100%;
  height: 400px;
}

.map-block .lpbb-map-container .map-content {
  padding: 40px;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.map-block .lpbb-map-container .map-content *:first-child {
  margin-top: 0;
}

.map-block .lpbb-map-container .map-content *:last-child {
  margin-bottom: 0;
}

.map-block.format--map-content.layout--vertical .lpbb-map {
  width: 100% !important;
}

.map-block.format--map-content.layout--vertical.alignfull .map-content {
  padding-right: 20px;
  padding-left: 20px;
}

.map-block .gm-style-iw.gm-style-iw-c {
  padding: 15px 12px 12px 12px !important;
}

.map-block .gm-style-iw-d {
  overflow: auto !important;
}

@media screen and (min-width: 880px) {
  .map-block.format--map-content.layout--horizontal .lpbb-map-container {
    -webkit-display: flex;
    display: -webkit-box;
    display: flex;
  }
  .map-block.format--map-content.layout--horizontal .map-content {
    -webkit-flex: 1;
    -webkit-box-flex: 1;
            flex: 1;
  }
  .map-block.format--map-content.layout--horizontal .map-content:not(.has-bg--color) {
    padding: 0 0 0 40px;
  }
}

@media screen and (max-width: 880px) {
  .map-block.format--map-content.layout--horizontal .lpbb-map,
  .map-block.format--map-content.layout--horizontal .map-content {
    width: 100% !important;
  }
  .map-block.format--map-content.layout--horizontal .map-content:not(.has-bg--color) {
    padding: 40px 0;
  }
  .map-block.format--map-content.layout--vertical .lpbb-map-container {
    width: 100% !important;
  }
}

/*----------------------------------
# Pricing Table Block
------------------------------------*/
.pricing-block .pricing-table {
  overflow: hidden;
  margin: 0 0 40px;
}

.pricing-block .pricing-table .pricing-table-header {
  overflow: hidden;
  padding: 40px 15px 0 15px;
  text-align: center;
  background: #337ab7;
}

.pricing-block .pricing-table .pricing-table-header .header-title,
.pricing-block .pricing-table .pricing-table-header .header-subtitle {
  margin: 0;
  color: #fff;
}

.pricing-block .pricing-table .pricing-table-header .header-figure i {
  margin: 16px;
  color: #fff;
  font-size: 47px;
  font-size: 4.7rem;
}

.pricing-block .pricing-table .data-price .price-main {
  font-size: 40px;
  font-size: 4rem;
  font-weight: 900;
}

.pricing-block .pricing-table .data-price .price-main .price-num {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pricing-block .pricing-table .data-price .price-main .price-unit {
  margin-left: 5px;
  font-size: .5em;
}

.pricing-block .pricing-table .data-price .price-sub {
  font-weight: 800;
}

.pricing-block .pricing-table .pricing-table-data {
  margin: 0;
  padding: 0;
}

.pricing-block .pricing-table .pricing-table-data li {
  margin: 0 auto;
  padding: 15px;
  text-align: center;
  list-style: none;
}

.pricing-block .pricing-table .pricing-table-data li:nth-of-type(2n) {
  background: #F1F4F5;
}

.pricing-block .pricing-table .pricing-table-footer {
  padding: 15px;
}

.pricing-block .pricing-table .pricing-table-footer .pricing-table-note.has-bg {
  padding: 15px;
}

.pricing-block .pricing-table .pricing-table-footer .button-area {
  text-align: center;
}

.pricing-block .pricing-table .pricing-table-footer .button-area .btn-lpbb {
  margin: 15px 0;
  padding: 15px 10px;
  min-width: 200px;
}

.pricing-block.design-custom--off .pricing-table {
  background: #fff;
  box-shadow: 0px 4px 8px 1px #eee;
}

.pricing-block.design-custom--off .pricing-table .pricing-table-header {
  padding: 15px;
  text-align: center;
  background: #337ab7;
}

.pricing-block.design-custom--off .pricing-table .pricing-table-header .header-title,
.pricing-block.design-custom--off .pricing-table .pricing-table-header .header-subtitle {
  color: #fff;
}

.pricing-block.design-custom--off .pricing-table .pricing-table-data {
  text-align: center;
}

.pricing-block.design-custom--off .pricing-table .pricing-table-footer {
  padding: 15px;
}

/*----------------------------------
# Slider Block
------------------------------------*/
.slider-block .swiper-container {
  width: 100%;
  height: 100%;
}

.slider-block .swiper-container .slide-item > * {
  padding: 0;
}

.slider-block .swiper-pagination-bullets,
.slider-block .swiper-pagination-bullets .swiper-pagination-bullet,
.slider-block .swiper-button-prev,
.slider-block .swiper-button-next {
  font-size: 1px;
  line-height: 1;
}

.slider-block .swiper-button-prev,
.slider-block .swiper-button-next {
  display: none;
  text-align: center;
  stroke: none;
  stroke-width: 0;
  background-image: none !important;
}

.slider-block .swiper-button-prev svg,
.slider-block .swiper-button-next svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65%;
  height: 65%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  fill: #fff;
}

.slider-block .swiper-button-prev:hover,
.slider-block .swiper-button-prev:hover svg,
.slider-block .swiper-button-next:hover,
.slider-block .swiper-button-next:hover svg {
  opacity: .8;
}

.slider-block .swiper-button-prev.swiper-button-disabled,
.slider-block .swiper-button-prev.swiper-button-disabled svg,
.slider-block .swiper-button-next.swiper-button-disabled,
.slider-block .swiper-button-next.swiper-button-disabled svg {
  opacity: .5;
}

.slider-block .swiper-button-prev.has-navigation--bg svg,
.slider-block .swiper-button-next.has-navigation--bg svg {
  width: 50%;
  height: 50%;
}

.slider-block .swiper-container-initialized .swiper-button-prev,
.slider-block .swiper-container-initialized .swiper-button-next {
  display: block;
}

.slider-block .swiper-container-vertical .swiper-button-prev,
.slider-block .swiper-container-vertical .swiper-button-next {
  left: 50%;
  margin: 0;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}

.slider-block .swiper-container-vertical .swiper-button-prev {
  top: 0;
}

.slider-block .swiper-container-vertical .swiper-button-next {
  top: auto;
  bottom: 0;
}

.slider-block .swiper-container-vertical .swiper-button-prev.has-navigation--bg.has-navigation--radius {
  top: 10px;
}

.slider-block .swiper-container-vertical .swiper-button-next.has-navigation--bg.has-navigation--radius {
  bottom: 10px;
}

.slider-block .swiper-container-horizontal .swiper-button-prev.has-navigation--bg:not(.has-navigation--radius) {
  left: 0;
}

.slider-block .swiper-container-horizontal .swiper-button-next.has-navigation--bg:not(.has-navigation--radius) {
  right: 0;
}

.slider-block .swiper-pagination.swiper-pagination-fraction {
  bottom: 0;
  padding: 0 10px;
}

.slider-block .align--left {
  text-align: left;
}

.slider-block .align--center {
  text-align: center;
}

.slider-block .align--right {
  text-align: right;
}

/*----------------------------------
# SNS Block
------------------------------------*/
.lpbb-block.sns-block .lpbb-sns-btn-group {
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.lpbb-block.sns-block .lpbb-sns-btn-wrap {
  margin-right: -5px;
  margin-left: -5px;
  padding: 0;
  font-size: 0;
}

.lpbb-block.sns-block .lpbb-sns-btn {
  padding: 5px;
  display: inline-block;
  vertical-align: top;
}

.lpbb-block.sns-block .lpbb-sns-btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  -webkit-transition: ease .3s;
  transition: ease .3s;
}

.lpbb-block.sns-block .lpbb-sns-btn a > i {
  vertical-align: middle;
  line-height: inherit;
}

.sns-btn--mono .lpbb-sns-btn a {
  background: rgba(0, 0, 0, 0.15);
}

.sns-btn--color .lpbb-sns-btn a:hover {
  opacity: .8;
}

/* facebook */
.sns-btn--color .sns-btn-facebook > a,
.sns-btn--mono .sns-btn-facebook > a:hover {
  background-color: #315096;
}

/* twitter */
.sns-btn--color .sns-btn-twitter > a,
.sns-btn--mono .sns-btn-twitter > a:hover {
  background-color: #55acee;
}

/* hatena */
.sns-btn--color .sns-btn-hatena > a,
.sns-btn--mono .sns-btn-hatena > a:hover {
  background-color: #008fde;
}

/* feedly */
.sns-btn--color .sns-btn-feedly > a,
.sns-btn--mono .sns-btn-feedly > a:hover {
  background-color: #6cc655;
}

/* line */
.sns-btn--color .sns-btn-line > a,
.sns-btn--mono .sns-btn-line > a:hover {
  background-color: #00c300;
}

/* rss */
.sns-btn--color .sns-btn-rss > a,
.sns-btn--mono .sns-btn-rss > a:hover {
  background-color: #ff8c00;
}

/* google-plus */
.sns-btn--color .sns-btn-google-plus > a,
.sns-btn--mono .sns-btn-google-plus > a:hover {
  background-color: #dd4b39;
}

/* Pocket */
.sns-btn--color .sns-btn-pocket > a,
.sns-btn--mono .sns-btn-pocket > a:hover {
  background-color: #EE4056;
}

/*----------------------------------
# Tab Block
------------------------------------*/
.tab-block {
  /* tab */
  /* hide radio buttons */
  /* tab content */
  /* current tab */
  /* current tab content */
}

.tab-block .tabs {
  margin: 60px auto;
  width: 100%;
  background: #fff;
}

@media screen and (min-width: 880px) {
  .tab-block .tabs {
    -webkit-display: flex;
    display: -webkit-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.tab-block .tabs.has-shadow {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.tab-block .tab-item {
  padding: 15px 10px;
  width: 100%;
  display: block;
  color: #333;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 800;
  border-bottom: 1px solid #59D4E8;
  background: #e5e5e5;
  -webkit-transition: ease .3s;
  transition: ease .3s;
}

@media screen and (min-width: 880px) {
  .tab-block .tab-item {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    border-width: 3px;
  }
}

@media screen and (max-width: 880px) {
  .tab-block .tab-item:last-of-type {
    border-radius: 0 !important;
  }
}

.tab-block .tab-item:hover {
  opacity: .7;
}

.tab-block input[name="tab-item"] {
  display: none;
}

.tab-block .tab-content {
  overflow: hidden;
  clear: both;
  padding: 30px 20px;
  display: none;
  width: 100%;
}

@media screen and (min-width: 880px) {
  .tab-block .tab-content {
    padding: 40px 20px;
  }
}

.tab-block .tabs input:checked + .tab-item {
  background-color: #59D4E8;
  color: #fff;
}
