@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anta&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
.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: #00469B;
}

.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;
}

@font-face {
  font-family: "Gotham";
  src: url("../font/Gotham-Medium.eot");
  src: url("../font/Gotham-Medium.eot?#iefix") format("embedded-opentype"), url("../font/Gotham-Medium.woff2") format("woff2"), url("../font/Gotham-Medium.woff") format("woff"), url("../font/Gotham-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arial";
  src: url("../font/ArialMT.eot");
  src: url("../font/ArialMT.eot?#iefix") format("embedded-opentype"), url("../font/ArialMT.woff2") format("woff2"), url("../font/ArialMT.woff") format("woff"), url("../font/ArialMT.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "";
  src: url("../font/KozGoPr6N-Regular-AlphaNum.eot");
  src: url("../font/KozGoPr6N-Regular-AlphaNum.eot?#iefix") format("embedded-opentype"), url("../font/KozGoPr6N-Regular-AlphaNum.woff2") format("woff2"), url("../font/KozGoPr6N-Regular-AlphaNum.woff") format("woff"), url("../font/KozGoPr6N-Regular-AlphaNum.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  scroll-padding-top: 50px;
}

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

@media screen and (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  min-height: 100vh;
  color: #4d5357;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 600;
  overflow-wrap: break-word;
  overflow-x: hidden;
  letter-spacing: 0;
  text-align: left;
}

@media (max-width: 767px) {
  body {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  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;
}

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%);
}

@media screen and (min-width: 768px) {
  .onlySP {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .onlyPC {
    display: none !important;
  }
}
.l-header {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.l-header .l-inner {
  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;
  padding: 0px 35px;
  width: 100%;
}

@media (max-width: 767px) {
  .l-header .l-inner {
    padding: 0;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
    background-color: #ffffff;
  }
}
.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

@media (max-width: 767px) {
  .l-header__logo {
    padding-left: 5px;
  }
}
.l-header__logo .c-logo {
  width: 100%;
  max-width: 140px;
}

.l-header__logo .c-logo img {
  width: 100%;
  height: auto;
}

.l-header__logo .c-text img {
  width: 113px;
  display: block;
}

@media (max-width: 767px) {
  .l-header__logo .c-text img {
    width: 120px;
  }
}
@media screen and (max-width: 375px) {
  .l-header__logo .c-text img {
    width: 95px;
  }
}
.l-header__wrap {
  padding: 13px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .l-header__wrap {
    padding: 0;
  }
}
.l-header .c-nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 33px;
}

@media (max-width: 767px) {
  .l-header .c-nav__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .l-header .c-nav__menu li {
    border-bottom: solid 1px #4b5357;
  }
  .l-header .c-nav__menu li:last-child {
    border: none;
  }
}
.l-header .c-nav__menu li a {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Gotham", sans-serif;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .l-header .c-nav__menu li a {
    font-size: 2rem;
    line-height: 1;
    padding: 12px 17px;
    position: relative;
    display: block;
    text-transform: uppercase;
  }
}
.l-header .c-nav__menu li a:hover {
  font-weight: 700;
}

.l-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

@media (max-width: 767px) {
  .l-header__content {
    display: block;
    position: fixed;
    right: -100%;
    top: 63px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding: 0 10px;
    background-color: #ffffff;
    z-index: -1;
    width: 76%;
    -webkit-box-shadow: 0px 0 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0 10px rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.l-header__lang {
  border-left: solid 1px #4d5357;
  padding-left: 30px;
  padding-right: 10px;
}

@media (max-width: 767px) {
  .l-header__lang {
    border: none;
    padding: 6px 17px;
  }
}
.l-header__lang a {
  font-size: 1.2rem;
  font-family: "Gotham", sans-serif;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
}

@media (max-width: 767px) {
  .l-header__lang a {
    font-size: 2rem;
    padding-left: 40px;
  }
}
.l-header__lang a:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  left: 0;
  top: calc(50% - 7.5px);
  background: url(../images/ico_global.svg) no-repeat;
  background-size: contain;
}

@media (max-width: 767px) {
  .l-header__lang a:after {
    width: 26px;
    height: 26px;
    top: calc(50% - 13px);
  }
}
.l-header__hamburger {
  width: 30px;
  height: 23px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .l-header__hamburger {
    margin-bottom: 0;
    width: 56px;
    height: 56px;
    background-color: #7bc500;
  }
}
.l-header__hamburger span {
  background-color: #ffffff;
  width: 30px;
  height: 3px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-header__hamburger span:nth-child(1) {
  margin-top: -10px;
}

.l-header__hamburger span:nth-child(3) {
  margin-top: 10px;
}

.l-header.is-active .l-header__content {
  right: 7px;
}

.l-header.is-active .l-header__hamburger {
  -webkit-transform: skewX(0);
  transform: skewX(0);
}

.l-header.is-active .l-header__hamburger span:nth-child(1) {
  margin-top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.l-header.is-active .l-header__hamburger span:nth-child(2) {
  opacity: 0;
}

.l-header.is-active .l-header__hamburger span:nth-child(3) {
  margin-top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.l-footer__content {
  padding: 20px 0 40px;
  border-top: 1px solid #4d5357;
}

@media (max-width: 767px) {
  .l-footer__content {
    padding: 12px 0;
  }
}
.l-footer__text {
  text-align: center;
}

.l-footer__text img {
  width: 113px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .l-footer__text img {
    width: 87px;
  }
}
#l-wrapper {
  position: relative;
}

.l-inner {
  width: 900px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}

#l-loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  -webkit-perspective: 1px;
  perspective: 1px;
  z-index: 10002;
  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;
  background: #FFF;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0s;
  transition: 0s;
}

#l-loading.is-hidden {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

#l-loading .spinner {
  --UIB_SIZE: 40px;
  --UIB_SPEED: .9s;
  --UIB_COLOR: #333;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: var(--UIB_SIZE);
  width: var(--UIB_SIZE);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  pointer-events: none;
  -webkit-animation: fadeInSpinner 0.3s cubic-bezier(0.66, 0, 0.34, 1) 0.3s 1 both;
  animation: fadeInSpinner 0.3s cubic-bezier(0.66, 0, 0.34, 1) 0.3s 1 both;
}

#l-loading .spinner_dot {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

#l-loading .spinner_dot::before {
  content: "";
  height: 20%;
  width: 20%;
  border-radius: 50%;
  background-color: var(--UIB_COLOR);
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0.5;
  -webkit-animation: pulse calc(var(--UIB_SPEED) * 1.111) ease-in-out infinite;
  animation: pulse calc(var(--UIB_SPEED) * 1.111) ease-in-out infinite;
}

#l-loading .spinner_dot:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#l-loading .spinner_dot:nth-child(2)::before {
  -webkit-animation-delay: calc(var(--UIB_SPEED) * -0.875);
  animation-delay: calc(var(--UIB_SPEED) * -0.875);
}

#l-loading .spinner_dot:nth-child(3) {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

#l-loading .spinner_dot:nth-child(3)::before {
  -webkit-animation-delay: calc(var(--UIB_SPEED) * -0.75);
  animation-delay: calc(var(--UIB_SPEED) * -0.75);
}

#l-loading .spinner_dot:nth-child(4) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

#l-loading .spinner_dot:nth-child(4)::before {
  -webkit-animation-delay: calc(var(--UIB_SPEED) * -0.625);
  animation-delay: calc(var(--UIB_SPEED) * -0.625);
}

#l-loading .spinner_dot:nth-child(5) {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#l-loading .spinner_dot:nth-child(5)::before {
  -webkit-animation-delay: calc(var(--UIB_SPEED) * -0.5);
  animation-delay: calc(var(--UIB_SPEED) * -0.5);
}

#l-loading .spinner_dot:nth-child(6) {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

#l-loading .spinner_dot:nth-child(6)::before {
  -webkit-animation-delay: calc(var(--UIB_SPEED) * -0.375);
  animation-delay: calc(var(--UIB_SPEED) * -0.375);
}

#l-loading .spinner_dot:nth-child(7) {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

#l-loading .spinner_dot:nth-child(7)::before {
  -webkit-animation-delay: calc(var(--UIB_SPEED) * -0.25);
  animation-delay: calc(var(--UIB_SPEED) * -0.25);
}

#l-loading .spinner_dot:nth-child(8) {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

#l-loading .spinner_dot:nth-child(8)::before {
  -webkit-animation-delay: calc(var(--UIB_SPEED) * -0.125);
  animation-delay: calc(var(--UIB_SPEED) * -0.125);
}

@-webkit-keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInSpinner {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeInSpinner {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.l-main {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .l-main {
    margin-top: 56px;
  }
}
.l-kv {
  position: relative;
}

.l-kv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.l-kv__catch {
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: "Arial", sans-serif;
  color: #ffffff;
  width: 100%;
  text-align: center;
}

@media (max-width: 767px) {
  .l-kv__catch {
    top: 50%;
  }
}
.l-kv__catch .c-catch-large {
  font-size: 8.4rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  line-height: 1;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .l-kv__catch .c-catch-large {
    font-size: 4.8rem;
  }
}
.l-kv__catch .c-catch-small {
  font-size: 2.5rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .l-kv__catch .c-catch-small {
    font-size: 1.4rem;
  }
}
.l-message {
  text-align: center;
  padding: 75px 0 65px;
}

@media (max-width: 767px) {
  .l-message {
    padding: 60px 0 65px;
  }
}
.l-message .l-inner {
  position: relative;
}

.l-message__title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 21px;
  letter-spacing: 0.3em;
  color: #8dc21f;
}

@media (max-width: 767px) {
  .l-message__title {
    font-size: 1.9rem;
    margin-bottom: 38px;
    letter-spacing: 0.01em;
  }
}
.l-message .c-txt {
  font-size: 1.4rem;
  line-height: 2.1;
  font-weight: bold;
}

@media (max-width: 767px) {
  .l-message .c-txt {
    font-size: 1.45rem;
    line-height: 1.8333333333;
  }
}
.l-about {
  padding: 50px 0 70px;
  background-color: #efedec;
}

@media (max-width: 767px) {
  .l-about {
    padding: 40px 0;
  }
}
.l-about .c-title {
  border-bottom: none;
}

.l-about__inner {
  padding: 0 35px 23px;
  max-width: 588px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .l-about__inner {
    padding: 20px 8px;
    border: none;
  }
}
.l-about .c-txt {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 600;
  margin: 0 auto;
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
}

@media (max-width: 767px) {
  .l-about .c-txt {
    font-size: 1.4rem;
    line-height: 2.25;
  }
}
.l-about .c-img {
  max-width: 460px;
  margin: 43px auto 0;
}

@media (max-width: 767px) {
  .l-about .c-img {
    max-width: 85%;
    margin: 41px auto 0;
  }
}
.c-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 35px;
  font-family: "Arial", sans-serif;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .c-title {
    font-size: 2.7rem;
    border-bottom: solid 2px #8dc21f;
    margin-left: -20px;
    margin-right: -20px;
    padding-bottom: 3px;
    margin-bottom: 0;
  }
}
.l-information {
  padding: 50px 0;
}

@media (max-width: 767px) {
  .l-information .c-title {
    margin-bottom: 15px;
  }
}
.l-information__list {
  margin: 0 -20px;
  position: relative;
}

.l-information__list:after, .l-information__list:before {
  content: "";
  position: absolute;
  top: calc(50% - 30px);
  width: 85px;
  height: 10px;
  left: 25%;
  background: url(../images/ico_arrow_l.png) no-repeat;
  background-size: contain;
  z-index: 1;
}

@media (max-width: 767px) {
  .l-information__list:after, .l-information__list:before {
    left: 10px;
    width: 40px;
  }
}
.l-information__list::after {
  right: 25%;
  left: inherit;
  background: url(../images/ico_arrow_r.png) no-repeat;
  background-size: contain;
}

@media (max-width: 767px) {
  .l-information__list::after {
    right: 10px;
  }
}
.l-information__item .c-content {
  padding: 0 20px;
  display: inline-block;
}

@media (max-width: 767px) {
  .l-information__item .c-content {
    padding: 0 7px;
    width: 100%;
  }
}
.l-information__item .c-img {
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .l-information__item .c-img {
    margin-bottom: 8px;
  }
}
.l-information__item .c-txt {
  font-size: 1.2rem;
}

@media (max-width: 767px) {
  .l-information__item .c-txt {
    line-height: 1.5;
    display: block;
  }
}
.l-information .slick-track {
  margin: 0;
}

.l-information .c-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 33px;
  gap: 13px;
}

@media (max-width: 767px) {
  .l-information .c-controls {
    margin-top: 10px;
  }
}
.l-information .c-controls__btn {
  width: 15px;
  height: 15px;
  background: url("../images/ico_arrow.svg") no-repeat;
  cursor: pointer;
}

.l-information .c-controls__btn#info-next {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.l-information .c-controls .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}

@media (max-width: 767px) {
  .l-information .c-controls .slick-dots {
    gap: 15px;
  }
}
.l-information .c-controls .slick-dots button {
  text-indent: -9999px;
  color: transparent;
  width: 15px;
  height: 15px;
  background-color: #dbdcdc;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  cursor: pointer;
}

@media (max-width: 767px) {
  .l-information .c-controls .slick-dots button {
    width: 13px;
    height: 13px;
  }
}
.l-information .c-controls .slick-dots button:hover {
  background-color: #727171;
}

.l-information .c-controls .slick-dots .slick-active button {
  background-color: #727171;
}

.l-service {
  padding: 50px 0;
}

@media (max-width: 767px) {
  .l-service {
    padding: 27px 0;
  }
}
.l-service .c-title {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .l-service .c-title {
    margin-bottom: 18px;
  }
}
.l-service .c-ico {
  margin-bottom: 26px;
  text-align: center;
}

.l-service .c-ico img {
  width: 76px;
}

.l-service .c-ttl {
  font-size: 3.7rem;
  color: #46afa8;
  font-family: "Arial", sans-serif;
  text-align: left;
}

.l-service .c-ttl-sub {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
  width: 100%;
}

.l-service .c-btn-wrap {
  text-align: right;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .l-service .c-btn-wrap {
    text-align: center;
    margin-top: 26px;
  }
}
.l-service .c-btn {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  border: solid 1px #46afa8;
  color: #46afa8;
  display: inline-block;
  padding: 2px 24px;
  position: relative;
}

.l-service .c-btn:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: calc(50% - 5px);
  right: 10px;
  -webkit-mask-image: url(../images/ico_arrow.svg);
  mask-image: url(../images/ico_arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  background-color: #46afa8;
}

@media (max-width: 767px) {
  .l-service .c-btn {
    font-size: 1.5rem;
    padding: 0 36px;
  }
  .l-service .c-btn:after {
    width: 12px;
    height: 12px;
    top: calc(50% - 6px);
    right: 15px;
  }
}
.l-service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
}

@media (max-width: 767px) {
  .l-service__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}
.l-service__items:not(:last-child) {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .l-service__items:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .l-service__items:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .l-service__items:nth-child(even) .c-img {
    margin-left: 0;
    margin-right: calc(50% - 50vw);
  }
}
.l-service__items .c-img {
  max-height: 400px;
}

@media (max-width: 767px) {
  .l-service__items .c-img {
    max-height: none;
    margin: 0 -10px;
  }
}
.l-service__items .c-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

@media (min-width: 768px) {
  .l-service__items .c-img {
    margin-left: calc(50% - 50vw);
  }
}
.l-service__items .c-content {
  width: 400px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-top: 28px;
}

@media (max-width: 767px) {
  .l-service__items .c-content {
    width: 100%;
    padding-top: 25px;
    padding: 25px 8px 0;
    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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.l-service__items .c-content__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 30px;
  position: relative;
}

@media (max-width: 767px) {
  .l-service__items .c-content__head {
    padding-left: 70px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .l-service__items .c-content__head .c-ico {
    position: absolute;
    left: 0;
    top: 50%;
    width: 61px;
    margin-bottom: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .l-service__items .c-content__head .c-ttl {
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .l-service__items .c-content__head .c-ttl-sub {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 375px) {
  .l-service__items .c-content__head {
    padding-left: 4.5rem;
  }
  .l-service__items .c-content__head .c-ttl {
    font-size: 2.1rem;
  }
  .l-service__items .c-content__head .c-ico {
    width: 5rem;
    text-align: left;
  }
  .l-service__items .c-content__head .c-ico img {
    width: 4rem;
  }
}
.l-service__items .c-txt {
  font-size: 1.4rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .l-service__items .c-txt {
    font-size: 1.5rem;
  }
}
.l-service__items--smart .c-img img {
  -o-object-position: center center;
  object-position: center center;
}

.l-service__items--wellness .c-ttl {
  color: #df7c6e;
}

.l-service__items--wellness .c-btn {
  border-color: #df7c6e;
  color: #df7c6e;
}

.l-service__items--wellness .c-btn:after {
  background-color: #df7c6e;
}

.l-service__items--discovery .c-ttl {
  color: #ecc428;
}

.l-service__items--discovery .c-icon img {
  width: 68px;
}

.l-service__items--discovery .c-btn {
  border-color: #ecc428;
  color: #ecc428;
}

.l-service__items--discovery .c-btn:after {
  background-color: #ecc428;
}

.l-pagetop {
  position: fixed;
  bottom: 50px;
  right: 63px;
  width: 56px;
  height: 56px;
}

@media (max-width: 767px) {
  .l-pagetop {
    bottom: 30px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}
.l-group-section {
  padding: 50px 0 84px;
}

@media (max-width: 767px) {
  .l-group-section {
    padding: 30px 0;
  }
}
.l-group-section .gr-item .gr-title {
  text-transform: uppercase;
}

.l-group-section .gr-item a {
  text-decoration: underline;
}

.l-group-section .gr-item a:hover {
  text-decoration: none;
  opacity: 1;
}

@media (min-width: 768px) {
  .l-group-section .gr-item {
    position: relative;
  }
  .l-group-section .gr-item:before {
    content: "";
    width: 3px;
    height: 100%;
    background: url("../images/line.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .l-group-section .gr-item:not(:last-child) {
    margin-bottom: 70px;
  }
  .l-group-section .gr-item .gr-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-group-section .gr-item .gr-flex:not(:last-child) {
    margin-bottom: 62px;
  }
  .l-group-section .gr-item .gr-title {
    width: 250px;
    font-size: 3rem;
    line-height: 1;
    font-weight: bold;
    font-family: "Arial", sans-serif;
    padding: 0 38px;
  }
  .l-group-section .gr-item .gr-wrap {
    width: calc(100% - 250px);
  }
}
@media (max-width: 767px) {
  .l-group-section .gr-item:not(:last-child) {
    margin-bottom: 20px;
  }
  .l-group-section .gr-item .gr-title {
    font-size: 2.8rem;
    line-height: 1;
    font-weight: bold;
    font-family: "Arial", sans-serif;
    padding: 0 10px 10px;
    text-align: center;
    border-bottom: 2px solid #8DC21F;
    margin: 0 -20px 29px;
  }
  .l-group-section .gr-item .gr-wrap {
    padding: 0 8px;
  }
}
@media (max-width: 767px) {
  .l-group-section .l-room {
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .l-group-section .l-room .gr-title {
    padding-top: 27px;
  }
}
.l-group-section .l-room__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin: 0 -30px 10px 0;
}

@media (max-width: 767px) {
  .l-group-section .l-room__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin: 0 0 10px 0;
  }
}
.l-group-section .l-room__img li {
  border: 1px solid #4B5357;
  width: calc(33.33% - 30px);
  min-height: 145px;
  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: 1.5rem;
  line-height: 1;
  font-family: "Gotham", sans-serif;
  font-weight: 500;
}

@media (max-width: 767px) {
  .l-group-section .l-room__img li {
    width: 100%;
    min-height: 236px;
  }
}
.l-group-section .l-room__img li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.l-group-section .l-room p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4D5357;
  font-weight: 500;
}

@media (max-width: 767px) {
  .l-group-section .l-room p {
    font-size: 1.3rem;
    line-height: 2.3076923077;
  }
}
.l-group-section .l-facility {
  padding-bottom: 13px;
}

@media (max-width: 767px) {
  .l-group-section .l-facility {
    padding-bottom: 6px;
  }
}
.l-group-section .l-facility__list {
  margin-bottom: 40px;
}

.l-group-section .l-facility__list li:not(:last-child) {
  margin-bottom: 30px;
}

.l-group-section .l-facility .c-ttl {
  font-size: 1.6rem;
  color: #8dc21f;
  padding-left: 10px;
  padding-bottom: 10px;
  border-left: solid 1px #8dc21f;
  border-bottom: solid 1px #8dc21f;
  margin-bottom: 10px;
}

.l-group-section .l-facility .c-txt {
  font-size: 1.4rem;
  padding-left: 10px;
}

@media (min-width: 768px) {
  .l-group-section .l-facility__img {
    font-size: 0;
  }
  .l-group-section .l-facility__img li {
    display: inline-block;
  }
  .l-group-section .l-facility__img li:not(:last-child) {
    margin-right: 2px;
  }
}
@media (max-width: 767px) {
  .l-group-section .l-facility__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    gap: 8px;
    margin-right: -5px;
  }
  .l-group-section .l-facility__img li {
    width: calc(20% - 8px);
    text-align: center;
  }
  .l-group-section .l-facility__img li img {
    width: 45px;
    height: auto;
  }
}
.l-group-section .l-facility .note {
  font-size: 1rem;
  line-height: 1.8;
  color: #4D5357;
  font-weight: 500;
  margin-top: 5px;
  position: relative;
  padding-left: 10px;
  margin-left: 10px;
}

@media (max-width: 767px) {
  .l-group-section .l-facility .note {
    font-size: 1.4rem;
    margin-top: 9px;
  }
}
.l-group-section .l-facility .note:before {
  content: "※";
  font-size: 1rem;
  line-height: 1.8;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .l-group-section .l-facility .note:before {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .l-group-section .l-contact {
    padding-top: 39px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.l-group-section .l-contact .btn-cta a {
  max-width: 170px;
  min-height: 20px;
  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: 1.2rem;
  line-height: 1;
  text-decoration: none;
  color: #8DC21F;
  border: 1px solid #8DC21F;
  position: relative;
}

@media (max-width: 767px) {
  .l-group-section .l-contact .btn-cta a {
    margin: 0 auto;
    max-width: 227px;
    min-height: 30px;
    font-size: 1.5rem;
    line-height: 1;
  }
}
.l-group-section .l-contact .btn-cta a:after {
  content: "";
  width: 6px;
  height: 7px;
  background: url("../images/arr_green.svg") no-repeat;
  background-size: contain;
  position: relative;
  display: inline-block;
  margin-left: 10px;
}

@media (max-width: 767px) {
  .l-group-section .l-contact .btn-cta a:after {
    width: 8px;
    height: 10px;
  }
}
.l-group-section .l-contact .btn-cta a:hover {
  opacity: 0.7;
}

.l-group-section .l-faq {
  padding: 21px 0 55px;
}

@media (max-width: 767px) {
  .l-group-section .l-faq {
    padding: 56px 0 30px;
  }
  .l-group-section .l-faq .gr-wrap {
    padding: 0 5px;
  }
}
@media (min-width: 768px) {
  .l-group-section .l-faq__wrapper {
    padding: 14px 14px 0 14px;
  }
}
@media (max-width: 767px) {
  .l-group-section .l-faq__wrapper {
    padding: 10px 0;
  }
}
.l-group-section .l-faq__item:not(:last-child) {
  margin-bottom: 53px;
}

@media (max-width: 767px) {
  .l-group-section .l-faq__item:not(:last-child) {
    margin-bottom: 38px;
  }
}
.l-group-section .l-faq__item:has(+ .l-faq__toggle) {
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .l-group-section .l-faq__item:has(+ .l-faq__toggle) {
    margin-bottom: 30px;
  }
}
.l-group-section .l-faq__item.hidden {
  display: none;
}

.l-group-section .l-faq__toggle {
  margin-left: -13px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.l-group-section .l-faq__toggle:has(.is-open) {
  margin-bottom: 36px;
}

@media (max-width: 767px) {
  .l-group-section .l-faq__toggle:has(.is-open) {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .l-group-section .l-faq__toggle {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.l-group-section .l-faq__toggle .l-faq__btn {
  border: 1px solid #8DC21F;
  background-color: #fff;
  color: #8DC21F;
  font-size: 1.4rem;
  line-height: 1.1428571429;
  font-weight: 500;
  padding: 7px 20px;
  position: relative;
  text-align: center;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  width: 100%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media (max-width: 767px) {
  .l-group-section .l-faq__toggle .l-faq__btn {
    font-size: 1.8rem;
    line-height: 1.2222222222;
    padding: 5px 20px;
  }
}
.l-group-section .l-faq__toggle .l-faq__btn .arr {
  width: 22px;
  height: 22px;
  border-radius: 100%;
  background-color: #8DC21F;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
  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;
}

@media (max-width: 767px) {
  .l-group-section .l-faq__toggle .l-faq__btn .arr {
    width: 18px;
    height: 18px;
  }
}
.l-group-section .l-faq__toggle .l-faq__btn .arr:before {
  content: "";
  width: 2px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

@media (max-width: 767px) {
  .l-group-section .l-faq__toggle .l-faq__btn .arr:before {
    width: 1px;
    height: 9px;
  }
}
.l-group-section .l-faq__toggle .l-faq__btn .arr:after {
  content: "";
  width: 12px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .l-group-section .l-faq__toggle .l-faq__btn .arr:after {
    height: 1px;
    width: 9px;
  }
}
.l-group-section .l-faq__toggle .l-faq__btn.is-open .arr:before {
  opacity: 0;
}

.l-group-section .l-faq__toggle .l-faq__btn:hover {
  opacity: 0.7;
}

.l-group-section .l-faq__title {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: bold;
  margin-bottom: 12px;
  position: relative;
  padding-left: 35px;
}

@media (max-width: 767px) {
  .l-group-section .l-faq__title {
    font-size: 1.9rem;
    line-height: 1.3684210526;
    margin-bottom: 26px;
  }
}
.l-group-section .l-faq__title:before {
  content: "Q";
  font-size: 2rem;
  line-height: 1;
  color: #8DC21F;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
  font-family: "Arial", sans-serif;
}

@media (max-width: 767px) {
  .l-group-section .l-faq__title:before {
    font-size: 3rem;
    line-height: 1;
  }
}
.l-group-section .l-faq__des {
  position: relative;
  padding-left: 35px;
}

.l-group-section .l-faq__des:before {
  content: "A";
  font-size: 2rem;
  line-height: 1;
  color: #B5B5B6;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
  font-family: "Arial", sans-serif;
}

@media (max-width: 767px) {
  .l-group-section .l-faq__des:before {
    font-size: 3rem;
    line-height: 1;
  }
}
.l-group-section .l-faq__des p {
  font-size: 1.4rem;
  line-height: 1.2857142857;
  font-weight: 500;
}

@media (max-width: 767px) {
  .l-group-section .l-faq__des p {
    font-size: 1.4rem;
    line-height: 2.1428571429;
  }
}
.l-group-section .l-access {
  padding-top: 50px;
}

@media (max-width: 767px) {
  .l-group-section .l-access {
    padding-top: 18px;
  }
  .l-group-section .l-access .gr-title {
    margin-bottom: 20px;
  }
}
.l-group-section .l-access p {
  margin-top: 9px;
  font-size: 1.4rem;
  line-height: 1.2857142857;
  color: #4D5357;
  font-weight: 500;
}

@media (max-width: 767px) {
  .l-group-section .l-access p {
    font-size: 1.3rem;
    line-height: 1.5384615385;
  }
}
@media (min-width: 768px) {
  .l-group-section .l-access .btn-map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 24px;
    margin-right: 17px;
  }
}
.l-group-section .l-access .btn-map a {
  width: 100%;
  max-width: 78px;
  min-height: 20px;
  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: 1.2rem;
  line-height: 1;
  color: #8DC21F;
  border: 1px solid #8DC21F;
  position: relative;
}

@media (max-width: 767px) {
  .l-group-section .l-access .btn-map a {
    margin: 20px auto 0;
    max-width: 117px;
    min-height: 30px;
    font-size: 1.5rem;
    line-height: 1;
  }
}
.l-group-section .l-access .btn-map a:after {
  content: "";
  width: 6px;
  height: 7px;
  background: url("../images/arr_green.svg") no-repeat;
  background-size: contain;
  position: relative;
  display: inline-block;
  margin-left: 10px;
}

@media (max-width: 767px) {
  .l-group-section .l-access .btn-map a:after {
    width: 8px;
    height: 10px;
  }
}
.l-group-section .l-outline {
  padding: 37px 0 55px;
}

@media (max-width: 767px) {
  .l-group-section .l-outline {
    padding: 67px 0 25px;
  }
  .l-group-section .l-outline .gr-title {
    margin-bottom: 13px;
  }
}
.l-group-section .l-outline p {
  font-size: 1.4rem;
  line-height: 1.2857142857;
  color: #4D5357;
}

@media (max-width: 767px) {
  .l-group-section .l-outline p {
    font-size: 1.3rem;
    line-height: 1.5384615385;
  }
}
/*# sourceMappingURL=style.css.map */
