@charset "UTF-8";
.text-left {
  text-align: left;
}

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

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

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

.text-super {
  vertical-align: super;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .pc-text-left {
    text-align: left;
  }
  .pc-text-center {
    text-align: center;
  }
  .pc-text-right {
    text-align: right;
  }
  .pc-text-justify {
    text-align: justify;
  }
}
@media (max-width: 767px) {
  .sp-text-left {
    text-align: left;
  }
  .sp-text-center {
    text-align: center;
  }
  .sp-text-right {
    text-align: right;
  }
  .sp-text-justify {
    text-align: justify;
  }
}
.fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.fadeInUp.is-anim {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.fadeInDown {
  opacity: 0;
  -webkit-transform: translate(0, -20px);
  transform: translate(0, -20px);
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.fadeInDown.is-anim {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.fadeInLeft {
  opacity: 0;
  -webkit-transform: translate(20px, 0);
  transform: translate(20px, 0);
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.fadeInLeft.is-anim {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.fadeInRight {
  opacity: 0;
  -webkit-transform: translate(-20px, 0);
  transform: translate(-20px, 0);
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.fadeInRight.is-anim {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.bg-black {
  background-color: #000000;
}

.bg-white {
  background-color: #FFFFFF;
}

.border-t {
  border-top: 1px solid;
}

.border-b {
  border-bottom: 1px solid;
}

.border-l {
  border-left: 1px solid;
}

.border-r {
  border-right: 1px solid;
}

.border-none {
  border: none;
}

.color-black333 {
  color: #333;
}

.color-white {
  color: #FFFFFF;
}

.color-blue {
  color: #0055A2;
}

.cursor-auto {
  cursor: auto;
}

.cursor-pointer {
  cursor: pointer;
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
.hidden {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.shrink {
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

.grow {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.shrink-0 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.grid {
  display: grid;
}

.mt-0 {
  margin-top: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mr-55 {
  margin-right: 55px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mr-65 {
  margin-right: 65px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.ml-65 {
  margin-left: 65px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mr-75 {
  margin-right: 75px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mr-85 {
  margin-right: 85px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.ml-85 {
  margin-left: 85px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pr-85 {
  padding-right: 85px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pl-85 {
  padding-left: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mr-95 {
  margin-right: 95px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.ml-95 {
  margin-left: 95px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pr-95 {
  padding-right: 95px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.pl-95 {
  padding-left: 95px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

@media (min-width: 768px) {
  .pc-mt-0 {
    margin-top: 0px !important;
  }
  .pc-mr-0 {
    margin-right: 0px !important;
  }
  .pc-mb-0 {
    margin-bottom: 0px !important;
  }
  .pc-ml-0 {
    margin-left: 0px !important;
  }
  .pc-pt-0 {
    padding-top: 0px !important;
  }
  .pc-pr-0 {
    padding-right: 0px !important;
  }
  .pc-pb-0 {
    padding-bottom: 0px !important;
  }
  .pc-pl-0 {
    padding-left: 0px !important;
  }
  .pc-mt-5 {
    margin-top: 5px !important;
  }
  .pc-mr-5 {
    margin-right: 5px !important;
  }
  .pc-mb-5 {
    margin-bottom: 5px !important;
  }
  .pc-ml-5 {
    margin-left: 5px !important;
  }
  .pc-pt-5 {
    padding-top: 5px !important;
  }
  .pc-pr-5 {
    padding-right: 5px !important;
  }
  .pc-pb-5 {
    padding-bottom: 5px !important;
  }
  .pc-pl-5 {
    padding-left: 5px !important;
  }
  .pc-mt-10 {
    margin-top: 10px !important;
  }
  .pc-mr-10 {
    margin-right: 10px !important;
  }
  .pc-mb-10 {
    margin-bottom: 10px !important;
  }
  .pc-ml-10 {
    margin-left: 10px !important;
  }
  .pc-pt-10 {
    padding-top: 10px !important;
  }
  .pc-pr-10 {
    padding-right: 10px !important;
  }
  .pc-pb-10 {
    padding-bottom: 10px !important;
  }
  .pc-pl-10 {
    padding-left: 10px !important;
  }
  .pc-mt-15 {
    margin-top: 15px !important;
  }
  .pc-mr-15 {
    margin-right: 15px !important;
  }
  .pc-mb-15 {
    margin-bottom: 15px !important;
  }
  .pc-ml-15 {
    margin-left: 15px !important;
  }
  .pc-pt-15 {
    padding-top: 15px !important;
  }
  .pc-pr-15 {
    padding-right: 15px !important;
  }
  .pc-pb-15 {
    padding-bottom: 15px !important;
  }
  .pc-pl-15 {
    padding-left: 15px !important;
  }
  .pc-mt-20 {
    margin-top: 20px !important;
  }
  .pc-mr-20 {
    margin-right: 20px !important;
  }
  .pc-mb-20 {
    margin-bottom: 20px !important;
  }
  .pc-ml-20 {
    margin-left: 20px !important;
  }
  .pc-pt-20 {
    padding-top: 20px !important;
  }
  .pc-pr-20 {
    padding-right: 20px !important;
  }
  .pc-pb-20 {
    padding-bottom: 20px !important;
  }
  .pc-pl-20 {
    padding-left: 20px !important;
  }
  .pc-mt-25 {
    margin-top: 25px !important;
  }
  .pc-mr-25 {
    margin-right: 25px !important;
  }
  .pc-mb-25 {
    margin-bottom: 25px !important;
  }
  .pc-ml-25 {
    margin-left: 25px !important;
  }
  .pc-pt-25 {
    padding-top: 25px !important;
  }
  .pc-pr-25 {
    padding-right: 25px !important;
  }
  .pc-pb-25 {
    padding-bottom: 25px !important;
  }
  .pc-pl-25 {
    padding-left: 25px !important;
  }
  .pc-mt-30 {
    margin-top: 30px !important;
  }
  .pc-mr-30 {
    margin-right: 30px !important;
  }
  .pc-mb-30 {
    margin-bottom: 30px !important;
  }
  .pc-ml-30 {
    margin-left: 30px !important;
  }
  .pc-pt-30 {
    padding-top: 30px !important;
  }
  .pc-pr-30 {
    padding-right: 30px !important;
  }
  .pc-pb-30 {
    padding-bottom: 30px !important;
  }
  .pc-pl-30 {
    padding-left: 30px !important;
  }
  .pc-mt-35 {
    margin-top: 35px !important;
  }
  .pc-mr-35 {
    margin-right: 35px !important;
  }
  .pc-mb-35 {
    margin-bottom: 35px !important;
  }
  .pc-ml-35 {
    margin-left: 35px !important;
  }
  .pc-pt-35 {
    padding-top: 35px !important;
  }
  .pc-pr-35 {
    padding-right: 35px !important;
  }
  .pc-pb-35 {
    padding-bottom: 35px !important;
  }
  .pc-pl-35 {
    padding-left: 35px !important;
  }
  .pc-mt-40 {
    margin-top: 40px !important;
  }
  .pc-mr-40 {
    margin-right: 40px !important;
  }
  .pc-mb-40 {
    margin-bottom: 40px !important;
  }
  .pc-ml-40 {
    margin-left: 40px !important;
  }
  .pc-pt-40 {
    padding-top: 40px !important;
  }
  .pc-pr-40 {
    padding-right: 40px !important;
  }
  .pc-pb-40 {
    padding-bottom: 40px !important;
  }
  .pc-pl-40 {
    padding-left: 40px !important;
  }
  .pc-mt-45 {
    margin-top: 45px !important;
  }
  .pc-mr-45 {
    margin-right: 45px !important;
  }
  .pc-mb-45 {
    margin-bottom: 45px !important;
  }
  .pc-ml-45 {
    margin-left: 45px !important;
  }
  .pc-pt-45 {
    padding-top: 45px !important;
  }
  .pc-pr-45 {
    padding-right: 45px !important;
  }
  .pc-pb-45 {
    padding-bottom: 45px !important;
  }
  .pc-pl-45 {
    padding-left: 45px !important;
  }
  .pc-mt-50 {
    margin-top: 50px !important;
  }
  .pc-mr-50 {
    margin-right: 50px !important;
  }
  .pc-mb-50 {
    margin-bottom: 50px !important;
  }
  .pc-ml-50 {
    margin-left: 50px !important;
  }
  .pc-pt-50 {
    padding-top: 50px !important;
  }
  .pc-pr-50 {
    padding-right: 50px !important;
  }
  .pc-pb-50 {
    padding-bottom: 50px !important;
  }
  .pc-pl-50 {
    padding-left: 50px !important;
  }
  .pc-mt-55 {
    margin-top: 55px !important;
  }
  .pc-mr-55 {
    margin-right: 55px !important;
  }
  .pc-mb-55 {
    margin-bottom: 55px !important;
  }
  .pc-ml-55 {
    margin-left: 55px !important;
  }
  .pc-pt-55 {
    padding-top: 55px !important;
  }
  .pc-pr-55 {
    padding-right: 55px !important;
  }
  .pc-pb-55 {
    padding-bottom: 55px !important;
  }
  .pc-pl-55 {
    padding-left: 55px !important;
  }
  .pc-mt-60 {
    margin-top: 60px !important;
  }
  .pc-mr-60 {
    margin-right: 60px !important;
  }
  .pc-mb-60 {
    margin-bottom: 60px !important;
  }
  .pc-ml-60 {
    margin-left: 60px !important;
  }
  .pc-pt-60 {
    padding-top: 60px !important;
  }
  .pc-pr-60 {
    padding-right: 60px !important;
  }
  .pc-pb-60 {
    padding-bottom: 60px !important;
  }
  .pc-pl-60 {
    padding-left: 60px !important;
  }
  .pc-mt-65 {
    margin-top: 65px !important;
  }
  .pc-mr-65 {
    margin-right: 65px !important;
  }
  .pc-mb-65 {
    margin-bottom: 65px !important;
  }
  .pc-ml-65 {
    margin-left: 65px !important;
  }
  .pc-pt-65 {
    padding-top: 65px !important;
  }
  .pc-pr-65 {
    padding-right: 65px !important;
  }
  .pc-pb-65 {
    padding-bottom: 65px !important;
  }
  .pc-pl-65 {
    padding-left: 65px !important;
  }
  .pc-mt-70 {
    margin-top: 70px !important;
  }
  .pc-mr-70 {
    margin-right: 70px !important;
  }
  .pc-mb-70 {
    margin-bottom: 70px !important;
  }
  .pc-ml-70 {
    margin-left: 70px !important;
  }
  .pc-pt-70 {
    padding-top: 70px !important;
  }
  .pc-pr-70 {
    padding-right: 70px !important;
  }
  .pc-pb-70 {
    padding-bottom: 70px !important;
  }
  .pc-pl-70 {
    padding-left: 70px !important;
  }
  .pc-mt-75 {
    margin-top: 75px !important;
  }
  .pc-mr-75 {
    margin-right: 75px !important;
  }
  .pc-mb-75 {
    margin-bottom: 75px !important;
  }
  .pc-ml-75 {
    margin-left: 75px !important;
  }
  .pc-pt-75 {
    padding-top: 75px !important;
  }
  .pc-pr-75 {
    padding-right: 75px !important;
  }
  .pc-pb-75 {
    padding-bottom: 75px !important;
  }
  .pc-pl-75 {
    padding-left: 75px !important;
  }
  .pc-mt-80 {
    margin-top: 80px !important;
  }
  .pc-mr-80 {
    margin-right: 80px !important;
  }
  .pc-mb-80 {
    margin-bottom: 80px !important;
  }
  .pc-ml-80 {
    margin-left: 80px !important;
  }
  .pc-pt-80 {
    padding-top: 80px !important;
  }
  .pc-pr-80 {
    padding-right: 80px !important;
  }
  .pc-pb-80 {
    padding-bottom: 80px !important;
  }
  .pc-pl-80 {
    padding-left: 80px !important;
  }
  .pc-mt-85 {
    margin-top: 85px !important;
  }
  .pc-mr-85 {
    margin-right: 85px !important;
  }
  .pc-mb-85 {
    margin-bottom: 85px !important;
  }
  .pc-ml-85 {
    margin-left: 85px !important;
  }
  .pc-pt-85 {
    padding-top: 85px !important;
  }
  .pc-pr-85 {
    padding-right: 85px !important;
  }
  .pc-pb-85 {
    padding-bottom: 85px !important;
  }
  .pc-pl-85 {
    padding-left: 85px !important;
  }
  .pc-mt-90 {
    margin-top: 90px !important;
  }
  .pc-mr-90 {
    margin-right: 90px !important;
  }
  .pc-mb-90 {
    margin-bottom: 90px !important;
  }
  .pc-ml-90 {
    margin-left: 90px !important;
  }
  .pc-pt-90 {
    padding-top: 90px !important;
  }
  .pc-pr-90 {
    padding-right: 90px !important;
  }
  .pc-pb-90 {
    padding-bottom: 90px !important;
  }
  .pc-pl-90 {
    padding-left: 90px !important;
  }
  .pc-mt-95 {
    margin-top: 95px !important;
  }
  .pc-mr-95 {
    margin-right: 95px !important;
  }
  .pc-mb-95 {
    margin-bottom: 95px !important;
  }
  .pc-ml-95 {
    margin-left: 95px !important;
  }
  .pc-pt-95 {
    padding-top: 95px !important;
  }
  .pc-pr-95 {
    padding-right: 95px !important;
  }
  .pc-pb-95 {
    padding-bottom: 95px !important;
  }
  .pc-pl-95 {
    padding-left: 95px !important;
  }
  .pc-mt-100 {
    margin-top: 100px !important;
  }
  .pc-mr-100 {
    margin-right: 100px !important;
  }
  .pc-mb-100 {
    margin-bottom: 100px !important;
  }
  .pc-ml-100 {
    margin-left: 100px !important;
  }
  .pc-pt-100 {
    padding-top: 100px !important;
  }
  .pc-pr-100 {
    padding-right: 100px !important;
  }
  .pc-pb-100 {
    padding-bottom: 100px !important;
  }
  .pc-pl-100 {
    padding-left: 100px !important;
  }
}
@media (max-width: 767px) {
  .sp-mt-0 {
    margin-top: 0px !important;
  }
  .sp-mr-0 {
    margin-right: 0px !important;
  }
  .sp-mb-0 {
    margin-bottom: 0px !important;
  }
  .sp-ml-0 {
    margin-left: 0px !important;
  }
  .sp-pt-0 {
    padding-top: 0px !important;
  }
  .sp-pr-0 {
    padding-right: 0px !important;
  }
  .sp-pb-0 {
    padding-bottom: 0px !important;
  }
  .sp-pl-0 {
    padding-left: 0px !important;
  }
  .sp-mt-5 {
    margin-top: 5px !important;
  }
  .sp-mr-5 {
    margin-right: 5px !important;
  }
  .sp-mb-5 {
    margin-bottom: 5px !important;
  }
  .sp-ml-5 {
    margin-left: 5px !important;
  }
  .sp-pt-5 {
    padding-top: 5px !important;
  }
  .sp-pr-5 {
    padding-right: 5px !important;
  }
  .sp-pb-5 {
    padding-bottom: 5px !important;
  }
  .sp-pl-5 {
    padding-left: 5px !important;
  }
  .sp-mt-10 {
    margin-top: 10px !important;
  }
  .sp-mr-10 {
    margin-right: 10px !important;
  }
  .sp-mb-10 {
    margin-bottom: 10px !important;
  }
  .sp-ml-10 {
    margin-left: 10px !important;
  }
  .sp-pt-10 {
    padding-top: 10px !important;
  }
  .sp-pr-10 {
    padding-right: 10px !important;
  }
  .sp-pb-10 {
    padding-bottom: 10px !important;
  }
  .sp-pl-10 {
    padding-left: 10px !important;
  }
  .sp-mt-15 {
    margin-top: 15px !important;
  }
  .sp-mr-15 {
    margin-right: 15px !important;
  }
  .sp-mb-15 {
    margin-bottom: 15px !important;
  }
  .sp-ml-15 {
    margin-left: 15px !important;
  }
  .sp-pt-15 {
    padding-top: 15px !important;
  }
  .sp-pr-15 {
    padding-right: 15px !important;
  }
  .sp-pb-15 {
    padding-bottom: 15px !important;
  }
  .sp-pl-15 {
    padding-left: 15px !important;
  }
  .sp-mt-20 {
    margin-top: 20px !important;
  }
  .sp-mr-20 {
    margin-right: 20px !important;
  }
  .sp-mb-20 {
    margin-bottom: 20px !important;
  }
  .sp-ml-20 {
    margin-left: 20px !important;
  }
  .sp-pt-20 {
    padding-top: 20px !important;
  }
  .sp-pr-20 {
    padding-right: 20px !important;
  }
  .sp-pb-20 {
    padding-bottom: 20px !important;
  }
  .sp-pl-20 {
    padding-left: 20px !important;
  }
  .sp-mt-25 {
    margin-top: 25px !important;
  }
  .sp-mr-25 {
    margin-right: 25px !important;
  }
  .sp-mb-25 {
    margin-bottom: 25px !important;
  }
  .sp-ml-25 {
    margin-left: 25px !important;
  }
  .sp-pt-25 {
    padding-top: 25px !important;
  }
  .sp-pr-25 {
    padding-right: 25px !important;
  }
  .sp-pb-25 {
    padding-bottom: 25px !important;
  }
  .sp-pl-25 {
    padding-left: 25px !important;
  }
  .sp-mt-30 {
    margin-top: 30px !important;
  }
  .sp-mr-30 {
    margin-right: 30px !important;
  }
  .sp-mb-30 {
    margin-bottom: 30px !important;
  }
  .sp-ml-30 {
    margin-left: 30px !important;
  }
  .sp-pt-30 {
    padding-top: 30px !important;
  }
  .sp-pr-30 {
    padding-right: 30px !important;
  }
  .sp-pb-30 {
    padding-bottom: 30px !important;
  }
  .sp-pl-30 {
    padding-left: 30px !important;
  }
  .sp-mt-35 {
    margin-top: 35px !important;
  }
  .sp-mr-35 {
    margin-right: 35px !important;
  }
  .sp-mb-35 {
    margin-bottom: 35px !important;
  }
  .sp-ml-35 {
    margin-left: 35px !important;
  }
  .sp-pt-35 {
    padding-top: 35px !important;
  }
  .sp-pr-35 {
    padding-right: 35px !important;
  }
  .sp-pb-35 {
    padding-bottom: 35px !important;
  }
  .sp-pl-35 {
    padding-left: 35px !important;
  }
  .sp-mt-40 {
    margin-top: 40px !important;
  }
  .sp-mr-40 {
    margin-right: 40px !important;
  }
  .sp-mb-40 {
    margin-bottom: 40px !important;
  }
  .sp-ml-40 {
    margin-left: 40px !important;
  }
  .sp-pt-40 {
    padding-top: 40px !important;
  }
  .sp-pr-40 {
    padding-right: 40px !important;
  }
  .sp-pb-40 {
    padding-bottom: 40px !important;
  }
  .sp-pl-40 {
    padding-left: 40px !important;
  }
  .sp-mt-45 {
    margin-top: 45px !important;
  }
  .sp-mr-45 {
    margin-right: 45px !important;
  }
  .sp-mb-45 {
    margin-bottom: 45px !important;
  }
  .sp-ml-45 {
    margin-left: 45px !important;
  }
  .sp-pt-45 {
    padding-top: 45px !important;
  }
  .sp-pr-45 {
    padding-right: 45px !important;
  }
  .sp-pb-45 {
    padding-bottom: 45px !important;
  }
  .sp-pl-45 {
    padding-left: 45px !important;
  }
  .sp-mt-50 {
    margin-top: 50px !important;
  }
  .sp-mr-50 {
    margin-right: 50px !important;
  }
  .sp-mb-50 {
    margin-bottom: 50px !important;
  }
  .sp-ml-50 {
    margin-left: 50px !important;
  }
  .sp-pt-50 {
    padding-top: 50px !important;
  }
  .sp-pr-50 {
    padding-right: 50px !important;
  }
  .sp-pb-50 {
    padding-bottom: 50px !important;
  }
  .sp-pl-50 {
    padding-left: 50px !important;
  }
  .sp-mt-55 {
    margin-top: 55px !important;
  }
  .sp-mr-55 {
    margin-right: 55px !important;
  }
  .sp-mb-55 {
    margin-bottom: 55px !important;
  }
  .sp-ml-55 {
    margin-left: 55px !important;
  }
  .sp-pt-55 {
    padding-top: 55px !important;
  }
  .sp-pr-55 {
    padding-right: 55px !important;
  }
  .sp-pb-55 {
    padding-bottom: 55px !important;
  }
  .sp-pl-55 {
    padding-left: 55px !important;
  }
  .sp-mt-60 {
    margin-top: 60px !important;
  }
  .sp-mr-60 {
    margin-right: 60px !important;
  }
  .sp-mb-60 {
    margin-bottom: 60px !important;
  }
  .sp-ml-60 {
    margin-left: 60px !important;
  }
  .sp-pt-60 {
    padding-top: 60px !important;
  }
  .sp-pr-60 {
    padding-right: 60px !important;
  }
  .sp-pb-60 {
    padding-bottom: 60px !important;
  }
  .sp-pl-60 {
    padding-left: 60px !important;
  }
  .sp-mt-65 {
    margin-top: 65px !important;
  }
  .sp-mr-65 {
    margin-right: 65px !important;
  }
  .sp-mb-65 {
    margin-bottom: 65px !important;
  }
  .sp-ml-65 {
    margin-left: 65px !important;
  }
  .sp-pt-65 {
    padding-top: 65px !important;
  }
  .sp-pr-65 {
    padding-right: 65px !important;
  }
  .sp-pb-65 {
    padding-bottom: 65px !important;
  }
  .sp-pl-65 {
    padding-left: 65px !important;
  }
  .sp-mt-70 {
    margin-top: 70px !important;
  }
  .sp-mr-70 {
    margin-right: 70px !important;
  }
  .sp-mb-70 {
    margin-bottom: 70px !important;
  }
  .sp-ml-70 {
    margin-left: 70px !important;
  }
  .sp-pt-70 {
    padding-top: 70px !important;
  }
  .sp-pr-70 {
    padding-right: 70px !important;
  }
  .sp-pb-70 {
    padding-bottom: 70px !important;
  }
  .sp-pl-70 {
    padding-left: 70px !important;
  }
  .sp-mt-75 {
    margin-top: 75px !important;
  }
  .sp-mr-75 {
    margin-right: 75px !important;
  }
  .sp-mb-75 {
    margin-bottom: 75px !important;
  }
  .sp-ml-75 {
    margin-left: 75px !important;
  }
  .sp-pt-75 {
    padding-top: 75px !important;
  }
  .sp-pr-75 {
    padding-right: 75px !important;
  }
  .sp-pb-75 {
    padding-bottom: 75px !important;
  }
  .sp-pl-75 {
    padding-left: 75px !important;
  }
  .sp-mt-80 {
    margin-top: 80px !important;
  }
  .sp-mr-80 {
    margin-right: 80px !important;
  }
  .sp-mb-80 {
    margin-bottom: 80px !important;
  }
  .sp-ml-80 {
    margin-left: 80px !important;
  }
  .sp-pt-80 {
    padding-top: 80px !important;
  }
  .sp-pr-80 {
    padding-right: 80px !important;
  }
  .sp-pb-80 {
    padding-bottom: 80px !important;
  }
  .sp-pl-80 {
    padding-left: 80px !important;
  }
  .sp-mt-85 {
    margin-top: 85px !important;
  }
  .sp-mr-85 {
    margin-right: 85px !important;
  }
  .sp-mb-85 {
    margin-bottom: 85px !important;
  }
  .sp-ml-85 {
    margin-left: 85px !important;
  }
  .sp-pt-85 {
    padding-top: 85px !important;
  }
  .sp-pr-85 {
    padding-right: 85px !important;
  }
  .sp-pb-85 {
    padding-bottom: 85px !important;
  }
  .sp-pl-85 {
    padding-left: 85px !important;
  }
  .sp-mt-90 {
    margin-top: 90px !important;
  }
  .sp-mr-90 {
    margin-right: 90px !important;
  }
  .sp-mb-90 {
    margin-bottom: 90px !important;
  }
  .sp-ml-90 {
    margin-left: 90px !important;
  }
  .sp-pt-90 {
    padding-top: 90px !important;
  }
  .sp-pr-90 {
    padding-right: 90px !important;
  }
  .sp-pb-90 {
    padding-bottom: 90px !important;
  }
  .sp-pl-90 {
    padding-left: 90px !important;
  }
  .sp-mt-95 {
    margin-top: 95px !important;
  }
  .sp-mr-95 {
    margin-right: 95px !important;
  }
  .sp-mb-95 {
    margin-bottom: 95px !important;
  }
  .sp-ml-95 {
    margin-left: 95px !important;
  }
  .sp-pt-95 {
    padding-top: 95px !important;
  }
  .sp-pr-95 {
    padding-right: 95px !important;
  }
  .sp-pb-95 {
    padding-bottom: 95px !important;
  }
  .sp-pl-95 {
    padding-left: 95px !important;
  }
  .sp-mt-100 {
    margin-top: 100px !important;
  }
  .sp-mr-100 {
    margin-right: 100px !important;
  }
  .sp-mb-100 {
    margin-bottom: 100px !important;
  }
  .sp-ml-100 {
    margin-left: 100px !important;
  }
  .sp-pt-100 {
    padding-top: 100px !important;
  }
  .sp-pr-100 {
    padding-right: 100px !important;
  }
  .sp-pb-100 {
    padding-bottom: 100px !important;
  }
  .sp-pl-100 {
    padding-left: 100px !important;
  }
}
.col-0p {
  width: 0%;
}

.col-1p {
  width: 1%;
}

.col-2p {
  width: 2%;
}

.col-3p {
  width: 3%;
}

.col-4p {
  width: 4%;
}

.col-5p {
  width: 5%;
}

.col-6p {
  width: 6%;
}

.col-7p {
  width: 7%;
}

.col-8p {
  width: 8%;
}

.col-9p {
  width: 9%;
}

.col-10p {
  width: 10%;
}

.col-11p {
  width: 11%;
}

.col-12p {
  width: 12%;
}

.col-13p {
  width: 13%;
}

.col-14p {
  width: 14%;
}

.col-15p {
  width: 15%;
}

.col-16p {
  width: 16%;
}

.col-17p {
  width: 17%;
}

.col-18p {
  width: 18%;
}

.col-19p {
  width: 19%;
}

.col-20p {
  width: 20%;
}

.col-21p {
  width: 21%;
}

.col-22p {
  width: 22%;
}

.col-23p {
  width: 23%;
}

.col-24p {
  width: 24%;
}

.col-25p {
  width: 25%;
}

.col-26p {
  width: 26%;
}

.col-27p {
  width: 27%;
}

.col-28p {
  width: 28%;
}

.col-29p {
  width: 29%;
}

.col-30p {
  width: 30%;
}

.col-31p {
  width: 31%;
}

.col-32p {
  width: 32%;
}

.col-33p {
  width: 33%;
}

.col-34p {
  width: 34%;
}

.col-35p {
  width: 35%;
}

.col-36p {
  width: 36%;
}

.col-37p {
  width: 37%;
}

.col-38p {
  width: 38%;
}

.col-39p {
  width: 39%;
}

.col-40p {
  width: 40%;
}

.col-41p {
  width: 41%;
}

.col-42p {
  width: 42%;
}

.col-43p {
  width: 43%;
}

.col-44p {
  width: 44%;
}

.col-45p {
  width: 45%;
}

.col-46p {
  width: 46%;
}

.col-47p {
  width: 47%;
}

.col-48p {
  width: 48%;
}

.col-49p {
  width: 49%;
}

.col-50p {
  width: 50%;
}

.col-51p {
  width: 51%;
}

.col-52p {
  width: 52%;
}

.col-53p {
  width: 53%;
}

.col-54p {
  width: 54%;
}

.col-55p {
  width: 55%;
}

.col-56p {
  width: 56%;
}

.col-57p {
  width: 57%;
}

.col-58p {
  width: 58%;
}

.col-59p {
  width: 59%;
}

.col-60p {
  width: 60%;
}

.col-61p {
  width: 61%;
}

.col-62p {
  width: 62%;
}

.col-63p {
  width: 63%;
}

.col-64p {
  width: 64%;
}

.col-65p {
  width: 65%;
}

.col-66p {
  width: 66%;
}

.col-67p {
  width: 67%;
}

.col-68p {
  width: 68%;
}

.col-69p {
  width: 69%;
}

.col-70p {
  width: 70%;
}

.col-71p {
  width: 71%;
}

.col-72p {
  width: 72%;
}

.col-73p {
  width: 73%;
}

.col-74p {
  width: 74%;
}

.col-75p {
  width: 75%;
}

.col-76p {
  width: 76%;
}

.col-77p {
  width: 77%;
}

.col-78p {
  width: 78%;
}

.col-79p {
  width: 79%;
}

.col-80p {
  width: 80%;
}

.col-81p {
  width: 81%;
}

.col-82p {
  width: 82%;
}

.col-83p {
  width: 83%;
}

.col-84p {
  width: 84%;
}

.col-85p {
  width: 85%;
}

.col-86p {
  width: 86%;
}

.col-87p {
  width: 87%;
}

.col-88p {
  width: 88%;
}

.col-89p {
  width: 89%;
}

.col-90p {
  width: 90%;
}

.col-91p {
  width: 91%;
}

.col-92p {
  width: 92%;
}

.col-93p {
  width: 93%;
}

.col-94p {
  width: 94%;
}

.col-95p {
  width: 95%;
}

.col-96p {
  width: 96%;
}

.col-97p {
  width: 97%;
}

.col-98p {
  width: 98%;
}

.col-99p {
  width: 99%;
}

.col-100p {
  width: 100%;
}

@media (min-width: 768px) {
  .pc-col-0p {
    width: 0%;
  }
  .pc-col-1p {
    width: 1%;
  }
  .pc-col-2p {
    width: 2%;
  }
  .pc-col-3p {
    width: 3%;
  }
  .pc-col-4p {
    width: 4%;
  }
  .pc-col-5p {
    width: 5%;
  }
  .pc-col-6p {
    width: 6%;
  }
  .pc-col-7p {
    width: 7%;
  }
  .pc-col-8p {
    width: 8%;
  }
  .pc-col-9p {
    width: 9%;
  }
  .pc-col-10p {
    width: 10%;
  }
  .pc-col-11p {
    width: 11%;
  }
  .pc-col-12p {
    width: 12%;
  }
  .pc-col-13p {
    width: 13%;
  }
  .pc-col-14p {
    width: 14%;
  }
  .pc-col-15p {
    width: 15%;
  }
  .pc-col-16p {
    width: 16%;
  }
  .pc-col-17p {
    width: 17%;
  }
  .pc-col-18p {
    width: 18%;
  }
  .pc-col-19p {
    width: 19%;
  }
  .pc-col-20p {
    width: 20%;
  }
  .pc-col-21p {
    width: 21%;
  }
  .pc-col-22p {
    width: 22%;
  }
  .pc-col-23p {
    width: 23%;
  }
  .pc-col-24p {
    width: 24%;
  }
  .pc-col-25p {
    width: 25%;
  }
  .pc-col-26p {
    width: 26%;
  }
  .pc-col-27p {
    width: 27%;
  }
  .pc-col-28p {
    width: 28%;
  }
  .pc-col-29p {
    width: 29%;
  }
  .pc-col-30p {
    width: 30%;
  }
  .pc-col-31p {
    width: 31%;
  }
  .pc-col-32p {
    width: 32%;
  }
  .pc-col-33p {
    width: 33%;
  }
  .pc-col-34p {
    width: 34%;
  }
  .pc-col-35p {
    width: 35%;
  }
  .pc-col-36p {
    width: 36%;
  }
  .pc-col-37p {
    width: 37%;
  }
  .pc-col-38p {
    width: 38%;
  }
  .pc-col-39p {
    width: 39%;
  }
  .pc-col-40p {
    width: 40%;
  }
  .pc-col-41p {
    width: 41%;
  }
  .pc-col-42p {
    width: 42%;
  }
  .pc-col-43p {
    width: 43%;
  }
  .pc-col-44p {
    width: 44%;
  }
  .pc-col-45p {
    width: 45%;
  }
  .pc-col-46p {
    width: 46%;
  }
  .pc-col-47p {
    width: 47%;
  }
  .pc-col-48p {
    width: 48%;
  }
  .pc-col-49p {
    width: 49%;
  }
  .pc-col-50p {
    width: 50%;
  }
  .pc-col-51p {
    width: 51%;
  }
  .pc-col-52p {
    width: 52%;
  }
  .pc-col-53p {
    width: 53%;
  }
  .pc-col-54p {
    width: 54%;
  }
  .pc-col-55p {
    width: 55%;
  }
  .pc-col-56p {
    width: 56%;
  }
  .pc-col-57p {
    width: 57%;
  }
  .pc-col-58p {
    width: 58%;
  }
  .pc-col-59p {
    width: 59%;
  }
  .pc-col-60p {
    width: 60%;
  }
  .pc-col-61p {
    width: 61%;
  }
  .pc-col-62p {
    width: 62%;
  }
  .pc-col-63p {
    width: 63%;
  }
  .pc-col-64p {
    width: 64%;
  }
  .pc-col-65p {
    width: 65%;
  }
  .pc-col-66p {
    width: 66%;
  }
  .pc-col-67p {
    width: 67%;
  }
  .pc-col-68p {
    width: 68%;
  }
  .pc-col-69p {
    width: 69%;
  }
  .pc-col-70p {
    width: 70%;
  }
  .pc-col-71p {
    width: 71%;
  }
  .pc-col-72p {
    width: 72%;
  }
  .pc-col-73p {
    width: 73%;
  }
  .pc-col-74p {
    width: 74%;
  }
  .pc-col-75p {
    width: 75%;
  }
  .pc-col-76p {
    width: 76%;
  }
  .pc-col-77p {
    width: 77%;
  }
  .pc-col-78p {
    width: 78%;
  }
  .pc-col-79p {
    width: 79%;
  }
  .pc-col-80p {
    width: 80%;
  }
  .pc-col-81p {
    width: 81%;
  }
  .pc-col-82p {
    width: 82%;
  }
  .pc-col-83p {
    width: 83%;
  }
  .pc-col-84p {
    width: 84%;
  }
  .pc-col-85p {
    width: 85%;
  }
  .pc-col-86p {
    width: 86%;
  }
  .pc-col-87p {
    width: 87%;
  }
  .pc-col-88p {
    width: 88%;
  }
  .pc-col-89p {
    width: 89%;
  }
  .pc-col-90p {
    width: 90%;
  }
  .pc-col-91p {
    width: 91%;
  }
  .pc-col-92p {
    width: 92%;
  }
  .pc-col-93p {
    width: 93%;
  }
  .pc-col-94p {
    width: 94%;
  }
  .pc-col-95p {
    width: 95%;
  }
  .pc-col-96p {
    width: 96%;
  }
  .pc-col-97p {
    width: 97%;
  }
  .pc-col-98p {
    width: 98%;
  }
  .pc-col-99p {
    width: 99%;
  }
  .pc-col-100p {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sp-col-0p {
    width: 0%;
  }
  .sp-col-1p {
    width: 1%;
  }
  .sp-col-2p {
    width: 2%;
  }
  .sp-col-3p {
    width: 3%;
  }
  .sp-col-4p {
    width: 4%;
  }
  .sp-col-5p {
    width: 5%;
  }
  .sp-col-6p {
    width: 6%;
  }
  .sp-col-7p {
    width: 7%;
  }
  .sp-col-8p {
    width: 8%;
  }
  .sp-col-9p {
    width: 9%;
  }
  .sp-col-10p {
    width: 10%;
  }
  .sp-col-11p {
    width: 11%;
  }
  .sp-col-12p {
    width: 12%;
  }
  .sp-col-13p {
    width: 13%;
  }
  .sp-col-14p {
    width: 14%;
  }
  .sp-col-15p {
    width: 15%;
  }
  .sp-col-16p {
    width: 16%;
  }
  .sp-col-17p {
    width: 17%;
  }
  .sp-col-18p {
    width: 18%;
  }
  .sp-col-19p {
    width: 19%;
  }
  .sp-col-20p {
    width: 20%;
  }
  .sp-col-21p {
    width: 21%;
  }
  .sp-col-22p {
    width: 22%;
  }
  .sp-col-23p {
    width: 23%;
  }
  .sp-col-24p {
    width: 24%;
  }
  .sp-col-25p {
    width: 25%;
  }
  .sp-col-26p {
    width: 26%;
  }
  .sp-col-27p {
    width: 27%;
  }
  .sp-col-28p {
    width: 28%;
  }
  .sp-col-29p {
    width: 29%;
  }
  .sp-col-30p {
    width: 30%;
  }
  .sp-col-31p {
    width: 31%;
  }
  .sp-col-32p {
    width: 32%;
  }
  .sp-col-33p {
    width: 33%;
  }
  .sp-col-34p {
    width: 34%;
  }
  .sp-col-35p {
    width: 35%;
  }
  .sp-col-36p {
    width: 36%;
  }
  .sp-col-37p {
    width: 37%;
  }
  .sp-col-38p {
    width: 38%;
  }
  .sp-col-39p {
    width: 39%;
  }
  .sp-col-40p {
    width: 40%;
  }
  .sp-col-41p {
    width: 41%;
  }
  .sp-col-42p {
    width: 42%;
  }
  .sp-col-43p {
    width: 43%;
  }
  .sp-col-44p {
    width: 44%;
  }
  .sp-col-45p {
    width: 45%;
  }
  .sp-col-46p {
    width: 46%;
  }
  .sp-col-47p {
    width: 47%;
  }
  .sp-col-48p {
    width: 48%;
  }
  .sp-col-49p {
    width: 49%;
  }
  .sp-col-50p {
    width: 50%;
  }
  .sp-col-51p {
    width: 51%;
  }
  .sp-col-52p {
    width: 52%;
  }
  .sp-col-53p {
    width: 53%;
  }
  .sp-col-54p {
    width: 54%;
  }
  .sp-col-55p {
    width: 55%;
  }
  .sp-col-56p {
    width: 56%;
  }
  .sp-col-57p {
    width: 57%;
  }
  .sp-col-58p {
    width: 58%;
  }
  .sp-col-59p {
    width: 59%;
  }
  .sp-col-60p {
    width: 60%;
  }
  .sp-col-61p {
    width: 61%;
  }
  .sp-col-62p {
    width: 62%;
  }
  .sp-col-63p {
    width: 63%;
  }
  .sp-col-64p {
    width: 64%;
  }
  .sp-col-65p {
    width: 65%;
  }
  .sp-col-66p {
    width: 66%;
  }
  .sp-col-67p {
    width: 67%;
  }
  .sp-col-68p {
    width: 68%;
  }
  .sp-col-69p {
    width: 69%;
  }
  .sp-col-70p {
    width: 70%;
  }
  .sp-col-71p {
    width: 71%;
  }
  .sp-col-72p {
    width: 72%;
  }
  .sp-col-73p {
    width: 73%;
  }
  .sp-col-74p {
    width: 74%;
  }
  .sp-col-75p {
    width: 75%;
  }
  .sp-col-76p {
    width: 76%;
  }
  .sp-col-77p {
    width: 77%;
  }
  .sp-col-78p {
    width: 78%;
  }
  .sp-col-79p {
    width: 79%;
  }
  .sp-col-80p {
    width: 80%;
  }
  .sp-col-81p {
    width: 81%;
  }
  .sp-col-82p {
    width: 82%;
  }
  .sp-col-83p {
    width: 83%;
  }
  .sp-col-84p {
    width: 84%;
  }
  .sp-col-85p {
    width: 85%;
  }
  .sp-col-86p {
    width: 86%;
  }
  .sp-col-87p {
    width: 87%;
  }
  .sp-col-88p {
    width: 88%;
  }
  .sp-col-89p {
    width: 89%;
  }
  .sp-col-90p {
    width: 90%;
  }
  .sp-col-91p {
    width: 91%;
  }
  .sp-col-92p {
    width: 92%;
  }
  .sp-col-93p {
    width: 93%;
  }
  .sp-col-94p {
    width: 94%;
  }
  .sp-col-95p {
    width: 95%;
  }
  .sp-col-96p {
    width: 96%;
  }
  .sp-col-97p {
    width: 97%;
  }
  .sp-col-98p {
    width: 98%;
  }
  .sp-col-99p {
    width: 99%;
  }
  .sp-col-100p {
    width: 100%;
  }
}
.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

:root {
  scroll-padding-top: 80px;
}

@media (max-width: 767px) {
  :root {
    scroll-padding-top: 60px;
  }
}
html {
  font-size: 62.5%;
}

body {
  min-height: 100vh;
  color: #333333;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  overflow-wrap: break-word;
  overflow-x: hidden;
  letter-spacing: 0;
  text-align: left;
}

@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
  body.is-open {
    overflow: hidden;
  }
}
button:not(:disabled):focus-visible,
a:not(:disabled):focus-visible,
pre:not(:disabled):focus-visible,
input:not(:disabled):focus-visible,
select:not(:disabled):focus-visible,
button:not(:disabled):focus-visible,
textarea:not(:disabled):focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

html.disableScroll body,
html.disableScroll {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
}

.visually_hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}

html.no-scroll {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

a:hover {
  text-decoration: none;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.75;
  }
}
a:focus {
  outline: none;
  text-decoration: none;
}

@media (max-width: 767px) {
  a[href^=tel] {
    pointer-events: none;
    text-decoration: none;
    opacity: 1 !important;
    cursor: default !important;
  }
}
ul,
ol {
  margin: 0;
  padding: 0;
}

ul li,
ol li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin: 0;
}

figure {
  margin: 0;
  padding: 0;
  line-height: 0;
}

figure img {
  width: 100%;
}

input[type=submit] {
  border: none;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

table {
  border-spacing: inherit;
  border-collapse: collapse;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
}

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

strong,
b {
  font-weight: bold;
}

.image-cover {
  overflow: hidden;
}

.image-cover img {
  font-family: "object-fit: cover;";
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hover-zoom {
  overflow: hidden;
}

.hover-zoom img {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

@media (hover: hover) {
  a:hover .hover-zoom img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.js-inview {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.js-inview.is-show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.js-title {
  position: relative;
  display: inline-block;
}

.js-title:after {
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-color: #fff;
  position: absolute;
  top: -2px;
  right: -2px;
  -webkit-clip-path: inset(0 0 0 0%);
  clip-path: inset(0 0 0 0%);
  -webkit-transition: -webkit-clip-path 0.8s cubic-bezier(0.83, 0, 0.17, 1);
  transition: -webkit-clip-path 0.8s cubic-bezier(0.83, 0, 0.17, 1);
  transition: clip-path 0.8s cubic-bezier(0.83, 0, 0.17, 1);
  transition: clip-path 0.8s cubic-bezier(0.83, 0, 0.17, 1), -webkit-clip-path 0.8s cubic-bezier(0.83, 0, 0.17, 1);
}

.js-title.is-show {
  opacity: 1;
  visibility: visible;
}

.js-title.is-show:after {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}

.t-header {
  position: fixed;
  top: 0;
  width: 480px;
  z-index: 99;
  background-color: #FFFFFF;
}

@media (max-width: 767px) {
  .t-header {
    width: 100%;
  }
}
.t-header-popup_banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 80px;
  position: relative;
  padding: 0 15px;
}

@media (max-width: 767px) {
  .t-header-popup_banner {
    min-height: 60px;
  }
}
.t-header_logo.open .t-header_logo_link:before {
  background: url("../images/logo_white.png") no-repeat;
  background-size: contain;
}

.t-header_logo_link {
  display: inline-block;
  position: relative;
  text-indent: -9999px;
  width: 155px;
  height: 46px;
  z-index: 99;
}

.t-header_logo_link:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/logo.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.t-header_opener {
  width: 80px;
  height: 80px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 2px solid #EAEAEA;
}

@media (max-width: 767px) {
  .t-header_opener {
    width: 60px;
    height: 60px;
  }
}
.t-header_opener button {
  display: block;
  position: relative;
  width: 40px;
  height: 30px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .t-header_opener button {
    width: 30px;
    height: 25px;
  }
}
.t-header_opener button:focus-visible {
  outline: 2px auto #000000;
}

.t-header_opener.open {
  border: none;
}

.t-header_opener.open .t-header_opener_icon > span {
  background-color: #FFFFFF;
}

.t-header_opener.open .t-header_opener_icon > span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
}

.t-header_opener.open .t-header_opener_icon > span:nth-child(2) {
  opacity: 0;
  left: 100%;
}

.t-header_opener.open .t-header_opener_icon > span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 50%;
}

.t-header_opener_icon {
  width: 40px;
  height: 30px;
  margin: 0 auto;
  display: block;
  position: relative;
}

@media (max-width: 767px) {
  .t-header_opener_icon {
    width: 30px;
    height: 25px;
  }
}
.t-header_opener_icon > span {
  width: 100%;
  height: 5px;
  background-color: #00A395;
  display: block;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 1px;
}

.t-header_opener_icon > span:nth-child(1) {
  top: 0;
}

.t-header_opener_icon > span:nth-child(2) {
  top: calc(50% - 2px);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.t-header_opener_icon > span:nth-child(3) {
  bottom: 0;
}

.t-header_nav {
  width: 480px;
  background-color: #00A395;
  position: fixed;
  top: 0;
  left: 160px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  -webkit-transition: height 0ms 251ms ease-out, opacity 250ms 0ms ease-out;
  transition: height 0ms 251ms ease-out, opacity 250ms 0ms ease-out;
}

@media screen and (max-width: 1365px) {
  .t-header_nav {
    left: 50px;
  }
}
@media (max-width: 767px) {
  .t-header_nav {
    width: 100%;
    left: 0;
  }
}
.t-header_nav.open {
  height: 100%;
  opacity: 1;
  visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transition: height 0ms 0ms ease-out, opacity 250ms 1ms ease-out;
  transition: height 0ms 0ms ease-out, opacity 250ms 1ms ease-out;
}

.t-header_nav_container {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 80px;
}

.t-header .nav {
  height: 100%;
}

.t-header .nav_items {
  width: 100%;
  padding: 37px 20px 40px;
}

.t-header .nav_items li {
  display: block;
  width: 100%;
}

.t-header .nav_items li:not(:last-child) {
  margin-bottom: 24px;
}

.t-header .nav_items a {
  color: #FFFFFF;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: bold;
  width: 100%;
  position: relative;
  text-align: center;
  display: block;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}

.t-header .nav_items a:hover {
  color: #FFCA3B;
  opacity: 1;
}

.t-header .nav_search a {
  width: 100%;
  max-width: 313px;
  min-height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  background-color: #FFFFFF;
  margin: 0 auto 0;
  font-size: 1.6rem;
  line-height: 1.125;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  color: #00A395;
  position: relative;
  -webkit-transition: background 0.3s ease-out, color 0.3s ease-out;
  transition: background 0.3s ease-out, color 0.3s ease-out;
}

.t-header .nav_search a:after {
  content: "";
  width: 25px;
  height: 25px;
  background: url("../images/icon_search_yellow.svg") no-repeat;
  background-size: contain;
  position: relative;
  display: inline-block;
  margin-left: 10px;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}

.t-header .nav_search a:hover {
  opacity: 1;
  color: #FFFFFF;
  background-color: #FFCA3B;
}

.t-header .nav_search a:hover:after {
  background: url("../images/icon_search_green.svg") no-repeat;
  background-size: contain;
}

.t-footer {
  width: 480px;
  position: fixed;
  bottom: 0;
  left: 160px;
  text-align: center;
  z-index: 9;
}

@media screen and (max-width: 1365px) {
  .t-footer {
    left: 50px;
  }
}
@media (max-width: 767px) {
  .t-footer {
    left: 0;
    width: 100%;
  }
}
.t-footer_search a {
  width: 100%;
  min-height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.1rem;
  line-height: 1.4285714286;
  background-color: #00A395;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  color: #FFFFFF;
}

.t-footer_search a:after {
  content: "";
  width: 25px;
  height: 25px;
  background: url("../images/icon_search_yellow.svg") no-repeat;
  background-size: contain;
  position: relative;
  display: inline-block;
  margin-left: 10px;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}

.t-footer_search a:hover {
  background-color: #FFCA3B;
  opacity: 1;
}

.t-footer_search a:hover:after {
  background: url("../images/icon_search_green.svg") no-repeat;
  background-size: contain;
}

html.with-fancybox {
  width: auto;
  scroll-behavior: auto;
}

html.with-fancybox,
body.hide-scrollbar {
  width: auto;
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

html.disableScroll {
  overflow: hidden;
}

@media (min-width: 768px) {
  body {
    padding: 0 2.6041666667% 0 160px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1365px) {
  body {
    padding: 0 50px;
  }
}
#wrapper {
  position: relative;
}

.t-wrap {
  position: relative;
  min-width: 320px;
  max-width: 480px;
  overflow: hidden;
  z-index: 9;
  padding-top: 80px;
  padding-bottom: 65px;
}

@media (max-width: 767px) {
  .t-wrap {
    max-width: 100%;
    padding-top: 60px;
  }
}
.t-wrap .bg-wrap {
  width: 480px;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 160px;
  pointer-events: none;
  z-index: -1;
}

@media screen and (max-width: 1365px) {
  .t-wrap .bg-wrap {
    left: 50px;
  }
}
@media (max-width: 767px) {
  .t-wrap .bg-wrap {
    width: 100%;
    height: 100vh;
    left: 0;
  }
}
.t-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.bg-main {
  width: 100%;
  width: calc(100% + var(--scrollbar-default, 0px) - var(--scrollbar-compensate, 0px));
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: -15px;
  background: url("../images/kv_back.png") bottom right no-repeat;
  background-size: cover;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  opacity: 0;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
}

.bg-main.js-show {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  opacity: 1;
}

.kv_pic img {
  width: 100%;
  height: auto;
}

.kv_des {
  padding: 30px 0 32px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgb(212, 237, 248)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(212, 237, 248) 100%);
}

.kv_des_title {
  font-size: 1.9rem;
  line-height: 1.5789473684;
  font-weight: bold;
  margin-bottom: 23px;
}

.kv_des p {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 500;
}

.kv_des p + p {
  margin-top: 10px;
}

.p-scholarship {
  padding: 65px 0 0;
}

.p-scholarship_title {
  text-align: center;
  margin-bottom: 17px;
}

.p-scholarship_title > span {
  display: block;
  font-size: 3rem;
  line-height: 1.4666666667;
  font-weight: bold;
}

.p-scholarship_title > span + span {
  margin-top: 5px;
}

.p-scholarship_title > span .bg {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.p-scholarship_title > span .bg:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 202, 59, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-scholarship .desc {
  font-size: 1.9rem;
  line-height: 1.6842105263;
  font-weight: 500;
}

.p-scholarship .pic01 {
  margin: 7px 0 35px;
}

.p-scholarship_system_title {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.4545454545;
  font-weight: bold;
  margin-bottom: 15px;
}

.p-scholarship_system .pic02 {
  text-align: center;
  margin-bottom: 20px;
}

.p-scholarship_system .pic02 img {
  width: 275px;
}

.p-concerns {
  padding-bottom: 70px;
}

.p-concerns_pic img {
  width: 100%;
  height: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-title span {
  display: block;
}

.section-title_en {
  margin-bottom: 13px;
}

.section-title_ja {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  color: #FFCA3B;
}

.p-merit {
  padding: 49px 0 30px;
  background-color: #00A395;
}

.p-merit_wrap {
  margin-bottom: 30px;
}

.p-merit_item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 15px 10px 19px;
  text-align: center;
  -webkit-box-shadow: 5px 5px 8px rgba(51, 51, 51, 0.2);
  box-shadow: 5px 5px 8px rgba(51, 51, 51, 0.2);
}

.p-merit_item:not(:last-child) {
  margin-bottom: 10px;
}

.p-merit_item .icon {
  margin-bottom: 15px;
  display: block;
}

.p-merit_item .item_title {
  color: #00A395;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: bold;
  margin-bottom: 10px;
}

.p-merit_item .item_sub {
  font-size: 1.5rem;
  line-height: 1.4666666667;
  font-weight: bold;
  margin-bottom: 3px;
  display: block;
}

.p-merit_item p {
  font-size: 1.3rem;
  line-height: 1.6153846154;
  font-weight: 500;
}

.p-merit_desc-bottom {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.5454545455;
  font-weight: 900;
  color: #FFCA3B;
  margin-bottom: 12px;
}

.p-merit_desc-sub {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.5294117647;
  font-weight: bold;
  color: #FFFFFF;
}

.p-case {
  padding: 78px 0 0;
}

.p-case .section-title_en {
  margin-bottom: 7px;
}

.p-why {
  padding: 79px 0 39px;
}

.p-why .section-title_en {
  margin-bottom: 9px;
}

.p-why_sub {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.4545454545;
  font-weight: 900;
  margin-bottom: 18px;
}

.p-why p {
  font-size: 1.7rem;
  line-height: 1.5882352941;
  font-weight: 500;
}

.p-why p span {
  font-weight: bold;
  background-color: #FFE49C;
  display: inline-block;
  padding: 0 2px;
}

.p-why p + p {
  margin-top: 15px;
}

.p-voice {
  padding: 39px 0 69px;
}

.p-voice .section-title_en {
  margin-bottom: 7px;
}

.p-voice .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #BCBCBC;
  border-bottom: 1px solid #BCBCBC;
}

.p-voice .txt {
  width: calc(100% - 205px);
  padding: 15px 10px 15px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-voice .txt p {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  font-weight: 500;
}

.p-voice .pic {
  width: 205px;
}

.p-voice .voice-slider_control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 14px;
  gap: 18px;
}

.p-voice .voice-slider_control .slick-arrow {
  width: 18px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.p-voice .voice-slider_control .slick-arrow.is-hidden {
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.p-voice .voice-slider_control .arr_prev {
  background: url("../images/arr_prev.svg") no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .p-voice .voice-slider_control .arr_prev:hover {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}
.p-voice .voice-slider_control .arr_next {
  background: url("../images/arr_next.svg") no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .p-voice .voice-slider_control .arr_next:hover {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
}
.p-voice .voice-slider_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.p-voice .voice-slider_count {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: bold;
}

.p-voice .voice-slider_count:not(:last-child) {
  position: relative;
}

.p-voice .voice-slider_count:not(:last-child):after {
  content: "/";
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: bold;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -12px;
}

.p-qa {
  padding: 55px 0 15px;
  background-color: #FFFAEB;
}

.p-qa .section-title {
  margin-bottom: 29px;
}

.p-qa .section-title_en {
  margin-bottom: 2px;
}

.p-qa .c-accordion {
  border-top: 2px solid #FFFFFF;
}

.p-qa .c-accordion_item {
  padding: 15px 0 14px;
  border-bottom: 1px solid #FFFFFF;
}

.p-qa .c-accordion_trigger {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  padding-right: 28px;
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
}

.p-qa .c-accordion_trigger .arr {
  width: 20px;
  height: 20px;
  border: 1px solid #FFCA3B;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.p-qa .c-accordion_trigger .arr:before {
  content: "";
  width: 10px;
  height: 2px;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-qa .c-accordion_trigger .arr:after {
  content: "";
  width: 2px;
  height: 10px;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.p-qa .c-accordion_trigger[aria-expanded=true] .arr:after {
  opacity: 0;
}

.p-qa .c-accordion_panel {
  display: none;
}

.p-qa .c-accordion_content {
  margin-top: 10px;
  padding-right: 28px;
}

.p-qa .c-accordion_content p {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 500;
}

.p-qa .c-accordion_content .note {
  font-size: 1.2rem;
  line-height: 1.8333333333;
  position: relative;
  padding-left: 15px;
  margin-top: 5px;
}

.p-qa .c-accordion_content .note:before {
  content: "※";
  font-size: 1.2rem;
  line-height: 1.8333333333;
  position: absolute;
  top: 0;
  left: 0;
}

.p-qa .c-accordion_content .link {
  color: #00A395;
  text-decoration: underline;
  text-underline-position: under;
}

.p-qa .c-accordion_content .link:hover {
  text-decoration: none;
}

.copyright {
  text-align: center;
  padding-top: 35px;
}

.copyright p {
font-size: 1.4rem;
    line-height: 1.7142857143;
    font-weight: 500;
}

/*# sourceMappingURL=main.css.map */
