html {
  scroll-behavior: smooth;
}

body {
  background-color: #FFF;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  letter-spacing: 0.02rem;
  position: relative;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

table {
  border-spacing: 0;
}

textarea {
  resize: none;
}

button {
  cursor: pointer;
}

.marker {
  background-image: linear-gradient(#ffff00, #ffff00);
  background-size: 100% 40%;
  background-position: 0 100%;
  background-repeat: no-repeat;
  font-weight: bold;
}

.btn1 {
  background-image: linear-gradient(to right, #FFC837 0%, #FF8008 51%, #FFC837 100%);
  padding: 15px 60px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  border-radius: 40px;
  display: block;
  color: #fff;
}

.green-grad {
  background-image: linear-gradient(to right, #00CDAC 0%, #02AAB0 51%, #00CDAC 100%);
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  padding: 15px 40px;
}

.red-grad {
  background-image: linear-gradient(to right, #D31027 0%, #EA384D 51%, #D31027 100%);
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  padding: 15px 40px;
}

.btn1:hover,
.header-contact:hover {
  background-position: right center;
  text-decoration: none;
}

.telbtn:hover {
  text-decoration: none;
  opacity: 0.7;
}

.sp-layout {
  display: block;
}

.pc-layout {
  display: none;
}

@media screen and (960px <= width) {
  .sp-layout {
    display: none;
  }
  .pc-layout {
    display: block;
  }
}
.wrap1 {
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
}

/*************** header */
.header {
  width: 100%;
  height: 52px;
  background-color: #FFF;
  box-shadow: 0px 6px 6px -1px rgba(51, 51, 51, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.header-inner {
  padding: 12px 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-box > a,
.header-nav-list > li > a {
  text-decoration: none;
}

.logo-box {
  width: 132px;
}

.logo-box > a {
  display: block;
  width: auto;
}

.logo-box:active {
  opacity: 0.7;
}

@media screen and (960px <= width) {
  .header {
    width: 100%;
    height: 70px;
    background-color: #FFF;
    box-shadow: 0px 6px 6px -1px rgba(51, 51, 51, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }
  .logo-box {
    width: auto;
    max-width: 20%;
    height: 44px;
    display: flex;
    align-items: center;
  }
  .logo-box:hover {
    opacity: 0.7;
  }
}
@media screen and (1215px <= width) {
  .logo-box {
    max-width: 12%;
  }
}
.header-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background: #F5F5F5;
  transition: ease 0.4s;
}

@media screen and (960px <= width) {
  .header-nav {
    width: auto;
    height: auto;
    position: static;
    transform: initial;
    background-color: inherit;
    display: flex;
    justify-content: flex-end;
  }
}
.header-hamburger {
  width: 35px;
  height: 100%;
  padding: 0;
}

.sp-hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 15;
}

.sp-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333;
  position: relative;
  transition: ease 0.4s;
}

.sp-hamburger span:nth-child(1),
.sp-hamburger span:nth-child(3) {
  top: 0;
}

.sp-hamburger span:nth-child(2) {
  margin: 8px 0;
}

.header-nav.active {
  transform: translateX(0);
}

.sp-hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.sp-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.sp-hamburger.active span:nth-child(3) {
  top: -8px;
  transform: rotate(-45deg);
}

.header-nav-list {
  margin-top: 0;
  padding-top: 24%;
}

.header-nav-list > li:nth-of-type(n+5) {
  text-align: center;
}

.header-nav-list > li > a {
  color: #333;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.header-nav-list > li:last-child > a {
  margin-bottom: 0;
}

.header-nav-list > li > .header-contact {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  color: #FFF;
  width: 60%;
}

.fa-envelope {
  padding-right: 8px;
}

@media screen and (768px <= width < 960px) {
  .header-nav-list {
    margin-top: 0;
    padding-top: 12%;
  }
  .header-nav-list > li > .header-contact {
    width: 28%;
  }
}
@media screen and (960px <= width) {
  .header-nav-list {
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: inherit;
    padding-bottom: inherit;
    margin-top: 0;
  }
  .header-nav-list > li {
    margin-right: 45px;
    width: -moz-max-content;
    width: max-content;
  }
  .header-nav-list > li.link-btn {
    margin-right: 0;
    margin-left: 10px;
  }
  .header-nav-list > li:last-child {
    margin-right: 0;
  }
  .header-nav-list > li > a {
    width: 100%;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0;
  }
  .header-nav-list > li > a:not(.header-contact):hover {
    color: #ECA232;
  }
  .sp-hamburger {
    display: none;
  }
  .header-nav-list > li > .header-contact {
    display: block;
    width: 100%;
    padding: 5px 20px;
  }
  .fa-envelope {
    font-size: 1rem;
    padding-right: 5px;
  }
}
/*************** mainvisual */
.mainv-box {
  padding: 52px 0 2.1rem 0;
}
.mainv-box .mainv-inner .mainv-rightimg {
  width: 330px;
  margin: 0 auto;
}
.mainv-box .mainv-inner .mainv-rightimg img {
  width: 100%;
}
.mainv-box .mainv-inner .mainv-catch-box {
  color: #fff;
  width: 100%;
  font-size: 1.28rem;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.mainv-box .mainv-inner .mainv-catch-box .mainv-catch-big {
  text-align: center;
  padding: 0 5%;
}
.mainv-box .mainv-inner .mainv-catch-box .mainv-catch-big span {
  display: inline-block;
  background: #fff;
  color: #FF8008;
  font-weight: 500;
  padding: 0.3em 0.6em;
}
.mainv-box .mainv-inner .mainv-catch-box .mainv-catch-big span:first-child {
  margin-bottom: 0.5em;
}
.mainv-box .mainv-inner .mainv-catch-box .mainv-catch-logo {
  width: 60%;
  margin: 2em auto;
}
.mainv-box .mainv-inner .mainv-catch-box .mainv-catch-logo div {
  text-align: center;
  font-size: 1.43rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
  font-weight: bold;
}
.mainv-box .mainv-inner .mainv-catch-box .mainv-catch-logo img {
  width: 100%;
  margin: 0 auto;
}

.register-btn {
  border: none;
  outline: none;
  font-size: 1.22rem;
  width: 90%;
  margin: 0 5%;
}

.mainv-video-box {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  filter: brightness(25%);
}

.mainv-video {
  height: auto;
}

@media screen and (768px <= width < 960px) {
  .mainv-box {
    padding: 52px 0 2.5rem 0;
  }
  .mainv-box .mainv-inner .mainv-rightimg {
    width: 330px;
    margin: 0 auto;
  }
  .mainv-box .mainv-inner .mainv-rightimg img {
    width: 100%;
  }
  .mainv-box .mainv-inner .mainv-catch-box {
    font-size: 1.7rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .mainv-box .mainv-inner .mainv-catch-box .mainv-catch-big {
    text-align: center;
    padding: 0 5%;
  }
  .mainv-box .mainv-inner .mainv-catch-box .mainv-catch-big span {
    display: inline-block;
    background: #fff;
    color: #FF8008;
    margin-bottom: 0.5em;
  }
  .mainv-box .mainv-inner .mainv-catch-box .mainv-catch-logo {
    width: 90%;
    margin: 1em auto;
  }
  .mainv-box .mainv-inner .mainv-catch-box .mainv-catch-logo div {
    font-size: 1.5rem;
    margin-bottom: 0.8em;
  }
  .mainv-box .mainv-inner .mainv-catch-box .mainv-catch-logo img {
    width: 58%;
    margin: 0 auto;
  }
  .register-btn {
    width: 55%;
    margin: 0 auto;
  }
}
@media screen and (960px <= width) {
  .mainv-box {
    padding: 10.5em 0;
  }
  .mainv-box .mainv-inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mainv-box .mainv-inner .mainv-rightimg {
    width: 430px;
    margin: 0;
  }
  .mainv-box .mainv-inner .mainv-rightimg img {
    width: 100%;
  }
  .mainv-box .mainv-inner .mainv-catch-box {
    color: #fff;
    width: 100%;
    max-width: 500px;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 0;
  }
  .mainv-box .mainv-inner .mainv-catch-box .mainv-catch-big {
    text-align: left;
    padding: 0;
  }
  .mainv-box .mainv-inner .mainv-catch-box .mainv-catch-big span {
    padding: 0.3em 0.6em;
  }
  .mainv-box .mainv-inner .mainv-catch-box .mainv-catch-logo {
    width: 400px;
    margin: 1em 0;
  }
  .mainv-box .mainv-inner .mainv-catch-box .mainv-catch-logo div {
    font-size: 1.65rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5em;
  }
  .mainv-box .mainv-inner .mainv-catch-box .mainv-catch-logo img {
    width: 100%;
  }
  .register-btn {
    font-size: 1.5rem;
    width: 400px;
    margin: 0;
  }
  .mainv-video {
    width: 100%;
  }
}
@media screen and (1215px <= width) {
  .mainv-box {
    padding: 150px 0 100px;
  }
  .mainv-box .mainv-inner .mainv-rightimg {
    width: 800px;
  }
  .mainv-box .mainv-inner .mainv-rightimg img {
    width: 100%;
  }
  .mainv-box .mainv-inner .mainv-catch-box {
    max-width: 600px;
  }
  .mainv-box .mainv-inner .mainv-catch-box .mainv-catch-big {
    text-align: left;
  }
  .mainv-box .mainv-inner .mainv-catch-box .mainv-catch-big span {
    margin-bottom: 0.5em;
    padding: 0.3em 0.6em;
  }
  .mainv-box .mainv-inner .mainv-catch-box .mainv-catch-logo {
    margin: 1em 0;
  }
  .mainv-box .mainv-inner .mainv-catch-box .mainv-catch-logo div {
    font-size: 1.65rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5em;
  }
  .mainv-box .mainv-inner .mainv-catch-box .mainv-catch-logo img {
    width: 100%;
  }
  .register-btn {
    width: 400px;
    margin: 0;
  }
}
/*************** main */
.heading1 {
  font-size: 1.1rem;
  text-align: center;
  background: #000;
  color: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  position: relative;
}
.heading1:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 30px;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  bottom: -15px;
  right: calc(50% - 30px);
}

.content_wrapper1 {
  padding: 0;
}

.content_wrapper2 {
  padding: 8% 0;
}

@media screen and (960px <= width) {
  .content_wrapper1 {
    padding: 5% 0 0 0;
  }
  .content_wrapper2 {
    padding: 5% 0;
  }
  .heading1 {
    padding: 30px 0;
    border-radius: 5px;
  }
}
@media screen and (960px <= width) {
  .heading1 {
    width: 650px;
  }
}
/************************ #problem */
.problem-list {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.problem-list-item {
  width: 80%;
  display: flex;
  flex-direction: column;
  background: #FFF;
  text-align: center;
  margin: 0 auto 25px auto;
}
.problem-list-item .heading2 {
  color: #fff;
  padding: 15px 0;
}
.problem-list-item:first-child {
  background-image: url(../img/issue1.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  border-radius: 10px;
}
.problem-list-item:first-child .heading2 {
  border-radius: 0 0 10px 10px;
  background: rgb(255, 93, 93);
}
.problem-list-item:nth-child(2) {
  background-image: url(../img/issue2.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  border-radius: 10px;
}
.problem-list-item:nth-child(2) .heading2 {
  border-radius: 0 0 10px 10px;
  background: rgb(93, 117, 255);
}
.problem-list-item:last-child {
  background-image: url(../img/issue3.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  border-radius: 10px;
  margin-bottom: 0;
}
.problem-list-item:last-child .heading2 {
  border-radius: 0 0 10px 10px;
  background: rgb(255, 177, 93);
}

.heading2 {
  font-size: 1.25rem;
  font-weight: 500;
}

.problem-list-item .icon {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.problem-list-item .icon img {
  width: auto;
  height: 80px;
  margin: 30px auto;
}

@media screen and (768px <= width < 960px) {
  .problem-list {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
  }
  .problem-list-item {
    width: 32.2580645161%;
    margin: 0 auto;
  }
  .problem-list-item:first-child {
    border-radius: 10px 0 0 10px;
  }
  .problem-list-item:first-child .heading2 {
    border-radius: 0 0 0 10px;
  }
  .problem-list-item:nth-child(2) {
    border-radius: 0;
  }
  .problem-list-item:nth-child(2) .heading2 {
    border-radius: 0;
  }
  .problem-list-item:last-child {
    border-radius: 0 10px 10px 0;
  }
  .problem-list-item:last-child .heading2 {
    border-radius: 0 0 10px 0;
  }
}
@media screen and (960px <= width) {
  .problem-list {
    flex-direction: row;
    justify-content: space-around;
    margin-top: 30px;
    width: 800px;
  }
  .problem-list-item {
    width: 32%;
    margin: 0 auto;
    height: 400px;
  }
  .problem-list-item:first-child {
    background-image: url(../img/issue1.png);
    background-size: 100%;
    border-radius: 10px 0 0 10px;
  }
  .problem-list-item:first-child .heading2 {
    border-radius: 0 0 0 10px;
  }
  .problem-list-item:nth-child(2) {
    background-image: url(../img/issue2.png);
    background-size: 100%;
    border-radius: 0;
  }
  .problem-list-item:nth-child(2) .heading2 {
    border-radius: 0;
  }
  .problem-list-item:last-child {
    background-image: url(../img/issue3.png);
    background-size: 100%;
    border-radius: 0 10px 10px 0;
  }
  .problem-list-item:last-child .heading2 {
    border-radius: 0 0 10px 0;
  }
}
@media screen and (768px <= width < 960px) {
  .problem-list-item img {
    width: 20%;
    margin: 15px auto 30px auto;
  }
}
@media screen and (960px <= width) {
  .problem-list-item img {
    width: 30%;
    margin-bottom: 30px;
  }
  .problem-list-item:not(:last-child) img {
    margin: 50px auto 30px auto;
  }
  .problem-list-item:last-child img {
    margin-top: 20px;
  }
}
.bg-gray1 {
  background: #F5F5F5;
  position: relative;
}

.solution-box {
  width: 100%;
  height: auto;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-inner {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
}
.solution-inner span {
  color: #ff8400;
}

@media screen and (768px <= width < 960px) {
  .solution-box {
    margin-top: 40px;
  }
}
@media screen and (960px <= width) {
  .solution-box {
    margin-top: 55px;
  }
  .solution-inner {
    font-size: 1.2rem;
    margin-bottom: 100px;
  }
}
.t-big1 {
  font-size: 1.5rem;
}

.orange {
  color: #ff8400;
}

.f-bold {
  font-weight: 900;
}

.dots1 {
  background-image: radial-gradient(circle at center, #ff8400 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.2em;
}

@media screen and (960px <= width) {
  .t-big1 {
    font-size: 2rem;
  }
}
/*************************** #feature */
.inner_wrapper1 {
  padding-left: 4%;
  padding-right: 4%;
}

.heading3 {
  font-size: 2rem;
  padding-bottom: 0.3rem;
  text-align: center;
}

.heading-small1 {
  display: block;
  font-size: 0.8rem;
}

.white {
  color: #FFF;
}

.feature-list {
  margin-top: 20px;
}

.feature-list-item {
  margin: 1rem 0;
  padding: 6%;
  width: 100%;
}

.feature-list-item:last-child {
  margin-bottom: 0;
}

.feature-img1 {
  background: url(../img/feature-img1.jpg) no-repeat right center;
  background-size: cover;
}

.feature-img2 {
  background: url(../img/feature-img2.jpg) no-repeat right center;
  background-size: cover;
}

.feature-img3 {
  background: url(../img/feature-img3.jpg) no-repeat right center;
  background-size: cover;
}

.feature-img4 {
  background: url(../img/feature-img4.jpg) no-repeat right center;
  background-size: cover;
}

.heading4 {
  font-size: 1.25rem;
  padding: 0;
  position: relative;
  z-index: 1;
}

.bg-num {
  position: relative;
  color: #FFFFFF;
  text-shadow: 1px 1px 8px rgba(51, 51, 51, 0.4);
}

.text1 {
  margin-top: 1rem;
  font-size: 1rem;
}

.feature-list-item > .text1 {
  margin-top: 0.5rem;
  text-align: left;
}

.feature-text {
  color: #FFFFFF;
  text-shadow: 1px 1px 8px rgba(51, 51, 51, 0.4);
}

.feature-list2 {
  width: 100%;
  margin: 0 auto;
}
.feature-list2 .feature-list2-item {
  margin-bottom: 40px;
}
.feature-list2 .feature-list2-item img {
  width: 100%;
  margin-right: 0;
}
.feature-list2 .feature-list2-item .heading {
  display: block;
  align-items: flex-start;
  width: 100%;
}
.feature-list2 .feature-list2-item .heading .number {
  margin-right: 20px;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #000;
  color: #fff;
}
.feature-list2 .feature-list2-item .heading .number .point {
  font-size: 0.8rem;
  font-weight: bold;
  display: block;
}
.feature-list2 .feature-list2-item .heading .number .num {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}
.feature-list2 .feature-list2-item .heading .heading-text {
  font-size: 1.2rem;
  font-weight: bold;
  width: 100%;
  margin-top: 10px;
}
.feature-list2 .feature-list2-item .text {
  font-size: 1rem;
  margin-top: 30px;
}
.feature-list2 .feature-list2-item:nth-child(even) {
  flex-direction: row-reverse;
}
.feature-list2 .feature-list2-item:nth-child(even) img {
  margin-left: 0;
  margin-right: 0;
}

@media screen and (960px <= width) {
  .feature-list2 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .feature-list2 .feature-list2-item {
    display: flex;
    margin-bottom: 80px;
  }
  .feature-list2 .feature-list2-item img {
    width: 50%;
    margin-right: 50px;
  }
  .feature-list2 .feature-list2-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .feature-list2 .feature-list2-item:nth-child(even) img {
    margin-left: 50px;
    margin-right: 0;
  }
  .feature-list2 .feature-list2-item .heading {
    margin-top: 0;
    display: flex;
  }
  .feature-list2 .feature-list2-item .heading .number {
    margin-right: 30px;
    width: 100px;
    height: 100px;
  }
  .feature-list2 .feature-list2-item .heading .heading-text {
    width: auto;
  }
}
@media screen and (960px <= width) {
  .feature-list {
    width: 60%;
    margin: 40px auto 0 auto;
  }
  .feature-list-item {
    margin: 3rem 0;
    padding: 4%;
  }
  .bg-num {
    font-size: 1.8rem;
    padding-bottom: 2%;
  }
  .bg-num::before {
    top: -2vh;
    font-size: 4rem;
  }
  .text1 {
    font-size: 1.1rem;
    text-align: center;
  }
}
/*************************** #functions */
.functions-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.functions-list-item {
  text-align: center;
  width: calc(50% - 10px);
  height: auto;
  padding: 4%;
  margin-bottom: 4.6%;
  background-color: #FFF;
}

.functions-list-item:nth-of-type(even) {
  margin-left: 4.6%;
}

@media screen and (768px <= width < 960px) {
  .functions-list-item {
    width: calc(50% - 21px);
    padding: 4%;
    margin-bottom: 4.6%;
  }
  .functions-list-item:nth-of-type(even) {
    margin-left: 4.6%;
  }
}
@media screen and (960px <= width) {
  .functions-list {
    margin-top: 4%;
  }
  .functions-list-item {
    width: calc(33.3333333333% - 15px);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .functions-list-item:nth-of-type(even) {
    margin-left: 0;
  }
  .functions-list-item:nth-of-type(2),
  .functions-list-item:nth-of-type(5),
  .functions-list-item:nth-of-type(8) {
    margin-right: 2.3%;
    margin-left: 2.3%;
  }
}
@media screen and (1215px <= width) {
  .functions-list-item {
    width: calc(33.3333333333% - 33px);
    padding: 20px;
  }
  .functions-list-item:nth-of-type(even) {
    margin-left: 0;
  }
  .functions-list-item:nth-of-type(2),
  .functions-list-item:nth-of-type(5),
  .functions-list-item:nth-of-type(8) {
    margin-right: 2.8%;
    margin-left: 2.8%;
  }
}
.functions-heading {
  display: inline-block;
  font-size: 0.92rem;
  padding: 0 0 4% 0;
  color: #ff8400;
}

.functions-icon {
  font-size: 3rem;
  color: #333;
  padding: 12% 0;
}

.functions-text {
  font-size: 0.7rem;
  margin-bottom: 10px;
}

@media screen and (768px <= width < 960px) {
  .functions-icon {
    font-size: 4rem;
    padding: 10% 0;
  }
  .functions-heading {
    font-size: 1.2rem;
  }
  .functions-text {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
@media screen and (960px <= width) {
  .functions-heading {
    font-size: 1rem;
    padding: 0 0 4% 0;
  }
  .functions-icon {
    font-size: 2.5rem;
    padding: 4% 0;
  }
}
@media screen and (1215px <= width) {
  .functions-heading {
    font-size: 1.5rem;
    padding: 0 0 4% 0;
  }
  .functions-text {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .functions-icon {
    font-size: 4rem;
    padding: 8% 0;
  }
}
.bg-parallelogram1,
.bg-parallelogram2,
.bg-parallelogram3 {
  position: relative;
}

.bg-parallelogram1::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ff8400;
  z-index: -1;
}

/*********************** #price */
.price-table {
  margin: 30px auto 0 auto;
  width: 100%;
  border-radius: 3px;
}

.price-tr {
  font-size: 1rem;
  text-align: center;
}

.price-th,
.price-td {
  padding: 3% 0;
}

.price-th {
  font-weight: 900;
}

.price-td {
  font-weight: 500;
}

.price-tr .price-th,
.price-tr .price-td {
  background: #FFF;
}

.price-tr:first-child .price-th {
  background: #ff8400;
  color: #FFF;
  width: 50%;
}

.price-tr:first-child .price-th:first-child {
  border-right: 1px solid #fff;
}

.price-tr:nth-of-type(odd):not(:first-child) .price-th,
.price-tr:nth-of-type(odd):not(:first-child) .price-td {
  background: #FDF2DB;
}

.price-imgbox {
  margin-top: 30px;
}

@media screen and (768px <= width < 960px) {
  .price-text1 {
    margin: 1rem auto 0 auto;
  }
  .price-imgbox > img {
    width: 70%;
    height: auto;
    margin: 0 auto;
  }
}
@media screen and (960px <= width) {
  .price-heading,
  .price-table {
    font-size: 1.3rem;
  }
  .price-table {
    margin: 30px auto 0 auto;
    width: 100%;
    padding: 0 10%;
  }
  .price-tr {
    font-size: 1.2rem;
  }
  .price-imgbox {
    margin-top: 100px;
  }
  .price-imgbox > img {
    width: 42%;
    height: auto;
    margin: 0 auto;
  }
  .price-text1 {
    width: 54%;
    margin: 4% auto 0 auto;
    text-align: center;
  }
}
/*********************** #signup */
.bg-box1 {
  width: 100%;
  padding: 8%;
  background: url(../img/signup-bg.jpg) no-repeat center center;
  background-size: cover;
}

.signup-cont {
  padding: 15px;
  background: #FFF;
  border-radius: 5px;
}

.heading5 {
  font-size: 1.16rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
.heading5 span {
  font-size: 1rem;
}

.register-content {
  display: flex;
  justify-content: center;
  padding: 8% 0;
}

.contact-btn1 {
  padding: 0 0 2% 0;
}

@media screen and (960px <= width) {
  .bg-parallelogram2::after {
    height: 150%;
    bottom: -28%;
  }
  .bg-box1 {
    padding: 3%;
  }
  .signup-cont {
    width: 50%;
    margin: 0 auto;
    padding: 40px;
  }
  .heading5 {
    font-size: 1.54rem;
    margin-bottom: 30px;
  }
  .heading5 span {
    font-size: 1.7rem;
  }
  .contact-btn1 {
    padding: 0;
  }
}
@media screen and (1215px <= width) {
  .heading5 {
    font-size: 2rem;
  }
}
/*********************** #contact */
.bg-parallelogram3::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  top: 0;
  z-index: -2;
}

.forms-content {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.contact-forms {
  width: 100%;
}

.form-heading {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.contact-forms .form-label {
  display: block;
  margin-bottom: 12px;
}

.telbox {
  text-align: center;
  margin: 20px auto 30px auto;
  width: 90%;
}

.telbtn {
  border: none;
  background: #30AF93;
  display: inline-block;
  border-radius: 45px;
  padding: 10px 30px;
  color: #FFF;
  width: 100%;
}

.telbtn > a {
  color: #FFF;
  text-decoration: none;
}

.fa-phone {
  font-size: 1.2rem;
}

.telbtn-num {
  font-size: 1.2rem;
  padding-left: 8px;
}

.telbtn-small {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  margin-top: 5px;
}

.input-style,
.f-select {
  width: 100%;
  font-size: 1rem;
  border: 1px solid #C3C3C3;
  border-radius: 5px;
  padding: 0.4rem;
}

.contact-btn {
  border-radius: 5px;
  border: none;
  margin: 20px auto 0 auto;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
}

.form-required {
  padding: 3px;
  margin-right: 4px;
  background: #ff8400;
  color: #FFF;
  font-size: 0.7rem;
  letter-spacing: 0.08rem;
}

.bg-white {
  background: #FFF;
  padding: 8% 4%;
}

.contact-heading1 {
  padding-bottom: 3%;
}

@media screen and (768px <= width < 960px) {
  .telbox {
    margin: 20px auto 30px auto;
  }
}
@media screen and (960px <= width) {
  .forms-content {
    width: 50%;
    display: flex;
    justify-content: center;
  }
  .telbox {
    margin: 0 auto 30px auto;
  }
  .contact-btn {
    font-size: 1.2rem;
  }
  .bg-white {
    padding: 4%;
  }
  .contact-heading1 {
    padding-bottom: 1.5%;
  }
  .contact-heading2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
/*********************** footer */
.footer {
  width: 100%;
  background: #000;
  color: #FFF;
  padding: 8% 0;
  text-align: center;
}

.footer-logobox:active {
  opacity: 0.3;
}

.footer-logobox img {
  width: 120px;
  margin: 0 auto 20px auto;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.8rem;
  color: #FFF;
}

.footer-links a:first-child {
  margin-bottom: 3%;
}

.f-copy {
  display: inline-block;
  width: 100%;
  font-size: 12px;
  margin-top: 20px;
}

@media screen and (768px <= width < 960px) {
  .footer {
    padding: 6% 0;
  }
  .footer-logobox:active {
    opacity: 0.3;
  }
  .footer-logobox img {
    width: 24%;
    margin: 0 auto 20px auto;
  }
}
@media screen and (960px <= width) {
  .footer {
    padding: 4% 0;
  }
  .footer-logobox:hover {
    opacity: 0.3;
  }
  .footer-logobox img {
    width: 150px;
    margin: 0 auto 40px auto;
  }
  .footer-links div {
    text-align: center;
  }
  .footer-links a {
    text-decoration: none;
    font-size: 1rem;
    color: #FFF;
  }
  .footer-links a:first-child {
    margin-bottom: 1%;
  }
  .f-copy {
    margin-top: 40px;
  }
}
.section {
  padding: 5%;
}

.block-list {
  width: 1200px;
  max-width: 100%;
  margin: 50px auto 0;
  font-size: 1.2rem;
}
.block-list .block-list-item {
  background: #fff;
  padding: 20px;
  margin-bottom: 40px;
}
.block-list .block-list-item .title {
  background: #303337;
  color: #fff;
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
}
.block-list .block-list-item .text {
  font-size: 1.1rem;
}

@media screen and (960px <= width) {
  .block-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .block-list .block-list-item {
    width: 30%;
    margin-bottom: 40px;
  }
}/*# sourceMappingURL=layout.css.map */