@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Roboto:wght@500&display=swap");
:root {
  --vw: 1vw;
}

/*===========================================================
+-----+// font rem
===========================================================*/
/*--------------------------------------------------------------
	reset
---------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
  transition: 0.2s;
}

img {
  vertical-align: bottom;
  border: none;
  width: 100%;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  font-size: 14px;
}

* {
  box-sizing: border-box;
}

/*
html {
  @include media(pc) {
    font-size: getvwPc(10);
  }
  @include media(pc-l) {
    font-size: 62.5%;
  }
  @include media(sp) {
    font-size: getvw(10);
  }
}
*/
html {
  font-size: 62.5%;
}

body {
  color: #000000;
  line-height: 1.6;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", "Hiragino Kaku Gothic Pro", Meiryo, Verdana, sans-serif;
  position: relative;
  word-break: break-word;
  width: 100%;
  font-weight: 400;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  font-size: 1.6rem;
}
@media only screen and (max-width: 820px) {
  body {
    font-size: 1.4rem;
  }
}

.mainSection {
  margin-top: 90px;
}
@media only screen and (max-width: 820px) {
  .mainSection {
    margin-top: 60px;
  }
}

.container {
  overflow: hidden;
}

.pc {
  display: block;
}
@media only screen and (max-width: 820px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 820px) {
  .sp {
    display: block;
  }
}

.link_arrow {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.link_arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  transform: rotate(45deg);
  margin-left: 10px;
  transition: 0.3s;
  border-top: solid 1px #ff0000;
  border-right: solid 1px #ff0000;
}
.link_arrow:hover::after {
  margin-left: 15px;
}
@media only screen and (max-width: 820px) {
  .link_arrow::after {
    width: 6px;
    height: 6px;
  }
}

.cmn_btn {
  display: inline-block;
  width: 250px;
  height: 56px;
  text-align: center;
  background: rgb(110, 208, 255);
  background: linear-gradient(90deg, rgb(110, 208, 255) 0%, rgb(0, 125, 229) 100%);
  color: #fff;
  position: relative;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  font-weight: 500;
  align-items: center;
  text-decoration: none !important;
  position: relative;
}
.cmn_btn::after {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
.cmn_btn:hover::after {
  right: 10px;
}
.cmn_btn:after {
  border-top: 2px solid #78B2C0;
  border-right: 2px solid #78B2C0;
}
.cmn_btn:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 820px) {
  .cmn_btn {
    width: 180px;
    height: 46px;
    font-size: 1.4rem;
  }
  .cmn_btn:after {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
  }
}
.cmn_btn.back_btn {
  background: #999;
}
.cmn_btn.back_btn:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.cmn_btn.back_btn::after {
  left: 15px;
  transform: rotate(-135deg);
}
.cmn_btn.back_btn:hover::after {
  left: 10px;
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

a img {
  transition: 0.3s;
}

a img:hover {
  opacity: 0.7;
}

/*
.sec_in {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	@include media(sp){
		padding: 0 20px;
	}
}
*/
.effect_01,
.effect_01_group .effect {
  transition: all 0.1s;
  opacity: 0;
  position: relative;
  top: 50px;
}
.effect_01.active,
.effect_01_group .effect.active {
  opacity: 1;
  top: 0;
}

.effect_02 {
  transition: all 1s;
  opacity: 0;
  position: relative;
  top: -50px;
}
.effect_02.active {
  opacity: 1;
  top: 0;
}

.effect_03 {
  transition: all 1s;
  opacity: 0;
  position: relative;
  left: 50px;
}
.effect_03.active {
  opacity: 1;
  left: 0;
}

.effect_04 {
  transition: all 1s;
  opacity: 0;
  position: relative;
  right: 50px;
}
.effect_04.active {
  opacity: 1;
  right: 0;
}

.inview {
  opacity: 0;
  position: relative;
}
.inview.animate {
  -webkit-animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
  animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
}

.inview-group .inview-list {
  opacity: 0;
  position: relative;
}
.inview-group .inview-list.animate {
  -webkit-animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
  animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
}

@-webkit-keyframes inview_slide_up {
  0% {
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes inview_slide_up {
  0% {
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=submit] {
  -webkit-appearance: none;
}

textarea {
  resize: none;
  width: auto;
  height: auto;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.txt_c {
  text-align: center !important;
}

.txt_r {
  text-align: right !important;
}

.txt_l {
  text-align: left !important;
}

.txt_w {
  color: #fff;
}

.txt_b {
  color: #000;
}

.f-serif {
  font-family: "Roboto", sans-serif;
}

@media only screen and (min-width: 821px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
header {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
header .header_nav .btn {
  position: relative;
  width: 440px;
  margin: -80px auto 40px;
}
header .header_nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  line-height: 1.2;
  gap: 0 22px;
}
header .header_nav ul a {
  width: 110px;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  background: url(../img/nav_bg.svg) left top/110px auto no-repeat;
  color: #fff;
  padding-bottom: 10px;
}
@media only screen and (max-width: 820px) {
  header .header_nav .btn {
    margin: 0 auto 15px;
    max-width: 275px;
    width: 73.3333333333%;
  }
  header .header_nav ul {
    gap: 0 1.6%;
  }
  header .header_nav ul li {
    max-width: 55px;
    width: 14.6666666667%;
  }
  header .header_nav ul a {
    width: 100%;
    font-size: 1rem;
    line-height: 1.2;
    background: url(../img/nav_bg.svg) left top/100% auto no-repeat;
    padding-bottom: 3px;
  }
}

main {
  padding-top: 50px;
}
main .h2_ttl {
  text-align: center;
  max-width: 610px;
  margin: 0 auto;
  color: #ff0000;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 24px;
  background: url(../img/ttl_bg.svg) center center/auto 2px repeat-x;
}
main .h2_ttl span {
  padding: 0 30px;
}
main section {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 200px;
  position: relative;
  z-index: 1;
}
main section::before {
  content: "";
  position: absolute;
  left: 0;
  top: -80px;
  width: 100%;
  height: 80px;
  background: #000;
  transform: matrix(1, -0.05, 0, -1.7, 0, 0);
  z-index: -1;
}
main .sec_in {
  width: 480px;
  margin: 0 auto;
}
main .read_txt {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}
@media only screen and (max-width: 820px) {
  main {
    padding-top: 20px;
  }
  main .h2_ttl {
    font-size: 1.7rem;
    margin-bottom: 20px;
    background: url(../img/ttl_bg.svg) center center/auto 1px repeat-x;
  }
  main .h2_ttl span {
    padding: 0 20px;
  }
  main section {
    padding: 0 27px 100px;
  }
  main section::before {
    top: -30px;
  }
  main .sec_in {
    width: 100%;
  }
  main .read_txt {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.sec_features {
  background: #e1e88d;
}
.sec_features::before {
  background: #e1e88d;
}
.sec_features .h2_ttl span {
  background: #e1e88d;
}
.sec_features .box_features {
  background: #f1f3c9;
  padding: 20px 24px;
  border-radius: 10px;
}
.sec_features .box_features:not(:last-child) {
  margin-bottom: 30px;
}
.sec_features .box_features h3 {
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
  background: #ff0000;
  border-radius: 5px;
  margin-bottom: 10px;
}
.sec_features .box_features p {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.sec_features .box_features dt {
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  font-weight: bold;
  align-items: center;
  text-align: center;
  line-height: 1;
  color: #ff0000;
  background: #fff;
  border: solid 1px #ff0000;
  margin-bottom: 5px;
}
.sec_features .box_features dt sup {
  font-size: 1rem;
  vertical-align: 3px;
}
.sec_features .features01 {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0 2px;
}
.sec_features .features01 dt {
  height: 38px;
  border-radius: 18px;
}
.sec_features .features01 dd {
  padding: 0 3px;
}
.sec_features .features01 figure img {
  width: 70px;
}
.sec_features .features02 dl:not(:last-child) {
  margin-bottom: 15px;
}
.sec_features .features02 dl dt {
  height: 22px;
  width: 210px;
  margin: 0 auto 10px;
  border-radius: 12px;
  position: relative;
}
.sec_features .features02 dl dt span {
  font-size: 0.8rem;
  color: #000000;
  word-break: keep-all;
  position: absolute;
  left: calc(100% + 10px);
  top: 6px;
  width: auto;
}
.sec_features .features02 dl:nth-child(1) dd {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}
.sec_features .features02 dl:nth-child(2) dd {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0 25px;
}
.sec_features .features02 dl:nth-child(2) dd div {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0 10px;
}
.sec_features .features02 dl:nth-child(2) dd div p {
  text-align: left;
  line-height: 1.4;
}
.sec_features .features02 dl:nth-child(2) dd div img {
  width: 95px;
}
.sec_features .btm_txt {
  position: relative;
}
.sec_features .btm_txt p {
  padding-top: 20px;
  font-size: 1.8rem;
  text-align: center;
  color: #ff0000;
  font-weight: bold;
}
.sec_features .btm_txt figure {
  width: 94px;
  height: 94px;
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 820px) {
  .sec_features .box_features {
    padding: 20px;
    border-radius: 5px;
  }
  .sec_features .box_features:not(:last-child) {
    margin-bottom: 20px;
  }
  .sec_features .box_features h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    padding: 2px 0;
  }
  .sec_features .box_features p {
    font-size: 1.1rem;
  }
  .sec_features .features01 {
    display: block;
  }
  .sec_features .features01 dt {
    height: 42px;
    width: 220px;
    margin: 0 auto 10px;
    border-radius: 21px;
  }
  .sec_features .features01 dd {
    padding: 0 5px;
    text-align: center;
  }
  .sec_features .features01 dl:nth-child(1) {
    margin-bottom: 20px;
  }
  .sec_features .features01 img {
    width: 200px;
    margin: 0 auto;
  }
  .sec_features .features02 dl dt span {
    left: auto;
    right: 0;
    top: auto;
    bottom: -15px;
  }
  .sec_features .features02 dl:nth-child(1) dd {
    font-size: 1.1rem;
  }
  .sec_features .features02 dl:nth-child(2) dt {
    margin-bottom: 30px;
  }
  .sec_features .features02 dl:nth-child(2) dd {
    display: block;
    gap: 0 25px;
    width: 190px;
    margin: 0 auto;
    padding: 0;
  }
  .sec_features .features02 dl:nth-child(2) dd div {
    gap: 0 7px;
  }
  .sec_features .features02 dl:nth-child(2) dd div:not(:last-child) {
    margin-bottom: 20px;
  }
  .sec_features .features02 dl:nth-child(2) dd div img {
    width: 95px;
  }
  .sec_features .btm_txt p {
    padding-top: 10px;
    font-size: 1.3rem;
  }
  .sec_features .btm_txt figure {
    width: 70px;
    height: 70px;
    right: -10px;
  }
}

.sec_use {
  background: #eaefaf;
}
.sec_use::before {
  background: #eaefaf;
}
.sec_use .h2_ttl span {
  background: #eaefaf;
}
.sec_use .read_txt {
  margin-bottom: 20px;
}
.sec_use .box_use {
  background: #f1f3c9;
  padding: 40px 24px;
  border-radius: 10px;
  margin-bottom: 80px;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.sec_use .box_use::before, .sec_use .box_use::after {
  content: "";
  width: 82px;
  height: 88px;
  background: url(../img/deco01.svg) left top/82px auto no-repeat;
  position: absolute;
}
.sec_use .box_use::before {
  top: 85px;
  right: -45px;
}
.sec_use .box_use::after {
  top: 260px;
  left: -55px;
}
.sec_use .box_use .use {
  width: 200px;
}
.sec_use .box_use .use h3 {
  font-size: 1.4rem;
  color: #fff;
  background: #ff0000;
  text-align: center;
  height: 22px;
  border-radius: 11px;
  margin-bottom: 15px;
}
.sec_use .box_use .use figure {
  padding: 0 15px;
  margin-bottom: 15px;
}
.sec_use .box_use .use p {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}
.sec_use .catch {
  text-align: center;
  color: #ff0000;
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.sec_use .top_txt {
  font-size: 1.1rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 32px;
}
.sec_use .box_surprising {
  background: #f1f3c9;
  padding: 30px 24px;
  border-radius: 10px;
}
.sec_use .box_surprising .txt {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.sec_use .box_surprising .txt::after {
  content: "";
  width: 46px;
  height: 56px;
  background: url(../img/deco02.svg) left top/46px auto no-repeat;
  position: absolute;
  top: -5px;
}
.sec_use .box_surprising .flow li {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
}
.sec_use .box_surprising .flow li figure {
  order: 2;
  width: calc(100% - 125px);
}
.sec_use .box_surprising .flow li figure img {
  max-width: 165px;
}
.sec_use .box_surprising .flow li p {
  width: 125px;
  order: 1;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
}
.sec_use .box_surprising .finish_txt {
  text-align: center;
  font-size: 1.4rem;
  color: #ff0000;
  font-weight: bold;
  padding-top: 35px;
  margin-bottom: 20px;
  background: url(../img/arrow.svg) center top/68px auto no-repeat;
}
.sec_use .box_surprising .flow_ba {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0 45px;
  position: relative;
}
.sec_use .box_surprising .flow_ba::before, .sec_use .box_surprising .flow_ba::after {
  content: "";
  width: 82px;
  height: 88px;
  background: url(../img/deco01.svg) left top/82px auto no-repeat;
  position: absolute;
}
.sec_use .box_surprising .flow_ba::before {
  top: -50px;
  right: -30px;
}
.sec_use .box_surprising .flow_ba::after {
  bottom: -40px;
  left: calc(50% - 10px);
}
.sec_use .box_surprising .flow_ba li {
  width: 165px;
  text-align: center;
}
.sec_use .box_surprising .flow_ba li p {
  margin-top: 10px;
  font-size: 1.6rem;
  color: #ff0000;
  font-weight: bold;
}
@media only screen and (max-width: 820px) {
  .sec_use .box_use {
    padding: 35px 45px;
    border-radius: 5px;
    margin-bottom: 40px;
    display: block;
  }
  .sec_use .box_use::before {
    top: 70px;
    right: -25px;
  }
  .sec_use .box_use::after {
    top: auto;
    left: -25px;
    bottom: -20px;
  }
  .sec_use .box_use .use {
    width: 225px;
    margin: 0 auto;
  }
  .sec_use .box_use .use:not(:last-child) {
    margin-bottom: 20px;
  }
  .sec_use .box_use .use h3 {
    font-size: 1.5rem;
    height: 25px;
    border-radius: 13px;
    margin-bottom: 20px;
  }
  .sec_use .box_use .use figure {
    margin-bottom: 20px;
  }
  .sec_use .box_use .use p {
    font-size: 1.2rem;
  }
  .sec_use .catch {
    font-size: 2rem;
    line-height: 1.4;
  }
  .sec_use .box_surprising {
    border-radius: 5px;
  }
  .sec_use .box_surprising .txt::after {
    right: -30px;
  }
  .sec_use .box_surprising .flow li {
    margin-bottom: 20px;
    display: block;
  }
  .sec_use .box_surprising .flow li figure {
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  .sec_use .box_surprising .flow li figure img {
    max-width: 190px;
  }
  .sec_use .box_surprising .flow li p {
    width: 190px;
    margin: 0 auto;
    order: 2;
    padding: 0 15px;
  }
  .sec_use .box_surprising .finish_txt {
    font-size: 1.6rem;
    padding-top: 30px;
    margin-bottom: 30px;
  }
  .sec_use .box_surprising .flow_ba {
    display: block;
  }
  .sec_use .box_surprising .flow_ba::before {
    top: 200px;
  }
  .sec_use .box_surprising .flow_ba::after {
    bottom: -40px;
    left: -10px;
  }
  .sec_use .box_surprising .flow_ba li {
    width: 190px;
    margin: 0 auto;
  }
  .sec_use .box_surprising .flow_ba li:not(:last-child) {
    margin-bottom: 25px;
  }
  .sec_use .box_surprising .flow_ba li p {
    font-size: 1.8rem;
  }
}

.sec_lineup {
  background: #e1e88d;
}
.sec_lineup::before {
  background: #e1e88d;
}
.sec_lineup .h2_ttl span {
  background: #e1e88d;
}
.sec_lineup .box_lineup {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 120px 28px;
}
.sec_lineup .box_lineup li {
  width: 225px;
}
.sec_lineup .box_lineup li p {
  font-size: 1.3rem;
  text-align: center;
  font-weight: bold;
  margin: 15px 0;
}
@media only screen and (max-width: 820px) {
  .sec_lineup .box_lineup {
    gap: 80px 12px;
  }
  .sec_lineup .box_lineup li {
    width: 150px;
  }
  .sec_lineup .box_lineup li p {
    font-size: 1rem;
    margin: 10px 0 15px;
  }
}

.sec_attention {
  background: #eaefaf;
  padding-bottom: 100px;
}
.sec_attention::before {
  background: #eaefaf;
}
.sec_attention .h2_ttl span {
  background: #eaefaf;
}
.sec_attention ul li {
  position: relative;
  padding-left: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.4;
}
.sec_attention ul li:not(:last-child) {
  margin-bottom: 8px;
}
.sec_attention ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}
.sec_attention .sec_in:nth-child(2) {
  margin-bottom: 36px;
}
@media only screen and (max-width: 820px) {
  .sec_attention {
    padding-bottom: 50px;
  }
  .sec_attention ul {
    padding: 0 24px;
  }
  .sec_attention ul li {
    padding-left: 10px;
    font-size: 0.8rem;
  }
  .sec_attention ul li:not(:last-child) {
    margin-bottom: 5px;
  }
  .sec_attention ul li::before {
    font-size: 0.8rem;
  }
}

.fl_btn {
  position: fixed;
  right: calc(50% - 490px);
  bottom: 10px;
  z-index: 5;
}
.fl_btn a {
  width: 320px;
}
@media only screen and (max-width: 820px) {
  .fl_btn {
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 5px 0;
  }
  .fl_btn a {
    width: 240px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }
  .fl_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 100%;
    height: 40px;
    background: #e1e88d;
    transform: matrix(1, -0.05, 0, -1.8, 0, 0);
    z-index: 2;
  }
}

footer {
  max-width: 1000px;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  position: relative;
  background: #eaefaf;
  overflow: hidden;
  text-align: center;
}
footer::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100px;
  width: 100%;
  height: 80px;
  background: #e1e88d;
  transform: matrix(1, -0.05, 0, -1.6, 0, 0);
  z-index: 2;
}
footer small {
  font-weight: bold;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 820px) {
  footer {
    padding-bottom: 100px;
  }
}/*# sourceMappingURL=style.css.map */