@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,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-show {
  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-show {
  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-show {
  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-show {
  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;
}

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

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

@media (max-width: 370px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  min-height: 100vh;
  color: #5A5A5A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 2.1875;
  font-weight: 400;
  overflow-wrap: break-word;
  overflow-x: hidden;
  letter-spacing: 0;
  text-align: left;
}

@media (max-width: 767px) {
  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%);
}

.c-text {
  font-size: 1.6rem;
  line-height: 2.1875;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.c-text--large {
  font-size: 1.8rem;
  line-height: 2.5;
}

@media (max-width: 767px) {
  .c-text--large {
    font-size: 1.8rem;
    line-height: 2.3333333333;
  }
}
.no-scroll {
  overflow: hidden;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-header:after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px) brightness(1);
  backdrop-filter: blur(10px) brightness(1);
  opacity: 0;
}

.l-header.is-sticky:after {
  opacity: 1;
}

.l-header__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: 28px 40px;
  width: 100%;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.l-header__logo {
  z-index: 2;
}

.l-header__logo a:hover {
  opacity: 0.7;
}

.l-header__logo .c-logo {
  width: 100%;
  max-width: 272px;
}

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

.l-header__logo .c-logo .logo-fixed {
  display: none;
  width: 196px;
}

.l-header__logo .c-link-wrap a {
  font-weight: 700;
  color: #ffffff;
}

.l-header__logoRight {
  width: 169px;
}

.l-header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 23px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-header .c-nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.l-header .c-nav__menu li a {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.2222222222;
  letter-spacing: 0.04em;
  color: #5A5A5A;
  font-weight: 500;
  display: block;
  padding: 0 0 4px;
}

.l-header .c-nav__menu li a::before {
  content: "";
  position: absolute;
  background-color: #4ABB98;
  bottom: 0;
  display: block;
  height: 2px;
  left: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  transition: -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  width: 100%;
}

.l-header .c-nav__menu li a.is-current::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

@media screen and (min-width: 960px) {
  .l-header .c-nav__menu li a:hover {
    opacity: 1 !important;
  }
  .l-header .c-nav__menu li a:hover::before {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
}
.l-header .c-nav__menu:has(a:hover) li a {
  opacity: 0.7;
}

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

.l-header__content .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.l-header__nav {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.l-header__hamburger {
  width: 45px;
  height: 30px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 8px;
  margin-bottom: 0;
  -webkit-transition: margin-left 0.3s ease-in-out;
  transition: margin-left 0.3s ease-in-out;
}

.l-header__hamburger span {
  background-color: #5A5A5A;
  width: 45px;
  height: 1px;
  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: -8px;
}

.l-header__hamburger span:nth-child(2) {
  opacity: 1;
}

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

.l-header__hamburger.is-active span {
  background-color: #FFFFFF;
}

.l-header.is-open {
  z-index: 9999;
}

.l-header.is-open .l-header__content .l-header__content-inner {
  opacity: 1;
  right: 0;
  z-index: 1;
}

.l-header.is-open .l-header__content .overlay {
  opacity: 1;
  visibility: visible;
}

.l-header.is-open .l-header__nav {
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 9;
  opacity: 1;
}

.l-header.is-open .l-header__hamburger {
  -webkit-transform: skewX(0);
  transform: skewX(0);
  margin-left: 18px;
}

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

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

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

.l-header.header-fixed {
  background-color: #ffffff;
}

.l-header.header-fixed .l-header__inner {
  padding-top: 10px;
  padding-bottom: 10px;
}

.l-header.header-fixed .c-nav__menu li a {
  color: #4ABB98;
}

.l-header.header-fixed .c-logo .logo {
  display: none;
}

.l-header.header-fixed .c-logo .logo-fixed {
  display: block;
}

.l-header.header-fixed .l-header__hamburger span {
  background-color: #4ABB98;
}

.l-header .l-header__btn {
  margin-top: 32px;
}

.l-header .l-header__btn .c-float-cta {
  width: 100%;
  border-radius: 5px;
  padding: 10px 18px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-header .l-header__btn .c-float-cta__text--ja {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.l-header .l-header__link {
  color: #ffffff;
  margin-top: auto;
  padding: 0 20px;
}

.l-header .l-header__link .c-link {
  text-decoration: none;
}

.l-header .l-header__link-text {
  margin-top: 4px;
}

@media (max-width: 767px) {
  .l-header__inner {
    padding: 13px 20px;
    -webkit-transition: padding 0.3s ease-in-out;
    transition: padding 0.3s ease-in-out;
  }
  .l-header__logo .c-logo {
    max-width: 118px;
  }
  .l-header__logo .c-logo .logo-fixed {
    width: 113px;
  }
  .l-header__wrap {
    padding: 0;
    gap: 15px;
  }
  .l-header .c-nav__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .l-header .c-nav__menu li {
    border-bottom: 1px solid #ffffff;
  }
  .l-header .c-nav__menu li a {
    font-size: 1.6rem;
    font-size: 1.6rem;
    line-height: 1.375;
    padding: 30px 18px;
    position: relative;
    text-transform: uppercase;
    color: #ffffff;
  }
  .l-header .c-nav__menu li a::before {
    content: "";
  }
  .l-header .c-nav__menu li a:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    right: 0;
    height: 10px;
    border: solid 1px #ffffff;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    border-width: 1px 1px 0 0;
  }
  .l-header__nav {
    width: 100%;
  }
  .l-header__content {
    opacity: 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: initial;
    -ms-flex-align: initial;
    align-items: initial;
    gap: 0;
    position: fixed;
    right: -100%;
    top: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding: 82px 20px 40px;
    background-color: #747474;
    z-index: -1;
    height: 100vh;
    height: 100dvh;
    width: 100%;
  }
  .l-header__content-inner {
    opacity: 0;
    display: block;
    position: fixed;
    right: -100%;
    top: 91px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding: 8px 23px 32px 20px;
    background-color: #ffffff;
    z-index: -1;
  }
  .l-header.is-open .l-header__content {
    right: 0;
    opacity: 1;
    overflow-y: scroll;
  }
}
.l-float-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.l-float-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 767px) {
  .l-float-cta {
    bottom: 0;
    right: 0;
  }
}
.l-float-cta.is-overlap .c-float-cta {
  background-color: #ddefe3;
  color: #4ABB98;
}

.l-float-cta.is-overlap .c-float-cta .c-float-cta__icon {
  background-color: #4ABB98;
}

.l-float-cta.is-overlap .c-float-cta .c-arrow .circle circle {
  stroke: #4ABB98;
}

.l-float-cta.is-overlap .c-float-cta .c-arrow .allow-right > path {
  fill: #4ABB98;
}

.c-float-cta {
  min-width: 260px;
  min-height: 70px;
  background-color: #4ABB98;
  border-radius: 10px;
  padding: 10px 35px;
  color: #FFFFFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  border: solid 1px #4ABB98;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-float-cta__text {
  font-size: 1.2rem;
  line-height: 1.4166666667;
  display: block;
  font-weight: 500;
}

.c-float-cta__text span {
  display: block;
}

.c-float-cta__text--en {
  font-size: 2.8rem;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.c-float-cta__icon {
  width: 30px;
  height: 30px;
  -webkit-mask-image: url("../images/ico_arrow_small.svg");
  mask-image: url("../images/ico_arrow_small.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #FFFFFF;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-float-cta .c-arrow {
  width: 30px;
  height: 30px;
}

.c-float-cta .c-arrow > .allow-right {
  width: 18px;
  height: 6px;
}

.c-float-cta .c-arrow > .circle {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
}

.c-float-cta:hover {
  opacity: 1;
  background-color: #ddefe3;
  color: #4ABB98;
}

.c-float-cta:hover .c-float-cta__icon {
  background-color: #4ABB98;
}

.c-float-cta:hover .c-arrow .circle circle {
  stroke: #4ABB98;
}

.c-float-cta:hover .c-arrow .allow-right > path {
  fill: #4ABB98;
}

@media (max-width: 767px) {
  .c-float-cta {
    border-radius: 0;
    padding: 7px 30px;
    min-width: 223px;
    gap: 13px;
    min-height: 60px;
  }
  .c-float-cta__text--ja {
    font-size: 1.1rem;
    line-height: 1.4545454545;
  }
  .c-float-cta__text--en {
    font-size: 2.4rem;
    line-height: 1.125;
  }
}
.l-cta {
  margin: 200px 0 40px;
}

.l-cta__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #ddefe3;
  border-radius: 20px;
  padding: 100px 80px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 40px;
  position: relative;
  overflow: hidden;
  color: #4ABB98;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-cta__link {
    padding: 50px 40px;
    gap: 20px;
  }
}
.l-cta__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4ABB98;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.l-cta__link .c-arrow {
  border-color: #4ABB98;
}

.l-cta__link .c-arrow .circle circle {
  stroke: #4ABB98;
}

.l-cta__link .c-arrow .allow-right > path {
  fill: #4ABB98;
}

.l-cta__link.is-show {
  opacity: 1;
  color: #FFFFFF;
}

.l-cta__link.is-show::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.l-cta__link.is-show .c-arrow {
  border-color: #FFFFFF;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.l-cta__link.is-show .c-arrow .circle circle {
  stroke: #FFFFFF;
}

.l-cta__link.is-show .c-arrow .allow-right path {
  fill: #FFFFFF;
}

.l-cta__link:hover {
  color: #4ABB98;
}

.l-cta__link:hover::before {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.l-cta__link:hover .c-arrow {
  border-color: #FFFFFF;
}

.l-cta__link:hover .c-arrow .circle circle {
  stroke: #4ABB98;
}

.l-cta__link:hover .c-arrow .allow-right > path {
  fill: #4ABB98;
}

.l-cta__left {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
}

.l-cta__subtitle {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0.04em;
  margin: 0;
  position: relative;
  padding-left: 10px;
  margin-bottom: 69px;
}

.l-cta__subtitle::before {
  content: "-";
  position: absolute;
  left: 0;
}

.l-cta__title {
  font-size: 6.6rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.l-cta__right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 20px;
  position: relative;
}

.l-cta__text {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 0;
  text-align: right;
}

@media (max-width: 767px) {
  .l-cta {
    margin: 180px 0 30px;
  }
  .l-cta__link {
    padding: 50px 18px 53px;
    gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
    border-radius: 10px;
  }
  .l-cta__subtitle {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 23px;
  }
  .l-cta__title {
    font-size: 4.6rem;
    line-height: 1;
  }
  .l-cta__left {
    padding-bottom: 0;
  }
  .l-cta__left .c-arrow {
    position: absolute;
    bottom: -5px;
    right: 0;
  }
  .l-cta__right {
    gap: 15px;
  }
  .l-cta__text {
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: left;
  }
}
@media (max-width: 370px) {
  .l-cta__title {
    font-size: 4.2rem;
    line-height: 1;
  }
}
.l-footer {
  background-color: #4a4a4a;
  padding: 70px 0 20px;
}

.l-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 72px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-footer__content {
    gap: 20px;
  }
}
.l-footer__logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.l-footer__logo-img {
  width: 196px;
  -o-object-fit: contain;
  object-fit: contain;
}

.l-footer__nav {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 8px;
}

.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-footer__nav-list {
    gap: 20px;
  }
}
.l-footer__nav-item {
  margin: 0;
  padding: 0;
}

.l-footer__nav-link {
  font-size: 1.6rem;
  line-height: 1.375;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.l-footer__nav-link::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  bottom: -5px;
  display: block;
  height: 1px;
  left: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  transition: -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  width: 100%;
}

.l-footer__nav-link:hover::after {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

.l-footer__right {
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-top: 12px;
}

.l-footer__related {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: 0.02em;
  margin-bottom: 13px;
}

.l-footer__related-link {
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-footer__related-link span {
  margin-right: 15px;
}

.l-footer__related-link:hover {
  opacity: 0.8;
}

.l-footer__policy {
  margin: 0;
}

.l-footer__policy-link {
  font-size: 1.2rem;
  line-height: 1.4166666667;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-footer__policy-link:hover {
  opacity: 0.8;
}

.l-footer__copyright {
  font-size: 1.2rem;
  line-height: 1.1666666667;
  color: #FFFFFF;
  margin: 0;
  font-family: "Roboto", sans-serif;
  margin-top: 61px;
  text-align: right;
}

@media (max-width: 767px) {
  .l-footer {
    padding: 52px 0 30px;
  }
  .l-footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
    gap: 0;
  }
  .l-footer__logo {
    gap: 12px;
  }
  .l-footer__logo-img {
    width: 156px;
  }
  .l-footer__logo-text {
    font-size: 2.4rem;
    line-height: 0.0416666667;
  }
  .l-footer__nav {
    -webkit-box-pack: inherit;
    -ms-flex-pack: inherit;
    justify-content: inherit;
    margin: 35px 18px 63px;
    padding-top: 0;
  }
  .l-footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
    gap: 20px;
  }
  .l-footer__nav-link {
    font-size: 1.6rem;
    line-height: 1.375;
    padding: 2px 0;
  }
  .l-footer__right {
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
    margin-left: 18px;
    padding-top: 0;
  }
  .l-footer__policy-link {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
  .l-footer__copyright {
    font-size: 1.2rem;
    line-height: 1.1666666667;
    margin-top: 40px;
    text-align: center;
  }
}
#l-wrapper {
  position: relative;
}

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

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: solid 1px #4ABB98;
  border-radius: 50px;
  width: 428px;
  max-width: 100%;
  background-color: #4ABB98;
  padding: 12px 25px 12px 45px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-btn__text {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.45;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.c-btn:hover {
  opacity: 1;
}

.c-btn:hover .c-btn__text {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

.c-btn--white {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  width: auto;
}

.c-btn--white .c-btn__text {
  color: #4ABB98;
  text-align: left;
}

.c-btn--white .c-arrow > .allow-right > path {
  fill: #4ABB98;
}

.c-btn--white .c-arrow > .circle circle {
  stroke: #4ABB98;
}

.c-btn--white:hover .c-arrow > .circle circle {
  stroke: #4ABB98;
}

.c-btn--no-border {
  border: none;
  padding: 0 !important;
  width: auto;
}

.c-btn--no-border .c-btn__text {
  text-align: left;
}

@media (max-width: 767px) {
  .c-btn {
    width: 100%;
    padding: 16px 26px 16px 28px;
    gap: 30px;
  }
  .c-btn__text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
a:has(.c-arrow):hover .c-arrow {
  border-color: transparent;
}

a:has(.c-arrow):hover .c-arrow > .circle > circle {
  stroke-dasharray: 366 366;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.c-arrow {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 0px;
  position: relative;
  width: 74px;
  height: 74px;
  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: 50px;
  overflow: hidden;
  border: 1px solid #B9E1C8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-arrow > .circle {
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: -2px;
  left: -2px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.c-arrow > .circle circle {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  fill: transparent;
  stroke: #ffffff;
  stroke-width: 4;
  stroke-dasharray: 0 366;
}

.c-arrow > .allow-right {
  width: 26px;
  height: 8px;
  -webkit-transform: translate(2px, -1px);
  transform: translate(2px, -1px);
}

.c-arrow > .allow-right > path {
  fill: #ffffff;
}

@media (max-width: 767px) {
  .c-arrow {
    width: 47px;
    height: 47px;
  }
  .c-arrow > .circle {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
  }
  .c-arrow .allow-right {
    -webkit-transform: translate(2px, -1px);
    transform: translate(2px, -1px);
  }
}
.page-home section {
  padding: 100px 0;
}

.page-home section:first-child {
  padding-top: 0;
}

.page-home section:last-child {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .page-home section {
    padding: 160px 0 40px;
  }
}
.l-kv {
  position: relative;
  padding: 0 !important;
}

.l-kv__inner {
  position: relative;
}

.l-kv__slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-kv__slider--item {
  position: relative;
  width: 100%;
  height: 100%;
  display: none!important;
}

.l-kv__slider--item:first-child {
  display: block!important;
}

.slick-initialized .slick-slide {
  display: block!important;
}

.l-kv__slider--item img {
  min-height: 100vh;
  max-height: 100vh;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.l-kv__content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 65px;
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  .l-kv__content {
    padding: 0 40px;
  }
}
.l-kv__title span {
  display: block;
}

.l-kv__title--main {
  font-size: 4.4rem;
  line-height: 1.3636363636;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.l-kv__title--sub {
  font-size: 2.6rem;
  line-height: 1.4230769231;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.l-kv__new {
  padding: 18px 28px 18px 84px;
  background-color: #FFFFFF;
  margin-left: -65px;
  margin-top: 50px;
}

@media (orientation: portrait){
  .is-tablet .l-kv__new {
    position: absolute;
    bottom: 0;
    margin-top: 0;
    left: 40px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-kv__new {
    padding-left: 60px;
  }
}
.l-kv__new-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.l-kv__new-item span {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.04em;
}

.l-kv__new-item .c-tag {
  padding: 4px 6px;
  background-color: #ddefe3;
  color: #4ABB98;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  letter-spacing: 0.02em;
}

.l-kv__new-item .c-date {
  font-family: "Roboto", sans-serif;
}

.sp-tablet {
  display: none!important;
}

@media (orientation: portrait) {
  .is-tablet .sp-tablet {
    display: block!important;
  }
  .is-tablet .pc-tablet {
    display: none!important;
  }
  .is-tablet .l-kv__content {
    padding: 0 35px;
    top: 112px;
    width: 100%;
  }
  .is-tablet .l-kv__title--main {
    font-size: 2.8rem;
    line-height: 1.4285714286;
    margin-bottom: 29px;
  }
  .is-tablet .l-kv__title--sub {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
  }
  .is-tablet .l-kv__logo {
    width: 202px;
  }
}
@media (max-width: 767px) {
  .sp-tablet {
    display: block!important;
  }
  .pc-tablet {
    display: none!important;
  }
  .l-kv__content {
    padding: 0 20px;
    top: 112px;
    width: 100%;
  }
  .l-kv__title--main {
    font-size: 2.8rem;
    line-height: 1.4285714286;
    margin-bottom: 29px;
  }
  .l-kv__title--sub {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
  }
  .l-kv__logo {
    width: 202px;
  }
}
.c-title {
  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: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 21px;
  margin-bottom: 80px;
}

.c-title__ja {
  font-size: 2.6rem;
  line-height: 1.4230769231;
  color: #4ABB98;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 30px;
}

.c-title__ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 18px;
  height: 3px;
  background-color: #4ABB98;
}

.c-title__en {
  font-size: 9rem;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-family: "Roboto", sans-serif;
  margin-bottom: -15px;
}

@media (max-width: 767px) {
  .c-title {
    margin-bottom: 60px;
  }
  .c-title__ja {
    font-size: 2rem;
    line-height: 1.45;
    padding-left: 26px;
  }
  .c-title__ja::before {
    width: 14px;
    top: 45%;
  }
  .c-title__en {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: -10px;
  }
}
.l-about {
  text-align: center;
  position: relative;
}

.l-about::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(45deg, rgba(221, 239, 227, 0.42) 0%, rgba(75, 187, 153, 0.35) 84.1%, rgba(74, 187, 152, 0.35) 100%);
  opacity: 0.9;
}

.l-about__text {
  font-size: 3.2rem;
  line-height: 1.625;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.l-about__img {
  max-width: 910px;
  margin: 45px auto 0;
}

@media (max-width: 767px) {
  .l-about {
    padding-top: 100px !important;
  }
  .l-about__text {
    font-size: 2.4rem;
    line-height: 1.75;
    margin-bottom: 47px;
    text-align: center;
  }
  .l-about__img {
    max-width: 100%;
    margin-top: 18px;
  }
  .l-about__content {
    max-width: 300px;
    margin: 0 auto;
    text-align: left;
  }
}
.l-feature {
  background: rgba(221, 239, 227, 0.35);
}

.l-feature .c-title {
  margin-bottom: 40px;
}

.l-feature__title {
  font-size: 3.2rem;
  line-height: 1.4375;
  color: #4ABB98;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 60px;
}

.l-feature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-feature__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 35px 43px;
  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: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-feature__item:nth-child(1) {
  -webkit-transition-delay: 0s !important;
  transition-delay: 0s !important;
}

.l-feature__item:nth-child(2) {
  -webkit-transition-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}

.l-feature__item:nth-child(3) {
  -webkit-transition-delay: 0.6s !important;
  transition-delay: 0.6s !important;
}

.l-feature__item:nth-child(4) {
  -webkit-transition-delay: 0.9s !important;
  transition-delay: 0.9s !important;
}

.l-feature__item:nth-child(5) {
  -webkit-transition-delay: 1.2s !important;
  transition-delay: 1.2s !important;
}

.l-feature__item:nth-child(6) {
  -webkit-transition-delay: 1.5s !important;
  transition-delay: 1.5s !important;
}

.l-feature__item .c-text {
  line-height: 2;
}

.l-feature__number {
  font-size: 5.8rem;
  line-height: 1;
  color: #4ABB98;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  margin-bottom: 27px;
  letter-spacing: 0.02em;
}

.l-feature__heading {
  font-size: 2.6rem;
  line-height: 1.6153846154;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 19px;
  color: #4ABB98;
  min-height: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.l-feature__icon {
  width: 180px;
  height: 180px;
  margin-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.l-feature__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.l-feature__text {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #5A5A5A;
  letter-spacing: 0.02em;
  text-align: left;
}

.l-feature__support {
  max-width: 1040px;
  margin: 100px auto 0;
}

.l-feature__support-heading {
  font-size: 3.4rem;
  line-height: 1.7352941176;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
  text-align: center;
}

.l-feature__support .c-text {
  text-align: center;
}

.l-feature__support .c-text--large {
  line-height: 1.9444444444;
}

.l-feature__support-intro {
  font-size: 1.8rem;
  line-height: 1.7777777778;
  color: #5A5A5A;
  letter-spacing: 0.02em;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  text-align: center;
  margin-right: auto;
}

.l-feature__support-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-top: 80px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-feature__support-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 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: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-feature__support-item:nth-child(1) {
  -webkit-transition-delay: 0s !important;
  transition-delay: 0s !important;
}

.l-feature__support-item:nth-child(2) {
  -webkit-transition-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}

.l-feature__support-item:nth-child(3) {
  -webkit-transition-delay: 0.6s !important;
  transition-delay: 0.6s !important;
}

.l-feature__support-item:nth-child(4) {
  -webkit-transition-delay: 0.9s !important;
  transition-delay: 0.9s !important;
}

.l-feature__support-item:nth-child(5) {
  -webkit-transition-delay: 1.2s !important;
  transition-delay: 1.2s !important;
}

.l-feature__support-item:nth-child(6) {
  -webkit-transition-delay: 1.5s !important;
  transition-delay: 1.5s !important;
}

.l-feature__support-item .c-text {
  text-align: left;
}

.l-feature__support-title {
  font-size: 2.4rem;
  line-height: 1.4583333333;
  color: #5A5A5A;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 21px;
  text-align: center;
}

.l-feature__support-img {
  width: 100%;
  margin-bottom: 48px;
}

.l-feature__support-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.l-feature__btn {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 767px) {
  .l-feature .c-title {
    margin-bottom: 45px;
  }
  .l-feature__title {
    font-size: 2.2rem;
    line-height: 1.4545454545;
    margin-bottom: 30px;
  }
  .l-feature__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
  }
  .l-feature__item {
    padding: 43px 21px 46px;
  }
  .l-feature__number {
    font-size: 4.6rem;
    line-height: 1;
    margin-bottom: 21px;
  }
  .l-feature__heading {
    font-size: 2rem;
    line-height: 1.9;
    margin-bottom: 24px;
    min-height: auto;
  }
  .l-feature__icon {
    width: 160px;
    height: 160px;
    margin-bottom: 27px;
  }
  .l-feature__text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
  .l-feature__support-heading {
    font-size: 2.2rem;
    line-height: 1.9090909091;
    margin-bottom: 51px;
  }
  .l-feature__support-content {
    max-width: 300px;
    margin: 0 auto;
    text-align: left;
  }
  .l-feature__support .c-text {
    text-align: left;
  }
  .l-feature__support-intro {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 40px;
  }
  .l-feature__support-list {
    gap: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 60px;
  }
  .l-feature__support-title {
    font-size: 2rem;
    line-height: 1.45;
    margin-bottom: 21px;
    text-align: center;
  }
  .l-feature__support-text {
    max-width: 300px;
    margin: 0 auto;
  }
  .l-feature__support-img {
    margin-bottom: 35px;
  }
  .l-feature__btn {
    margin-top: 74px;
  }
}
.l-security {
  padding: 100px 0;
}

.l-security__content {
  background-color: #4ABB98;
  border-radius: 15px;
  padding: 77px 79px;
  margin: 0 auto;
  max-width: 1280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-security__content {
    padding: 40px 40px;
    gap: 40px;
  }
}
.l-security__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  color: #FFFFFF;
}

.l-security__text .c-text {
  line-height: 2;
}

.l-security__heading {
  font-size: 3.6rem;
  line-height: 1.4444444444;
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 54px;
}

.l-security__description {
  font-size: 1.8rem;
  line-height: 1.7777777778;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  text-align: left;
}

.l-security__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 56px;
}

.l-security__btn:hover .c-btn__text {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.l-security__certifications {
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 32px 37px 32px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 602px;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  max-width: 60%;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-security__certifications {
    width: 40%;
  }
}
.l-security__logo-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-security__logo-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.l-security__logo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 0;
}

.l-security__logo-item:first-child {
  margin-right: 25px;
  padding-right: 25px;
  border-right: 1px solid #e4e4e4;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-security__logo-item:first-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.l-security__logo-item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 767px) {
  .l-security {
    padding: 60px 0;
  }
  .l-security__content {
    padding: 40px 18px;
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 15px;
  }
  .l-security__heading {
    font-size: 2.6rem;
    line-height: 1.4615384615;
    margin-bottom: 34px;
    text-align: center;
  }
  .l-security__certifications {
    padding: 20px 47px;
    max-width: 100%;
    width: 100%;
  }
  .l-security__logo-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .l-security__logo-item {
    padding: 0;
  }
  .l-security__logo-item:first-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    border-bottom: none;
    padding-bottom: 16px;
    margin-bottom: 12px;
    position: relative;
  }
  .l-security__logo-item:first-child::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 165px;
    height: 1px;
    background-color: #e4e4e4;
  }
  .l-security__btn {
    margin-top: 36px;
  }
  .l-security__btn .c-btn {
    width: auto;
  }
}
.l-support {
  background-color: #FFFFFF;
}

.l-support__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  max-width: 1040px;
  margin: 0 auto;
}

.l-support__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  padding-top: 16px;
}

.l-support__text .c-text {
  line-height: 2.2222222222;
}

.l-support__heading {
  font-size: 3.2rem;
  line-height: 1.4375;
  color: #4ABB98;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 53px;
}

.l-support__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 458px;
  max-width: 50%;
}

.l-support__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 767px) {
  .l-support__content {
    gap: 48px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .l-support__text {
    max-width: 300px;
    margin: 0 auto;
  }
  .l-support__heading {
    font-size: 2.2rem;
    line-height: 1.7272727273;
    margin-bottom: 30px;
  }
  .l-support__image {
    width: 300px;
    max-width: 100%;
  }
  .l-support__image img {
    max-width: 100%;
  }
}
.l-flow {
  position: relative;
}

.l-flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(221, 239, 227, 0)), to(rgba(74, 187, 152, 0.5)));
  background: linear-gradient(rgba(221, 239, 227, 0) 0%, rgba(74, 187, 152, 0.5) 100%);
  opacity: 0.4;
}

.l-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-flow__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  background: #ffffff;
  border-radius: 15px;
  padding: 38px 24px 40px;
  position: relative;
}

.l-flow__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 27px;
  width: 31px;
  height: 4px;
  background-color: #4ABB98;
}

.l-flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-left: 10px solid #5A5A5A;
  border-bottom: 13px solid transparent;
}

.l-flow__item:nth-child(1) {
  -webkit-transition-delay: 0s !important;
  transition-delay: 0s !important;
}

.l-flow__item:nth-child(2) {
  -webkit-transition-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}

.l-flow__item:nth-child(3) {
  -webkit-transition-delay: 0.6s !important;
  transition-delay: 0.6s !important;
}

.l-flow__item:nth-child(4) {
  -webkit-transition-delay: 0.9s !important;
  transition-delay: 0.9s !important;
}

.l-flow__item:nth-child(5) {
  -webkit-transition-delay: 1.2s !important;
  transition-delay: 1.2s !important;
}

.l-flow__item:nth-child(6) {
  -webkit-transition-delay: 1.5s !important;
  transition-delay: 1.5s !important;
}

.l-flow__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 60px;
}

.l-flow__arrow svg {
  width: 20px;
  height: 20px;
}

.l-flow__step {
  font-size: 2.2rem;
  line-height: 1;
  color: #4ABB98;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 33px;
  display: block;
  font-family: "Roboto", sans-serif;
}

.l-flow__step span {
  font-size: 3.4rem;
  line-height: 1;
  color: #4ABB98;
  letter-spacing: 0.02em;
  margin-left: 5px;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  display: inline-block;
}

.l-flow__title {
  font-size: 2.2rem;
  line-height: 1.4545454545;
  color: #4ABB98;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 25px;
  text-align: center;
}

.l-flow__icon {
  width: 155px;
  max-width: 100%;
  margin: 0 auto 56px;
}

.l-flow__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 767px) {
  .l-flow__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 70px;
  }
  .l-flow__item {
    padding: 35px 25px 45px;
    min-height: 586px;
    max-width: 285px;
  }
  .l-flow__item:not(:last-child)::before {
    top: auto;
    left: 50%;
    bottom: -40px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 10px solid #5A5A5A;
    border-bottom: none;
  }
  .l-flow__step {
    margin-bottom: 47px;
  }
  .l-flow__icon {
    width: 155px;
    height: 155px;
    margin-bottom: 40px;
  }
}
.l-faq {
  background-color: #FFFFFF;
}

.l-faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: 0 auto;
}

.l-faq__item {
  background-color: #FFFFFF;
  border: 2px solid #4ABB98;
  border-radius: 10px;
}

.l-faq__item:not(:last-child) {
  margin-bottom: 15px;
}

.l-faq__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #4ABB98;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.4285714286;
  font-family: "Roboto", sans-serif;
}

.l-faq__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.8rem;
  line-height: 2.2222222222;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-faq__question {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 26px 45px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.l-faq__question:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(55, 180, 141, 0.08);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.l-faq__question .l-faq__text {
  font-weight: 500;
}

@media (min-width: 768px) {
  .l-faq__question:hover::before {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .l-faq__question:hover .l-faq__toggle {
    background-color: #4ABB98;
  }
  .l-faq__question:hover .l-faq__toggle::after {
    background-color: #FFFFFF;
  }
  .l-faq__question:hover .l-faq__toggle::before {
    background-color: #FFFFFF;
  }
  .l-faq__question:hover .l-faq__question-text {
    color: #4ABB98;
  }
}
.l-faq__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: #FFFFFF;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #4ABB98;
}

.l-faq__toggle::after, .l-faq__toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 20px;
  height: 2px;
  background-color: #4ABB98;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-faq__toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.l-faq__question.is-active .l-faq__toggle {
  background-color: #4ABB98;
}

.l-faq__question.is-active .l-faq__toggle::after {
  background-color: #FFFFFF;
}

.l-faq__question.is-active .l-faq__toggle::before {
  background-color: #FFFFFF;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}

.l-faq__answer {
  display: none;
  padding: 13px 100px 33px 45px;
}

.l-faq__answer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.l-faq__answer .l-faq__text {
  color: #4ABB98;
}

@media (max-width: 767px) {
  .l-faq__item:not(:last-child) {
    margin-bottom: 16px;
  }
  .l-faq__question {
    padding: 28px 16px;
    gap: 20px;
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
  }
  .l-faq__question .l-faq__text {
    margin-right: -10px;
  }
  .l-faq__question.is-active {
    padding-bottom: 20px;
    min-height: 58px;
  }
  .l-faq__label {
    font-size: 2.4rem;
    line-height: 1.125;
  }
  .l-faq__text {
    font-size: 1.6rem;
    line-height: 1.8125;
  }
  .l-faq__toggle {
    width: 36px;
    height: 36px;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  .l-faq__answer {
    padding: 0 55px 25px 16px;
  }
  .l-faq__answer-inner {
    gap: 20px;
  }
}
.l-topics {
  background-color: #FFFFFF;
}

.l-topics__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1040px;
  margin: 0 auto;
}

.l-topics__item {
  border-bottom: 1px solid #aaaaaa;
}

.l-topics__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  padding: 29px 50px 30px 10px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.l-topics__link::after {
  content: "";
  position: absolute;
  top: 65%;
  right: 22px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #4ABB98;
  border-width: 0 1px 1px 0;
  border-color: #4ABB98;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.l-topics__link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(55, 180, 141, 0.08);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

@media (min-width: 768px) {
  .l-topics__link:hover {
    opacity: 1;
  }
  .l-topics__link:hover::before {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.l-topics__link .c-tag {
  padding: 3px 6px 2px;
  background-color: #ddefe3;
  color: #4ABB98;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-bottom: 10px;
}

.l-topics__date {
  font-size: 1.6rem;
  line-height: 1;
  color: #5A5A5A;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.04em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.l-topics__new {
  font-size: 1.6rem;
  line-height: 1;
  color: #4ABB98;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.04em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.l-topics__text {
  min-width: 0;
  font-size: 1.6rem;
  line-height: 1.25;
  color: #5A5A5A;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.l-topics__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  font-size: 0;
}

.l-topics__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-width: 174px;
  gap: 50px;
  padding-top: 4px;
}

.l-topics__btn {
  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: 42px;
}

.l-topics__btn .c-btn {
  padding-left: 25px;
}

@media (max-width: 767px) {
  .l-topics__link {
    padding: 20px 40px 25px 0px;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .l-topics__link::after {
    top: 59%;
    right: 4px;
  }
  .l-topics__head {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
  }
  .l-topics .c-tag {
    margin-bottom: 21px;
  }
  .l-topics__text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
  .l-topics__btn {
    margin-top: 26px;
  }
  .l-topics__btn .c-arrow {
    width: 60px;
    height: 60px;
  }
}
/*product*/
.page-sub .l-header:after {
  opacity: 1;
}

.page-sub .l-main {
  padding-top: 91px;
}

.page-sub section {
  padding: 60px 0;
}

.page-sub section#feature01 {
  padding-top: 180px;
}

.page-sub section:last-child {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .page-sub .l-main {
    padding-top: 61px;
  }
  .page-sub section {
    padding: 40px 20px 40px;
  }
  .page-sub section#feature01 {
    padding-top: 80px;
  }
}
.l-breadcrumbs {
  padding: 22px 0;
}

.l-breadcrumbs ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
}

.l-breadcrumbs ol li + li {
  padding-left: 20px;
  margin-left: 19px;
  position: relative;
}

.l-breadcrumbs ol li + li::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  content: "/";
}

.l-breadcrumbs ol li a {
  color: #5A5A5A;
  font-weight: 500;
}
.l-breadcrumbs ol li:first-child a {
  font-weight: 300;
}
.l-pagetitle {
  padding: 40px 0;
}

.p-title__en {
  font-size: 2.2rem;
  color: #4ABB98;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 15px;
  font-family: "Roboto", sans-serif;
  line-height: 1;
}

.p-title__en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 3px;
  background-color: #4ABB98;
}

.p-title__ja {
  font-size: 4rem;
  font-weight: 600;
  display: block;
  padding: 20px 0;
  line-height: 1.4230769231;
}

@media (max-width: 767px) {
  .l-main.l-sub {
    padding-top: 61px;
  }
  .l-subpage {
    padding-top: 80px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .l-breadcrumbs {
    padding: 7px 18px;
  }
  .l-breadcrumbs ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.2rem;
  }
  .l-breadcrumbs ol li + li {
    padding-left: 20px;
    margin-left: 19px;
    position: relative;
  }
  .l-breadcrumbs ol li + li::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    content: "/";
  }
  .l-breadcrumbs ol li a {
    color: #5A5A5A;
    font-weight: 500;
  }
  .l-pagetitle {
    padding: 46px 18px 50px 18px;
  }
  .p-title__en {
    font-size: 1.4rem;
  }
  .p-title__ja {
    font-size: 2.4rem;
    padding: 10px 0;
  }
  .p-title-txt {
    font-size: 1.4rem;
  }
}
@-webkit-keyframes arrowDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  49% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
  51% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: hidden;
  }
  52% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes arrowDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  49% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
  51% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: hidden;
  }
  52% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.p-pagenav {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-pagenav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px 140px;
}

.p-pagenav-list li {
  width: calc((100% - 280px) / 3);
  border-bottom: 2px solid #707070;
  position: relative;
  font-weight: 500;
}
@media (max-width: 880px) {
.p-pagenav-list {
  gap: 25px 80px;
}
.p-pagenav-list li {
  width: calc((100% - 160px) / 3);
}
}
.p-pagenav-list li a {
  display: block;
}

.p-pagenav-list li a span {
  display: block;
  background: url(../images/pages/product/icn_arrow_down.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 7px;
  position: absolute;
  right: 0;
  top: calc(50% - 3px);
}

.p-pagenav-list li a:hover span {
  -webkit-animation-name: arrowDown;
  animation-name: arrowDown;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

@media (max-width: 767px) {
  .p-pagenav {
    padding: 0 38px;
  }
  .p-pagenav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px 10px;
  }
  .p-pagenav-list li {
    width: calc(50% - 5px);
    border-bottom: 1px solid #707070;
    position: relative;
    font-size: 1.2rem;
  }
  .p-pagenav-list li a {
    display: block;
  }
  .p-pagenav-list li a span {
    display: block;
    background: url(../images/pages/product/icn_arrow_down.svg) no-repeat;
    background-size: contain;
    width: 15px;
    height: 6px;
    position: absolute;
    right: 0;
    top: calc(50% - 3px);
  }
  .p-pagenav-list li a:hover span {
    -webkit-animation-name: none;
    animation-name: none;
  }
}
.p-subtitle__en {
  font-size: 1.6rem;
  color: #4ABB98;
  font-weight: 400;
  position: relative;
  padding-left: 30px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-subtitle__en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 18px;
  height: 3px;
  background-color: #4ABB98;
}

.p-subtitle__ja {
  font-size: 3.2rem;
  font-weight: 600;
  display: block;
  padding: 0 0 50px;
  color: #4ABB98;
  line-height: 1.4230769231;
}

.p-feature {
  background: #F8F8F8;
  padding: 135px 80px;
  width: 1200px;
  max-width: 100%;
}

.p-feature-txt {
  font-size: 1.8rem;
  font-weight: 500;
}

.p-feature-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 52px;
  margin-top: 85px;
}

.p-feature-img-box {
  width: calc(50% - 26px);
}

.p-feature-img-title {
  font-size: 2.2rem;
  font-weight: 500;
  color: #4ABB98;
  margin-bottom: 30px;
  line-height: 1.363636;
}

.p-feature-img-img img {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.p-feature-img-box-full {
  width: 100%;
  margin-top: 85px;
}

.p-feature-img-box-full + .p-feature-img {
  margin-top: 70px;
}

.p-feature-img-title-mb {
  margin-bottom: calc(1.363636em + 30px);
}

.p-feature-list ol {
  display: inline-grid;
  -webkit-column-gap: 52px;
  -moz-column-gap: 52px;
  column-gap: 52px;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  width: 100%;
}

.p-feature-list ol li {
  list-style-type: decimal;
  margin-left: 1em;
}

.p-sh-flow {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 600;
}

.p-feature-flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 43px;
  margin-top: 78px;
}

.p-feature-flow-list li {
  width: calc((100% - 86px) / 3);
  position: relative;
  background: #F8F8F8;
  border-radius: 15px;
  padding: 34px 30px 40px 30px;
}

.p-feature-flow-list li::after {
  content: "";
  width: 23px;
  height: 50px;
  background: url(../images/pages/product/icn_arrow_r.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: -35px;
  top: calc(50% - 25px);
}

.p-feature-flow-list li:last-child:after {
  display: none;
}

.p-feature-flow-list li:first-child {
  -webkit-transition-delay: 0s !important;
  transition-delay: 0s !important;
}
.p-feature-flow-list li:nth-child(2) {
  -webkit-transition-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}
.p-feature-flow-list li:nth-child(3) {
  -webkit-transition-delay: 0.6s !important;
  transition-delay: 0.6s !important;
}
.p-feature-flow__number {
  font-family: "Roboto", sans-serif;
  font-size: 5.8rem;
  letter-spacing: 0.02em;
  font-weight: 300;
  text-align: center;
  color: #4ABB98;
  line-height: 1;
}

.p-feature-flow__heading {
  margin: 30px 0;
  font-size: 2.6rem;
  font-weight: 400;
  text-align: center;
  color: #4ABB98;
  line-height: 1.615;
}

.p-feature-flow__text {
  font-size: 1.8rem;
  font-weight: 500;
}

.p-feature-about {
  border: 3px solid #4ABB98;
  background: #DDEFE3;
  padding: 30px 50px;
  text-align: center;
  margin-top: 38px;
}

.p-feature-about__heading {
  color: #4ABB98;
  font-size: 2.8rem;
  font-weight: 700;
}

.p-feature-about__text {
  font-size: 1.8rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .p-subtitle__en {
    font-size: 1.4rem;
    padding-left: 20px;
  }
  .p-subtitle__en::before {
    width: 14px;
    height: 3px;
  }
  .p-subtitle__ja {
    font-size: 2.4rem;
    padding: 0 0 30px;
  }
  .p-feature {
    padding: 80px 18px;
  }
  .p-feature-txt {
    font-size: 1.6rem;
  }
  .p-feature-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 85px;
  }
  .p-feature-img-box {
    width: 100%;
  }
  .p-feature-img-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .p-feature-img-img img {
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  }
  .p-feature-img-box-full {
    width: 100%;
    margin-top: 85px;
  }
  .p-feature-img-box-full + .p-feature-img {
    margin-top: 60px;
  }
  .p-feature-img-title-mb {
    margin-bottom: 20px;
  }
  .p-feature-list ol {
    display: block;
    width: 100%;
  }
  .p-feature-list ol li {
    list-style-type: decimal;
    margin-left: 1em;
  }
  .p-sh-flow {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
  }
  .p-feature-flow-img {
    text-align: center;
  }
  .p-feature-flow-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 55px;
    margin-top: 86px;
  }
  .p-feature-flow-list li {
    width: 100%;
    position: relative;
    background: #F8F8F8;
    border-radius: 15px;
    padding: 32px 13px;
  }
  .p-feature-flow-list li::after {
    content: "";
    width: 50px;
    height: 23px;
    background: url(../images/pages/product/icn_arrow_b.svg) no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: auto;
    bottom: -40px;
  }
  .p-feature-flow-list li:last-child:after {
    display: none;
  }
  .p-feature-flow__number {
    font-family: "Roboto", sans-serif;
    font-size: 4.2rem;
    letter-spacing: 0.02em;
    text-align: center;
    color: #4ABB98;
    line-height: 1;
  }
  .p-feature-flow__heading {
    margin: 30px 0;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #4ABB98;
    line-height: 1.615;
  }
  .p-feature-flow__text {
    font-size: 1.8rem;
    font-weight: 500;
  }
  .p-feature-about {
    padding: 60px 15px 45px 15px;
    margin-top: 38px;
  }
  .p-feature-about__heading {
    color: #4ABB98;
    font-size: 2.2rem;
    font-weight: 700;
  }
  .p-feature-about__text {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1em;
  }
}
.p-feature-flow-sp {
  margin-top: 24px;
  font-size: 1.6rem;
  font-weight: 500;
}

.p-feature-flow-sp li {
  padding-left: 40px;
  margin-bottom: 10px;
}

.p-feature-flow-sp li:first-child {
  background: url(../images/pages/product/icn_no01.svg) no-repeat top 5px left;
  background-size: 26px auto;
}

.p-feature-flow-sp li:nth-child(2) {
  background: url(../images/pages/product/icn_no02.svg) no-repeat top 5px left;
  background-size: 26px auto;
}

.p-feature-flow-sp li:nth-child(3) {
  background: url(../images/pages/product/icn_no03.svg) no-repeat top 5px left;
  background-size: 26px auto;
}
.l-inner-s{
  width: 1080px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}
.p-column{
  background: #F8F8F8;
}
.p-column-category{
  margin-top: 33px;
  border-top: 1px solid #AAAAAA;
  border-bottom: 1px solid #AAAAAA;
}
.p-column-category-list{
  padding: 32px 0;
  display: flex;
  gap: 80px;
  font-weight: 500;
}
.p-column-category-list .is-corrent{
  color: #4ABB98;
  position: relative;
}
.p-column-category-list .is-corrent::after{
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: -10px;
  background: #4ABB98;
}
.p-column-list{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 60px 40px;
}
.p-column-list li{
  width: calc((100% - 80px) / 3);
  background: #ffffff;
}
.p-column-list li a{
  display: block;
}
.p-column-list li a .p-column-list-img{
  display: block;
  position: relative;
  overflow: hidden;
}
.p-column-list li a .p-column-list-img::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(74, 187, 152, 0.3);
  z-index: 10;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-column-list li a:hover .p-column-list-img::before{
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-column-list li a .p-column-list-img img{
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  aspect-ratio: 321/213;
  object-fit: cover;
}
.p-column-list li a:hover .p-column-list-img img{
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-column-list-txt{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 8px;
  padding: 20px 15px;
  background: #ffffff;
}
.p-column-list-date{
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.p-column-list-category{
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #4ABB98;
  background: #DDEFE3;
  padding: 4px 8px;
  border-radius: 4px;
}
.p-column-list-ttl{
  font-size: 1.4rem;
  font-weight: 400;
  width: 100%;
}
.p-column-pager{
  padding: 60px 0 100px 0;
}
.p-column-pager-list{
  padding: 20px 0;
  display: flex;
  gap: 24px;
  justify-content: center;
}
.p-column-pager-list li{
  color: #4ABB98;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
.p-column-pager-list li a{
  color: #4ABB98;
  border: 1px solid #4ABB98;
  padding: 9px 15px 9px 15px;
}
.p-column-pager-list li a:hover{
  background: #DDEFE3;
}
.p-column-pager-list li.is-active a{
  color: #ffffff;
  background: #4ABB98;
}
.p-column-pager-list li.prev a{
  border: none;
  background: url(../images/pages/column/icn_arrow_prev.svg) no-repeat center;
  background-size: 14px auto;
}
.p-column-pager-list li.next a{
  border: none;
  background: url(../images/pages/column/icn_arrow_next.svg) no-repeat center;
  background-size: 14px auto;
}
@media (max-width: 767px) {
  .p-column .l-inner-s{
    padding: 0;
  }
  .p-column-category{
    margin-top: 20px;
  }
  .p-column-category-list{
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 1.2rem;
    line-height: 1.3333;
    text-align: center;
  }
  .p-column-category-list .is-corrent::after{
    bottom: -28px;
  }
  .p-column-category-list li:nth-child(2).is-corrent::after{
    bottom: -20px;
  }
  .p-column-list{
    gap: 50px;
  }
  .p-column-list li{
    width: 100%;
  }
  .p-column-pager{
    padding: 55px 0 90px 0;
  }
}
@media (max-width: 370px) {
  .p-column-category-list{
    gap: 15px;
  }
}
.p-column-detail .l-inner-s{
  width: 990px;
  padding-top: 60px;
}
.p-column-head{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding-top: 17px;
  padding-bottom: 68px;
}
.p-column-detail-date{
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.p-column-detail-category{
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #4ABB98;
  background: #DDEFE3;
  padding: 5px 15px;
  border-radius: 4px;
}
.p-column-detail-ttl{
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.55555;
  width: 100%;
}
.p-column-detail-img{
  padding-bottom: 100px;
  text-align: center;
}
.p-column-detail-body p{
  margin-bottom: 50px;
}
.p-column-detail-body a{
  color: #4ABB98;
  text-decoration: underline;
  font-weight: 700;
}
.p-column-detail-body a[target="_blank"]:after{
  content: "";
  display: inline-block;
  background: url(../images/pages/column/icn_link.svg) no-repeat center bottom;
  background-size: 16px auto;
  width: 16px;
  margin-left: 10px;
  height: 24px;
}
.p-column-detail-body h2{
  margin: 80px 0 25px 0;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.75;
  color: #4ABB98;
}
.p-column-detail-body h3{
  margin: 50px 0 25px 0;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.8;
  color: #4ABB98;
}
.p-column-detail-body ul{
  margin-bottom: 30px;
}
.p-column-detail-body ul li::before{
  content: "\025cf";
}
.p-column-detail-body ol{
  margin-bottom: 30px;
}
.p-column-detail-body ol li{
  list-style-type: decimal;
  margin-left: 1em;
}
.p-column-detail-body table{
  width: 100%;
}
.p-column-detail-body table th{
  border-top: 3px solid #4ABB98;
  padding: 20px 0;
  color: #4ABB98;
  font-weight: 700;
  min-width: 21.27%;
}
.p-column-detail-body table td{
  border-top: 3px solid #E4E4E4;
  padding: 20px 0 20px 50px;
}
.p-column-detail-body em{
  font-style: italic;
}

.p-column-detail-user{
  display: flex;
  gap: 30px;
  margin: 80px 0;
}
.p-column-detail-user-img{
  flex-shrink: 0;
}
.p-column-detail-user-txt p{
  margin-bottom: 0 !important;
  font-weight: 500;
}
.p-column__btn{
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .p-column-detail .l-inner-s{
    padding: 40px 38px 0 38px;
  }
  .p-column-head{
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }
  .p-column-detail-date{
    font-size: 1.4rem;
    margin-bottom: 13px;
  }
  .p-column-detail-category{
    margin-bottom: 30px;
    display: inline-block;
  }
  .p-column-detail-ttl{
    font-size: 2.4rem;
    line-height: 1.75;
    margin-bottom: 100px;
  }
  .p-column-detail-img{
    padding-bottom: 60px;
  }
  .p-column-detail-body p{
    margin-bottom: 1em;
  }
  .p-column-detail-body a[target="_blank"]:after{
    content: "";
    display: inline-block;
    background: url(../images/pages/column/icn_link.svg) no-repeat center bottom;
    background-size: 16px auto;
    width: 16px;
    margin-left: 10px;
    height: 24px;
  }
  .p-column-detail-body h2{
    margin: 60px 0 30px 0;
  }
  .p-column-detail-body h3{
    margin: 60px 0 35px 0;
  }
  .p-column-detail-body table{
    margin: 60px 0 80px 0;
  }
  .p-column-detail-body table th{
    display: block;
    width: 100%;
    border-top: 3px solid #E4E4E4;
    padding: 20px 0 15px 0;
    position: relative;
    line-height: 1.2;
  }
  .p-column-detail-body table th::before{
    content: "";
    display: block;
    background: #4ABB98;
    height: 3px;
    width: 26%;
    position: absolute;
    left: 0;
    top: -3px;
  }
  .p-column-detail-body table td{
    display: block;
    width: 100%;
    border-top: none;
    padding: 0 0 12px 0;
    line-height: 1.875;
  }

  .p-column-detail-user{
    display: flex;
    gap: 20px;
    margin: 60px 0;
  }
  .p-column-detail-user-img{
    flex-shrink: 0;
    max-width: 100px;
  }
  .p-column__btn{
    text-align: center;
    margin-top: 80px;
  }
}
.p-company .l-inner-s,
.p-company-map .l-inner-s{
  width: 977px;
}
.p-company-logo{
  text-align: center;
}
.p-company-logo img{
  width: 314px;
  height: auto;
}
.p-company-lead{
  text-align: center;
}
.p-company-lead span{
  display: block;
}
.p-company-lead__ja{
  font-size: 2.2rem;
  margin: 50px 0 30px 0;
  font-weight: 400;
}
.p-company-lead__en{
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 2;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}
.p-company-table{
  width: 100%;
  font-size: 1.6rem;
  margin-top: 120px;
}
.p-company-table th{
  color: #4ABB98;
  font-weight: 500;
  padding: 20px 0;
  border-bottom: 1px solid #4ABB98;
  width: 23.54%;
}
.p-company-table td{
  padding: 30px 0;
  border-bottom: 1px solid #4ABB98;
  line-height: 1.5;
}
.p-company-map{
  background: #F8F8F8;
  max-width: 1300px;
  margin: 0 auto;
}
.p-company-map-title{
  color: #4ABB98;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  display: inline-block;
  background: url(../images/pages/company/icn_map.svg) no-repeat right center;
  background-size: 30px auto;
  padding-right: 35px;
  margin-bottom: 40px;
  margin-top: 30px;
}
.p-company-map-google{
  padding-bottom: 90px;
}
.p-company-map-google iframe{
  width: 100%;
  height: 300px;
}
@media (max-width: 767px) {
  .p-company .l-inner-s,
  .p-company-map .l-inner-s{
    padding: 0 17px;
  }
  .p-company-logo img{
    width: 235px;
    height: auto;
  }
  .p-company-lead span{
    display: block;
  }
  .p-company-lead__ja{
    font-size: 1.6rem;
    margin: 40px 0 20px 0;
  }
  .p-company-table{
    font-size: 1.4rem;
    margin-top: 78px;
  }
  .p-company-table th{
    width: 70px;
  }
  .p-company-table td{
    line-height: 1.71;
  }
  .p-company-map{
    background: #F8F8F8;
    max-width: 1300px;
    margin: 0 auto;
  }
  .p-company-map-title{
    color: #4ABB98;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    display: inline-block;
    background: url(../images/pages/company/icn_map.svg) no-repeat right center;
    background-size: 30px auto;
    padding-right: 35px;
    margin-bottom: 40px;
    margin-top: 20px;
  }
  .p-company-map-google{
    padding-bottom: 60px;
  }
}
.p-privacy .l-inner-s{
  width:990px;
  padding-top: 40px;
  padding-bottom: 90px;
}
.p-privacy-title{
  font-size: 2.4rem;
  font-weight: 400;
  color: #4ABB98;
  border-bottom: 1px solid #4ABB98;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.p-privacy-mh{
  font-size: 2.0rem;
  font-weight: 700;
  margin: 45px 0 10px 0;
}
.p-privacy-txt{
  font-weight: 500;
  margin-bottom: 1em;
  line-height: 1.875;
}
.p-privacy-date{
  text-align: right;
  font-size: 1.4rem;
}
.p-privacy-contact{
  font-size: 1.4rem;
  margin-top: 60px;
  line-height: 1.857;
}
.p-privacy-contact-ttl{
  color: #4ABB98;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.p-privacy-contact-corp{
  font-size: 1.6rem;
  font-weight: 500;
  margin: 10px 0;
}
.p-security{
  background: #F8F8F8;
  max-width: 1300px;
  margin: 0 auto;
}
.p-security .l-inner-s{
  padding-top: 70px;
  padding-bottom: 100px;
  width:990px;
}

.p-security-mark{
  display: inline-flex;
  background: #ffffff;
  padding: 17px 0;
  margin: 43px 0 60px 0;
}
.p-security-mark-iso{
  padding: 6px 20px 6px 0;
  border-right: 1px solid #E4E4E4;
}
.p-security-mark-jis{
  padding: 6px 0 6px 20px;
}
.p-security-link{
  text-align: left;
}
.p-security-link .c-btn__text{
  text-align: left;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .p-privacy .l-inner-s{
    padding: 0 17px;
  }
  .p-security .l-inner-s{
    padding: 40px 17px 100px 17px;
  }
  .p-privacy-title{
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
  }
  .p-privacy-mh{
    font-weight: 600;
  }
  .p-privacy-txt{
    font-weight: 400;
  }
  .p-privacy-date{
    font-size: 1.2rem;
  }
  .p-privacy-contact{
    font-size: 1.4rem;
    margin-top: 60px;
  }
  .p-privacy-contact-ttl{
    font-size: 1.8rem;
  }
  .p-privacy-contact-corp{
    font-size: 1.8rem;
  }
  .p-security-mark{
    display: block;
    padding: 16px 48px;
    margin: 60px 0;
  }
  .p-security-mark-iso{
    padding: 0 0 16px 0;
    border-right: none;
    position: relative;
  }
  .p-security-mark-iso::after{
    content:"";
    display: block;
    height: 1px;
    width: 165px;
    background: #E4E4E4;
    position: absolute;
    bottom: 0;
    left: calc(50% - 82px);
  }
  .p-security-mark-jis{
    padding: 16px 0 0 0;
  }
  .p-security-link{
    text-align: left;
  }
  .p-security-link .c-btn__text{
    text-align: left;
    font-size: 1.4rem;
  }
}
/*# sourceMappingURL=style.css.map */
