/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*!
 * File Name: lp.css 
 * Author: Kazuhiro Nigara
 * Description: CSS for Landing page
 * Version: 1.0.0
 * License: MIT License
 * License URI: http://opensource.org/licenses/mit-license.php
 */
/* common
--------------------------------------------------------- */
html {
  font-size: 0.78125vw;
}

@media screen and (min-width: 1536px) {
  html {
    font-size: 75%;
  }
}

body {
  margin: 0;
  background-color: #fff;
  color: #333;
  font-size: 1.4rem;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  vertical-align: middle;
}

@media screen and (max-width: 560px) {
  html {
    font-size: 2.66667vw;
  }
  body {
    font-size: 1.6rem;
  }
}

/* common for LP
--------------------------------------------------------- */
.lp-c-line {
  height: 1px;
  margin: 0;
  border: none;
  background-color: #333;
}

.lp-c-button {
  display: inline-block;
  width: auto;
  margin: 0 ;
  padding: 0;
  border: 0;
  border-radius: 100px;
  background-color: #333;
  color: #FFF;
  font-weight: bold;
  cursor: pointer;
  overflow: visible;
  line-height: 1.1;
}

.lp-c-button--large {
  padding: 1.25vw 3.125vw;
  font-size: 2rem;
	margin-bottom: 10px;
}

.lp-c-button--middle {
  padding: 1.09375vw 2.5vw;
  font-size: 2.4rem;
}

.lp-c-button--small {
  padding: 0.9375vw 1.5625vw;
  font-size: 1.6rem;
}

.lp-c-button:hover {
  opacity: 0.7;
}

@media screen and (max-width: 560px) {
  .lp-c-button--large {
    padding: 3.73333vw 4.26667vw;
    font-size: 2rem;
  }
  .lp-c-button--middle {
    padding: 3.2vw 3.73333vw;
    font-size: 1.3rem;
  }
  .lp-c-button--small {
    padding: 3.2vw 3.73333vw;
    font-size: 1.3rem;
  }
}

/* header
--------------------------------------------------------- */
.lp-sec-header > .lp-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}

.lp-sec-header > .lp-block .lp-logo {
  margin-right: 20px;
}

.lp-sec-header > .lp-block .lp-logo img {
  width: 240px;
  height: 27px;
  -o-object-fit: cover;
     object-fit: cover;
}

.lp-sec-header > .lp-block .lp-logo2 img {
  width: 500px;
  height: 27px;
  -o-object-fit: cover;
     object-fit: cover;
}

.lp-sec-header > .lp-block .lp-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;	
  color:#F05407;	
}

.lp-sec-header > .lp-block .lp-title .span{
	color: black;
}


@media screen and (max-width: 560px) {
  .lp-sec-header > .lp-block {
    padding: 5px;
  }
  .lp-sec-header > .lp-block .lp-logo {
    margin-right: 5px;
  }
  .lp-sec-header > .lp-block .lp-logo img {
    width: 240px;
    height: 27px;
  }
	
 .lp-sec-header > .lp-block .lp-logo2 img {
    width: 500px;
    height: 27px;
  }
	
  .lp-sec-header > .lp-block .lp-title {
    font-size: 12px;
  }
}

/* band
   bandArrow
--------------------------------------------------------- */
.lp-sec-band > .lp-block {
  padding: 1.125vw;
  background-color: #333;
  color: #fff;
}

.lp-sec-band > .lp-block > .lp-title {
  font-size: 4.8rem;
   font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.lp-sec-band > .lp-block > .lp-text {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.lp-sec-band > .lp-block > .lp-button {
  margin-top: 2.4rem;
  text-align: center;
}

.lp-sec-band--arrow > .lp-block {
  position: relative;
}

.lp-sec-band--arrow > .lp-block::after {
  position: absolute;
  color: #333;
  font-family: 'Material Icons';
  font-size: 26rem;
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  text-align: center;
  content: "arrow_drop_down";
  right: 0;
  bottom: -9.375vw;
  left: 0;
}

@media screen and (max-width: 560px) {
  .lp-sec-band > .lp-block {
    padding: 6.4vw;
  }
  .lp-sec-band > .lp-block > .lp-title {
    font-size: 2.3rem;
    text-align: center;
  }
  .lp-sec-band > .lp-block > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
  }
  .lp-sec-band > .lp-block > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
  .lp-sec-band--arrow > .lp-block::after {
    font-size: 16rem;
    bottom: -15.33333vw;
  }
}

/* BigCenter
   BigLeft
   BigRight
   BigText
--------------------------------------------------------- */
.lp-sec-big {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12.625vw 5vw 15vw 15vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.lp-sec-big > .lp-block {
  width: 60%;
}

.lp-sec-big--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lp-sec-big--center > .lp-block > .lp-title {

	font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.lp-sec-big--center > .lp-block > .lp-text {

	margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.lp-sec-big--center > .lp-block > .lp-button {
  margin-top: 2.4rem;
  text-align: center;
}

.lp-sec-big--left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.lp-sec-big--left > .lp-block > .lp-title img{
  width: 720px;
  height: 360px;
}

.lp-sec-big--left > .lp-block > .lp-text {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
}

.lp-sec-big--left > .lp-block > .lp-button {
  margin-top: 2.4rem;
  text-align: left;
}

.lp-sec-big--right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.lp-sec-big--right > .lp-block > .lp-title {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.3;
}

.lp-sec-big--right > .lp-block > .lp-text {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
}

.lp-sec-big--right > .lp-block > .lp-button {
  margin-top: 2.4rem;
  text-align: left;
}

.lp-sec-big--text {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 7.8125vw;
  padding-bottom: 7.8125vw;
}

.lp-sec-big--text > .lp-block {
  width: 90%;
}

.lp-sec-big--text > .lp-block > .lp-title {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.3;
}

.lp-sec-big--text > .lp-block > .lp-text {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
}

.lp-sec-big--text > .lp-block > .lp-button {
  margin-top: 2.4rem;
  text-align: center;
}

@media screen and (max-width: 560px) {
  .lp-sec-big {
    padding: 17.06667vw 6.4vw;
  }
  .lp-sec-big > .lp-block {
    width: 100%;
  }
  .lp-sec-big--center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .lp-sec-big--center > .lp-block > .lp-title {
    font-size: 2.3rem;
    text-align: center;
  }
  .lp-sec-big--center > .lp-block > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
  }
  .lp-sec-big--center > .lp-block > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
  .lp-sec-big--left > .lp-block > .lp-title {
    font-size: 2.3rem;
    text-align: left;
  }
  .lp-sec-big--left > .lp-block > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: left;
  }
  .lp-sec-big--left > .lp-block > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
  .lp-sec-big--right > .lp-block > .lp-title {
    font-size: 2.3rem;
    text-align: left;
  }
  .lp-sec-big--right > .lp-block > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: left;
  }
  .lp-sec-big--right > .lp-block > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
  .lp-sec-big--text > .lp-block > .lp-title {
    font-size: 2.3rem;
    text-align: left;
  }
  .lp-sec-big--text > .lp-block > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: left;
  }
  .lp-sec-big--text > .lp-block > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
}

.lp-sec-big2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12.625vw 5vw 15vw 15vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.lp-sec-big2 > .lp-block {
  width: 60%;
}

.lp-sec-big--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lp-sec-big2--center > .lp-block > .lp-title {

	font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.lp-sec-big2--center > .lp-block > .lp-text {

	margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.lp-sec-big2--center > .lp-block > .lp-button {
  margin-top: 2.4rem;
  text-align: center;
}

.lp-sec-big2--left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.lp-sec-big2--left > .lp-block > .lp-title img{
  width: 720px;
  height: 360px;
}

.lp-sec-big2--left > .lp-block > .lp-text {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
}

.lp-sec-big2--left > .lp-block > .lp-button {
  margin-top: 2.4rem;
  text-align: left;
}

.lp-sec-big2--right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.lp-sec-big2--right > .lp-block > .lp-title {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.3;
}

.lp-sec-big2--right > .lp-block > .lp-text {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
}

.lp-sec-big2--right > .lp-block > .lp-button {
  margin-top: 2.4rem;
  text-align: left;
}

.lp-sec-big2--text {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 7.8125vw;
  padding-bottom: 7.8125vw;
}

.lp-sec-big2--text > .lp-block {
  width: 90%;
}

.lp-sec-big2--text > .lp-block > .lp-title {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.3;
}

.lp-sec-big2--text > .lp-block > .lp-text {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
}

.lp-sec-big2--text > .lp-block > .lp-button {
  margin-top: 2.4rem;
  text-align: center;
}

@media screen and (max-width: 560px) {
  .lp-sec-big2 {
    padding: 17.06667vw 6.4vw;
  }
  .lp-sec-big2 > .lp-block {
    width: 100%;
  }
  .lp-sec-big2--center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .lp-sec-big2--center > .lp-block > .lp-title {
    font-size: 2.3rem;
    text-align: center;
  }
  .lp-sec-big2--center > .lp-block > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
  }
  .lp-sec-big2--center > .lp-block > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
  .lp-sec-big2--left > .lp-block > .lp-title {
    font-size: 2.3rem;
    text-align: left;
  }
  .lp-sec-big2--left > .lp-block > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: left;
  }
  .lp-sec-big2--left > .lp-block > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
  .lp-sec-big2--right > .lp-block > .lp-title {
    font-size: 2.3rem;
    text-align: left;
  }
  .lp-sec-big2--right > .lp-block > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: left;
  }
  .lp-sec-big2--right > .lp-block > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
  .lp-sec-big2--text > .lp-block > .lp-title {
    font-size: 2.3rem;
    text-align: left;
  }
  .lp-sec-big2--text > .lp-block > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: left;
  }
  .lp-sec-big2--text > .lp-block > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
}


/* ImageCenter
   ImageLeft
   ImageRight
--------------------------------------------------------- */
.lp-sec-image > .lp-block {
  padding: 5vw;
}

.lp-sec-image > .lp-block > .lp-title {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.lp-sec-image > .lp-block > .lp-text {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.lp-sec-image > .lp-block > .lp-button {
  margin-top: 2.4rem;
  text-align: center;
}

.lp-sec-image > .lp-block > .lp-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4rem;
}

.lp-sec-image > .lp-block > .lp-item .lp-item__img {
  min-height: 0%;
}

.lp-sec-image > .lp-block > .lp-item .lp-item__img img {
  width: 40.625vw;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.lp-sec-image--center > .lp-block > .lp-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.lp-sec-image--center > .lp-block > .lp-item .lp-item__img {
  text-align: center;
}

.lp-sec-image--center > .lp-block > .lp-item .lp-item__contents {
  margin-top: 2.4rem;
}

.lp-sec-image--center > .lp-block > .lp-item .lp-item__contents > .lp-title {
 padding-left: 5rem; 
 font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.lp-sec-image--center > .lp-block > .lp-item .lp-item__contents > .lp-text {
  margin-top: 1.6rem;
  padding-left: 5rem;
 	font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.lp-sec-image--center > .lp-block > .lp-item .lp-item__contents > .lp-button {
  margin-top: 2.4rem;
  text-align: center;
}

.lp-sec-image--left > .lp-block > .lp-item {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.lp-sec-image--left > .lp-block > .lp-item .lp-item__img {
  margin-right: 2.5vw;
}

.lp-sec-image--left > .lp-block > .lp-item .lp-item__contents > .lp-title {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.3;
}

.lp-sec-image--left > .lp-block > .lp-item .lp-item__contents > .lp-text {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
}

.lp-sec-image--left > .lp-block > .lp-item .lp-item__contents > .lp-button {
  margin-top: 2.4rem;
  text-align: left;
}

.lp-sec-image--right > .lp-block > .lp-item {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.lp-sec-image--right > .lp-block > .lp-item .lp-item__img {
  margin-left: 2.5vw;
}

.lp-sec-image--right > .lp-block > .lp-item .lp-item__contents > .lp-title {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.3;
}

.lp-sec-image--right > .lp-block > .lp-item .lp-item__contents > .lp-text {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
}

.lp-sec-image--right > .lp-block > .lp-item .lp-item__contents > .lp-button {
  margin-top: 2.4rem;
  text-align: left;
}

@media screen and (max-width: 560px) {
  .lp-sec-image > .lp-block {
    padding: 6.4vw;
  }
  .lp-sec-image > .lp-block > .lp-title {
    font-size: 2.3rem;
    text-align: center;
  }
  .lp-sec-image > .lp-block > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
  }
  .lp-sec-image > .lp-block > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
  .lp-sec-image > .lp-block > .lp-item .lp-item__img img {
    width: 80%;
  }
  .lp-sec-image--center > .lp-block > .lp-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lp-sec-image--center > .lp-block > .lp-item .lp-item__contents {
    margin-top: 1.6rem;
  }
  .lp-sec-image--center > .lp-block > .lp-item .lp-item__contents > .lp-title {
    font-size: 2.3rem;
    text-align: center;
  }
  .lp-sec-image--center > .lp-block > .lp-item .lp-item__contents > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
  }
  .lp-sec-image--center > .lp-block > .lp-item .lp-item__contents > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
  .lp-sec-image--left > .lp-block > .lp-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lp-sec-image--left > .lp-block > .lp-item .lp-item__img {
    margin-right: 0;
    text-align: center;
  }
  .lp-sec-image--left > .lp-block > .lp-item .lp-item__contents {
    margin-top: 1.6rem;
  }
  .lp-sec-image--left > .lp-block > .lp-item .lp-item__contents > .lp-title {
    font-size: 2.3rem;
    text-align: center;
  }
  .lp-sec-image--left > .lp-block > .lp-item .lp-item__contents > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: left;
  }
  .lp-sec-image--left > .lp-block > .lp-item .lp-item__contents > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
  .lp-sec-image--right > .lp-block > .lp-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lp-sec-image--right > .lp-block > .lp-item .lp-item__img {
    margin-left: 0;
    text-align: center;
  }
  .lp-sec-image--right > .lp-block > .lp-item .lp-item__contents {
    margin-top: 1.6rem;
  }
  .lp-sec-image--right > .lp-block > .lp-item .lp-item__contents > .lp-title {
    font-size: 2.3rem;
    text-align: center;
  }
  .lp-sec-image--right > .lp-block > .lp-item .lp-item__contents > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: left;
  }
  .lp-sec-image--right > .lp-block > .lp-item .lp-item__contents > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
}

/* FullImageCenter
   FullImageLeft
   FullImageRight
--------------------------------------------------------- */
.lp-sec-fullimage > .lp-block > .lp-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.lp-sec-fullimage > .lp-block > .lp-item .lp-item__img {
  min-height: 0%;
}

.lp-sec-fullimage > .lp-block > .lp-item .lp-item__img img {
  width: 42vw;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
	padding: 0 20px 10px;
}

.lp-sec-fullimage > .lp-block > .lp-item .lp-item__contents {
  padding: 0 3vw;
}

.lp-sec-fullimage--center {
  padding-bottom: 5vw;
}

.lp-sec-fullimage--center > .lp-block > .lp-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.lp-sec-fullimage--center > .lp-block > .lp-item .lp-item__img img {
  width: 100%;
}

.lp-sec-fullimage--center > .lp-block > .lp-item .lp-item__contents {
  margin-top: 2.4rem;
}

.lp-sec-fullimage--center > .lp-block > .lp-item .lp-item__contents > .lp-title {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.lp-sec-fullimage--center > .lp-block > .lp-item .lp-item__contents > .lp-text {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.lp-sec-fullimage--center > .lp-block > .lp-item .lp-item__contents > .lp-button {
  margin-top: 2.4rem;
  text-align: center;
}

.lp-sec-fullimage--left > .lp-block > .lp-item {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.lp-sec-fullimage--left > .lp-block > .lp-item .lp-item__contents > .lp-title {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.3;
}


.lp-sec-fullimage--left > .lp-block > .lp-item .lp-item__contents > .lp-text {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
}

.lp-sec-fullimage--left > .lp-block > .lp-item .lp-item__contents > .lp-button {
  margin-top: 2.4rem;
  text-align: center;
}

.lp-sec-fullimage--right > .lp-block > .lp-item {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.lp-sec-fullimage--right > .lp-block > .lp-item .lp-item__contents > .lp-title {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.3;
}

.lp-sec-fullimage--right > .lp-block > .lp-item .lp-item__contents > .lp-text {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
}

.lp-sec-fullimage--right > .lp-block > .lp-item .lp-item__contents > .lp-button {
  margin-top: 2.4rem;
  text-align: left;
}

@media screen and (max-width: 560px) {
  .lp-sec-fullimage > .lp-block > .lp-item .lp-item__img {
    text-align: center;
  }
  .lp-sec-fullimage > .lp-block > .lp-item .lp-item__img img {
    width: 100%;
  }
  .lp-sec-fullimage > .lp-block > .lp-item .lp-item__contents {
    padding: 0 6.4vw;
  }
  .lp-sec-fullimage--center {
    padding-bottom: 6.4vw;
  }
  .lp-sec-fullimage--center > .lp-block > .lp-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lp-sec-fullimage--center > .lp-block > .lp-item .lp-item__contents {
    margin-top: 1.6rem;
  }
  .lp-sec-fullimage--center > .lp-block > .lp-item .lp-item__contents > .lp-title {
    font-size: 2.3rem;
    text-align: center;
  }
  .lp-sec-fullimage--center > .lp-block > .lp-item .lp-item__contents > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
  }
  .lp-sec-fullimage--center > .lp-block > .lp-item .lp-item__contents > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
  .lp-sec-fullimage--left {
    padding-bottom: 6.4vw;
  }
  .lp-sec-fullimage--left > .lp-block > .lp-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lp-sec-fullimage--left > .lp-block > .lp-item .lp-item__contents {
    margin-top: 1.6rem;
  }
  .lp-sec-fullimage--left > .lp-block > .lp-item .lp-item__contents > .lp-title {
    font-size: 2.3rem;
    text-align: left;
  }
  .lp-sec-fullimage--left > .lp-block > .lp-item .lp-item__contents > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: left;
  }
  .lp-sec-fullimage--left > .lp-block > .lp-item .lp-item__contents > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
  .lp-sec-fullimage--right {
    padding-bottom: 6.4vw;
  }
  .lp-sec-fullimage--right > .lp-block > .lp-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lp-sec-fullimage--right > .lp-block > .lp-item .lp-item__contents {
    margin-top: 1.6rem;
  }
  .lp-sec-fullimage--right > .lp-block > .lp-item .lp-item__contents > .lp-title {
    font-size: 2.3rem;
    text-align: left;
  }
  .lp-sec-fullimage--right > .lp-block > .lp-item .lp-item__contents > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: left;
  }
  .lp-sec-fullimage--right > .lp-block > .lp-item .lp-item__contents > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
}

/* Inline2
   Inline2Arrow
   Inline3
   Inline3Arrow
   Inline4
   Inline4Arrow
   Inline5
   Inline5Arrow
   Inline2Circle
   Inline2CircleArrow
   Inline3Circle
   Inline3CircleArrow
   Inline4Circle
   Inline4CircleArrow
   Inline5Circle
   Inline5CircleArrow
--------------------------------------------------------- */
.lp-sec-inline > .lp-block {
  padding: 1vw 5vw;
}

.lp-sec-inline > .lp-block > .lp-title {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.lp-sec-inline > .lp-block > .lp-text {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.lp-sec-inline > .lp-block > .lp-button {
  margin-top: 2.4rem;
  text-align: center;
}

.lp-sec-inline > .lp-block > .lp-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 1rem auto 0;
}

.lp-sec-inline > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__img {
  text-align: center;
}

.lp-sec-inline > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.lp-sec-inline > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__img--circle img {
  border-radius: 100rem;
}

.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item {
  position: relative;
}

.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item::before {
  position: absolute;
  font-family: 'Material Icons';
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  content: "arrow_right";
}

.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item:first-child::before {
  content: "";
}

.lp-sec-inline--2 > .lp-block > .lp-list {
  width: 80%;
}

.lp-sec-inline--2 > .lp-block > .lp-list .lp-list__item > .lp-item {
  width: 31.25vw;
}

.lp-sec-inline--2 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__img--circle img {
  height: 31.25vw;
}

.lp-sec-inline--2 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents {
  margin-top: 1.6rem;
}

.lp-sec-inline--2 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-title {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.lp-sec-inline--2 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-text {
  margin-top: 1.2rem;
  font-size: 1.8rem;
  text-align: left;
  line-height: 1.5;
}

.lp-sec-inline--2 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-button {
  margin-top: 1.6rem;
  text-align: center;
}

.lp-sec-inline--2.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item::before {
  font-size: 16rem;
  top: 9.375vw;
  left: -10.9375vw;
}

.lp-sec-inline--3 > .lp-block > .lp-list {
  width: 90%;
}

.lp-sec-inline--3 > .lp-block > .lp-list .lp-list__item > .lp-item {
  width: 23.4375vw;
}

.lp-sec-inline--3 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__img--circle img {
  height: 23.4375vw;
}

.lp-sec-inline--3 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents {
  margin-top: 1.6rem;
}

.lp-sec-inline--3 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-title {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.lp-sec-inline--3 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-text {
  margin-top: 1.2rem;
  font-size: 1.8rem;
  text-align: left;
  line-height: 1.5;
}

.lp-sec-inline--3 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-button {
  margin-top: 1.6rem;
  text-align: center;
}

.lp-sec-inline--3.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item::before {
  font-size: 11rem;
  top: 7.8125vw;
  left: -7.03125vw;
}

.lp-sec-inline--4 > .lp-block > .lp-list {
  width: 100%;
}

.lp-sec-inline--4 > .lp-block > .lp-list .lp-list__item > .lp-item {
  width: 19.53125vw;
}

.lp-sec-inline--4 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__img--circle img {
  height: 19.53125vw;
}

.lp-sec-inline--4 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents {
  margin-top: 1.2rem;
}

.lp-sec-inline--4 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.lp-sec-inline--4 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-text {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.5;
}

.lp-sec-inline--4 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-button {
  margin-top: 1.2rem;
  text-align: center;
}

.lp-sec-inline--4.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item::before {
  font-size: 9.5rem;
  top: 6.25vw;
  left: -5.78125vw;
}

.lp-sec-inline--5 > .lp-block > .lp-list {
  width: 100%;
}

.lp-sec-inline--5 > .lp-block > .lp-list .lp-list__item > .lp-item {
  width: 15.625vw;
}

.lp-sec-inline--5 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__img--circle img {
  height: 15.625vw;
}

.lp-sec-inline--5 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents {
  margin-top: 1.2rem;
}

.lp-sec-inline--5 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.lp-sec-inline--5 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-text {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.5;
}

.lp-sec-inline--5 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-button {
  margin-top: 1.2rem;
  text-align: center;
}

.lp-sec-inline--5.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item::before {
  font-size: 7rem;
  top: 5.3125vw;
  left: -4.29688vw;
}

@media screen and (max-width: 560px) {
  .lp-sec-inline > .lp-block {
    padding: 6.4vw;
  }
  .lp-sec-inline > .lp-block > .lp-title {
    font-size: 2.3rem;
    text-align: center;
  }
  .lp-sec-inline > .lp-block > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
  }
  .lp-sec-inline > .lp-block > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
  .lp-sec-inline > .lp-block > .lp-list {
    margin: 2rem auto 0;
  }
  .lp-sec-inline > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__img {
    text-align: center;
  }
  .lp-sec-inline > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .lp-sec-inline--2 > .lp-block > .lp-list {
    width: 100%;
  }
  .lp-sec-inline--2 > .lp-block > .lp-list .lp-list__item > .lp-item {
    width: 40vw;
  }
  .lp-sec-inline--2 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__img--circle img {
    height: 40vw;
  }
  .lp-sec-inline--2 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents {
    margin-top: 0.8rem;
  }
  .lp-sec-inline--2 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-title {
    font-size: 1.9rem;
    text-align: center;
  }
  .lp-sec-inline--2 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-text {
    margin-top: 0.6rem;
    font-size: 1.3rem;
    text-align: left;
  }
  .lp-sec-inline--2 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-button {
    margin-top: 1.2rem;
    text-align: center;
  }
  .lp-sec-inline--2.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item::before {
    font-size: 7rem;
    top: 11.2vw;
    left: -13.33333vw;
  }
  .lp-sec-inline--3 > .lp-block > .lp-list, .lp-sec-inline--4 > .lp-block > .lp-list, .lp-sec-inline--5 > .lp-block > .lp-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .lp-sec-inline--3 > .lp-block > .lp-list .lp-list__item, .lp-sec-inline--4 > .lp-block > .lp-list .lp-list__item, .lp-sec-inline--5 > .lp-block > .lp-list .lp-list__item {
    margin: 4rem auto 0;
  }
  .lp-sec-inline--3 > .lp-block > .lp-list .lp-list__item:first-child, .lp-sec-inline--4 > .lp-block > .lp-list .lp-list__item:first-child, .lp-sec-inline--5 > .lp-block > .lp-list .lp-list__item:first-child {
    margin-top: 0;
  }
  .lp-sec-inline--3 > .lp-block > .lp-list .lp-list__item > .lp-item, .lp-sec-inline--4 > .lp-block > .lp-list .lp-list__item > .lp-item, .lp-sec-inline--5 > .lp-block > .lp-list .lp-list__item > .lp-item {
    width: 66.66667vw;
    margin: 0 auto;
  }
  .lp-sec-inline--3 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__img--circle img, .lp-sec-inline--4 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__img--circle img, .lp-sec-inline--5 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__img--circle img {
    height: 66.66667vw;
  }
  .lp-sec-inline--3 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents, .lp-sec-inline--4 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents, .lp-sec-inline--5 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents {
    margin-top: 0.8rem;
  }
  .lp-sec-inline--3 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-title, .lp-sec-inline--4 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-title, .lp-sec-inline--5 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-title {
    font-size: 1.9rem;
    text-align: center;
  }
  .lp-sec-inline--3 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-text, .lp-sec-inline--4 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-text, .lp-sec-inline--5 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-text {
    margin-top: 0.6rem;
    font-size: 1.3rem;
    text-align: left;
  }
  .lp-sec-inline--3 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-button, .lp-sec-inline--4 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-button, .lp-sec-inline--5 > .lp-block > .lp-list .lp-list__item > .lp-item .lp-item__contents > .lp-button {
    margin-top: 1.2rem;
    text-align: center;
  }
  .lp-sec-inline--3.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item, .lp-sec-inline--4.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item, .lp-sec-inline--5.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item {
    margin: 6.4rem auto 0;
  }
  .lp-sec-inline--3.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item::before, .lp-sec-inline--4.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item::before, .lp-sec-inline--5.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item::before {
    font-size: 8rem;
    text-align: center;
    content: "arrow_drop_down";
    top: -18.66667vw;
    right: 0;
    left: 0;
  }
  .lp-sec-inline--3.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item:first-child, .lp-sec-inline--4.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item:first-child, .lp-sec-inline--5.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item:first-child {
    margin-top: 0;
  }
  .lp-sec-inline--3.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item:first-child::before, .lp-sec-inline--4.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item:first-child::before, .lp-sec-inline--5.lp-sec-inline--arrow > .lp-block > .lp-list .lp-list__item:first-child::before {
    content: "";
  }
}

/* List
--------------------------------------------------------- */
.lp-sec-list > .lp-block {
  padding: 5vw;
}

.lp-sec-list > .lp-block > .lp-title {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.lp-sec-list > .lp-block > .lp-text {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.lp-sec-list > .lp-block > .lp-button {
  margin-top: 2.4rem;
  text-align: center;
}

.lp-sec-list > .lp-block > .lp-list {
  width: 80%;
  margin: 4rem auto 0;
}

.lp-sec-list > .lp-block > .lp-list > .lp-item {
  position: relative;
  margin-top: 1.6rem;
  padding-left: 3.90625vw;
  color: #333;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.3;
}

.lp-sec-list > .lp-block > .lp-list > .lp-item::before {
  position: absolute;
  margin-left: -3.90625vw;
  font-family: 'Material Icons';
  font-weight: bold;
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  content: "check";
}

@media screen and (max-width: 560px) {
  .lp-sec-list > .lp-block {
    padding: 6.4vw;
  }
  .lp-sec-list > .lp-block > .lp-title {
    font-size: 2.3rem;
    text-align: center;
  }
  .lp-sec-list > .lp-block > .lp-text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
  }
  .lp-sec-list > .lp-block > .lp-button {
    margin-top: 1.6rem;
    text-align: center;
  }
  .lp-sec-list > .lp-block > .lp-list {
    width: 100%;
    margin: 2rem auto 0;
  }
  .lp-sec-list > .lp-block > .lp-list > .lp-item {
    padding-left: 5.33333vw;
    font-size: 1.6rem;
  }
  .lp-sec-list > .lp-block > .lp-list > .lp-item::before {
    margin-left: -5.33333vw;
  }
}

/* footer
--------------------------------------------------------- */
.lp-sec-footer {
  background-color: #333;
}

.lp-sec-footer > .lp-block {
  padding: 16px;
  text-align: center;
}

.lp-sec-footer > .lp-block .lp-copyright {
  color: #fff;
  font-size: 16px;
}

@media screen and (max-width: 560px) {
  .lp-sec-footer > .lp-block {
    padding: 8px;
  }
  .lp-sec-footer > .lp-block .lp-copyright {
    font-size: 12px;
  }
}
