@charset "UTF-8";
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-super {
  vertical-align: super;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .pc-text-left {
    text-align: left;
  }
  .pc-text-center {
    text-align: center;
  }
  .pc-text-right {
    text-align: right;
  }
  .pc-text-justify {
    text-align: justify;
  }
}
@media (max-width: 767px) {
  .sp-text-left {
    text-align: left;
  }
  .sp-text-center {
    text-align: center;
  }
  .sp-text-right {
    text-align: right;
  }
  .sp-text-justify {
    text-align: justify;
  }
}
.fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.fadeInUp.is-anim {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.fadeInDown {
  opacity: 0;
  -webkit-transform: translate(0, -20px);
  transform: translate(0, -20px);
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.fadeInDown.is-anim {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.fadeInLeft {
  opacity: 0;
  -webkit-transform: translate(20px, 0);
  transform: translate(20px, 0);
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.fadeInLeft.is-anim {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.fadeInRight {
  opacity: 0;
  -webkit-transform: translate(-20px, 0);
  transform: translate(-20px, 0);
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.fadeInRight.is-anim {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.bg-black {
  background-color: #000000;
}

.bg-white {
  background-color: #FFFFFF;
}

.border-t {
  border-top: 1px solid;
}

.border-b {
  border-bottom: 1px solid;
}

.border-l {
  border-left: 1px solid;
}

.border-r {
  border-right: 1px solid;
}

.border-none {
  border: none;
}

.color-black333 {
  color: #333;
}

.color-white {
  color: #FFFFFF;
}

.color-blue {
  color: #0055A2;
}

.cursor-auto {
  cursor: auto;
}

.cursor-pointer {
  cursor: pointer;
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .tb-min {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .tb-max {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .tb {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .tb {
    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;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("/90th/assets/fonts/NotoSansJP-Thin.woff") format("woff"), url("/90th/assets/fonts/NotoSansJP-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/90th/assets/fonts/NotoSansJP-ExtraLight.woff") format("woff"), url("/90th/assets/fonts/NotoSansJP-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/90th/assets/fonts/NotoSansJP-Light.woff") format("woff"), url("/90th/assets/fonts/NotoSansJP-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/90th/assets/fonts/NotoSansJP-Regular.woff") format("woff"), url("/90th/assets/fonts/NotoSansJP-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/90th/assets/fonts/NotoSansJP-Medium.woff") format("woff"), url("/90th/assets/fonts/NotoSansJP-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/90th/assets/fonts/NotoSansJP-SemiBold.woff") format("woff"), url("/90th/assets/fonts/NotoSansJP-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/90th/assets/fonts/NotoSansJP-Bold.woff") format("woff"), url("/90th/assets/fonts/NotoSansJP-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/90th/assets/fonts/NotoSansJP-ExtraBold.woff") format("woff"), url("/90th/assets/fonts/NotoSansJP-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/90th/assets/fonts/NotoSansJP-Black.woff") format("woff"), url("/90th/assets/fonts/NotoSansJP-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/***
    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: 1023px) {
  :root {
    scroll-padding-top: 80px;
  }
}
html {
  font-size: 62.5%;
}

body {
  min-height: 100vh;
  color: #000000;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  overflow-wrap: break-word;
  overflow-x: hidden;
  letter-spacing: 0;
  text-align: left;
  padding-top: 82px;
}

@media (max-width: 1023px) {
  body {
    padding-top: 65px;
  }
}
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;
}

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;
}

@media (max-width: 1023px) {
  header .nav_items .nav_item_link .inline-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: auto;
    margin-left: 0;
    white-space: nowrap;
  }
}
.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%);
}

@-webkit-keyframes sdl01 {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

@keyframes sdl01 {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}
.deco_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.deco_head--txt {
  font-size: 13rem;
  line-height: 1.0307692308;
  color: #bbcbda;
  opacity: 0.6;
  font-weight: bold;
  letter-spacing: 0.08em;
  mix-blend-mode: multiply;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 767px) {
  .deco_head--txt {
    font-size: 3.8rem;
    line-height: 1.3157894737;
  }
}
.btn_more {
  font-size: 2.5rem;
  line-height: 1.72;
  font-weight: 700;
  position: relative;
  background-color: #0055a2;
  color: #ffffff;
  padding: 7px 40px;
  border-radius: 10px;
  border: 3px solid #ffffff;
  max-width: 389px;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  text-align: center;
  -webkit-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1219px) {
  .btn_more {
    font-size: 2rem;
  }
}
@media (max-width: 1023px) {
  .btn_more {
    max-width: 318px;
  }
}
@media (max-width: 767px) {
  .btn_more {
    font-size: 1.6rem;
    padding: 9px 25px;
    margin: 0 auto;
  }
}
.btn_more:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 17px;
  width: 15px;
  height: 17px;
  -webkit-mask-image: url(/90th/assets/images/common/ico_arrow01.svg);
  mask-image: url(/90th/assets/images/common/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .btn_more:after {
    right: 12px;
    width: 12px;
    height: 13px;
  }
}
.btn_more:hover {
  background-color: #ffffff;
  color: #0055a2;
}

.btn_more:hover:after {
  background-color: #0055a2;
}

.btn_more--reverse {
  background-color: #ffffff;
  color: #0055a2;
  border-color: #0055a2;
}

.btn_more--reverse:after {
  background-color: #0055a2;
}

.btn_more--reverse:hover {
  background-color: #0055a2;
  color: #ffffff;
}

.btn_more--reverse:hover:after {
  background-color: #ffffff;
}

.bg_main {
  position: relative;
}

.bg_main::after {
  content: "";
  position: absolute;
  top: 230px;
  left: 0;
  width: 100%;
  height: calc(100% - 230px);
  background: linear-gradient(149.89deg, rgb(222, 228, 235) 0%, rgb(233, 237, 242) 14.05%, rgb(249, 250, 252) 40.44%, rgb(255, 255, 255) 61.05%, rgb(252, 252, 253) 75.69%, rgb(242, 244, 247) 87.68%, rgb(225, 230, 237) 98.71%, rgb(222, 228, 235) 100%);
}

@media (max-width: 767px) {
  .bg_main::after {
    background: linear-gradient(147.65deg, rgb(222, 228, 235) 0%, rgb(233, 237, 242) 14.05%, rgb(249, 250, 252) 40.44%, rgb(255, 255, 255) 61.05%, rgb(252, 252, 253) 75.69%, rgb(242, 244, 247) 87.68%, rgb(225, 230, 237) 98.71%, rgb(222, 228, 235) 100%);
  }
}
.fadein-up {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadein-up.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fadein-up.is-show.deco_head .js-span span {
  opacity: 1;
}

.fadein-up.is-show.page-ttl::after {
  -webkit-clip-path: inset(0 0 0);
  clip-path: inset(0 0 0);
}

.fadein-up.page-ttl::after {
  -webkit-clip-path: inset(0 100% 0);
  clip-path: inset(0 100% 0);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadein-up.deco_head .js-span span {
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadein-up.deco_head .js-span span:nth-child(2) {
  -webkit-transition-delay: 160ms;
  transition-delay: 160ms;
}

.fadein-up.deco_head .js-span span:nth-child(3) {
  -webkit-transition-delay: 240ms;
  transition-delay: 240ms;
}

.fadein-up.deco_head .js-span span:nth-child(4) {
  -webkit-transition-delay: 320ms;
  transition-delay: 320ms;
}

.fadein-up.deco_head .js-span span:nth-child(5) {
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

.fadein-up.deco_head .js-span span:nth-child(6) {
  -webkit-transition-delay: 480ms;
  transition-delay: 480ms;
}

.fadein-up.deco_head .js-span span:nth-child(7) {
  -webkit-transition-delay: 560ms;
  transition-delay: 560ms;
}

.fadein-up.deco_head .js-span span:nth-child(8) {
  -webkit-transition-delay: 640ms;
  transition-delay: 640ms;
}

.fadein-up.deco_head .js-span span:nth-child(9) {
  -webkit-transition-delay: 720ms;
  transition-delay: 720ms;
}

.fadein-up.deco_head .js-span span:nth-child(10) {
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}

.fadein-up.deco_head .js-span span:nth-child(11) {
  -webkit-transition-delay: 880ms;
  transition-delay: 880ms;
}

.fadein-up.deco_head .js-span span:nth-child(12) {
  -webkit-transition-delay: 960ms;
  transition-delay: 960ms;
}

.fadein-up.deco_head .js-span span:nth-child(13) {
  -webkit-transition-delay: 1040ms;
  transition-delay: 1040ms;
}

.fadein-up.deco_head .js-span span:nth-child(14) {
  -webkit-transition-delay: 1120ms;
  transition-delay: 1120ms;
}

.fadein-up.deco_head .js-span span:nth-child(15) {
  -webkit-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.fadein-up.deco_head .js-span span:nth-child(16) {
  -webkit-transition-delay: 1280ms;
  transition-delay: 1280ms;
}

.fadein-up.deco_head .js-span span:nth-child(17) {
  -webkit-transition-delay: 1360ms;
  transition-delay: 1360ms;
}

.fadein-up.deco_head .js-span span:nth-child(18) {
  -webkit-transition-delay: 1440ms;
  transition-delay: 1440ms;
}

.fadein-up.deco_head .js-span span:nth-child(19) {
  -webkit-transition-delay: 1520ms;
  transition-delay: 1520ms;
}

.fadein-up.deco_head .js-span span:nth-child(20) {
  -webkit-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(1) {
  -webkit-transition-delay: 960ms;
  transition-delay: 960ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(2) {
  -webkit-transition-delay: 1040ms;
  transition-delay: 1040ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(3) {
  -webkit-transition-delay: 1120ms;
  transition-delay: 1120ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(4) {
  -webkit-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(5) {
  -webkit-transition-delay: 1280ms;
  transition-delay: 1280ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(6) {
  -webkit-transition-delay: 1360ms;
  transition-delay: 1360ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(7) {
  -webkit-transition-delay: 1440ms;
  transition-delay: 1440ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(8) {
  -webkit-transition-delay: 1520ms;
  transition-delay: 1520ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(9) {
  -webkit-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(10) {
  -webkit-transition-delay: 1680ms;
  transition-delay: 1680ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(11) {
  -webkit-transition-delay: 1760ms;
  transition-delay: 1760ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(12) {
  -webkit-transition-delay: 1840ms;
  transition-delay: 1840ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(13) {
  -webkit-transition-delay: 1920ms;
  transition-delay: 1920ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(14) {
  -webkit-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(15) {
  -webkit-transition-delay: 2080ms;
  transition-delay: 2080ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(16) {
  -webkit-transition-delay: 2160ms;
  transition-delay: 2160ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(17) {
  -webkit-transition-delay: 2240ms;
  transition-delay: 2240ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(18) {
  -webkit-transition-delay: 2320ms;
  transition-delay: 2320ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(19) {
  -webkit-transition-delay: 2400ms;
  transition-delay: 2400ms;
}

.fadein-up.deco_head .js-span:nth-child(2) span:nth-child(20) {
  -webkit-transition-delay: 2480ms;
  transition-delay: 2480ms;
}

.align-right {
  text-align: right;
}

.color-blue {
  color: #0055a2;
}

.l-header {
  -webkit-box-shadow: 0px 1px 5px 0px rgba(14, 65, 107, 0.4);
  box-shadow: 0px 1px 5px 0px rgba(14, 65, 107, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #0055A2;
}

.l-header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 82px;
  max-width: 1302px;
  margin-inline: auto;
  padding-inline: 20px;
}

.l-header_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 36px;
  height: 100%;
  background: #FFFFFF;
  padding-right: 80px;
  position: relative;
  z-index: 10;
}

.l-header_logo::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50vw;
  height: 100%;
  background: #FFFFFF;
  pointer-events: none;
  z-index: -1;
}

.l-header_logo::before {
  content: "";
  position: absolute;
  left: 178px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: #014689;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1199px) and (min-width: 1024px) {
  .l-header_logo::before {
    left: 170px;
  }
}
.l-header_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 160px;
  position: relative;
}

.l-header_logo a:nth-child(2) {
  width: 120px;
  padding-bottom: 10px;
}

.l-header_logo .header-top-logo-img {
  max-width: 100%;
  height: auto;
}

.l-header_nav {
  max-width: 954px;
  width: 100%;
  margin-right: -88px;
}

@media (max-width: 1400px) and (min-width: 1024px) {
  .l-header_nav {
    margin-right: 0;
  }
}
@media (max-width: 1199px) and (min-width: 1024px) {
  .l-header_logo {
    padding-right: 20px;
    gap: 20px;
  }
  .l-header_logo::after {
    right: 0;
  }
}
@media (max-width: 1023px) {
  .l-header_inner {
    height: 65px;
    max-width: 100%;
    padding-inline: 16px;
  }
  .l-header_logo {
    gap: 27px;
    padding-right: 16px;
  }
  .l-header_logo::after {
    width: 100vw;
    right: auto;
    left: -16px;
  }
  .l-header_logo::before {
    left: 137px;
    height: 17px;
  }
  .l-header_logo a {
    width: 124px;
  }
  .l-header_logo a:nth-child(2) {
    width: 93px;
    padding-bottom: 6px;
  }
  .l-header_nav {
    width: 100%;
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    height: 0;
    opacity: 0;
    z-index: 9;
    -webkit-transition: height 0ms 251ms ease-out, opacity 250ms 0ms ease-out;
    transition: height 0ms 251ms ease-out, opacity 250ms 0ms ease-out;
  }
  .l-header_nav::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: transparent;
    pointer-events: none;
    z-index: 11;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(14, 65, 107, 0.4);
    box-shadow: 0px 1px 5px 0px rgba(14, 65, 107, 0.4);
  }
  .l-header_nav.open {
    height: 100%;
    opacity: 1;
    -webkit-transition: height 0ms 0ms ease-out, opacity 250ms 1ms ease-out;
    transition: height 0ms 0ms ease-out, opacity 250ms 1ms ease-out;
  }
  .l-header_nav_container {
    width: 100%;
    height: calc(100% - 65px);
    padding-bottom: 30px;
    overflow-x: hidden;
    overflow-y: auto;
    margin-top: 65px;
  }
  .l-header_nav--bottom a {
    max-width: 84px;
    display: block;
    margin-inline: auto;
    height: auto;
  }
}
.l-header_opener {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 11;
}

.l-header_opener button {
  display: block;
  position: relative;
  width: 65px;
  height: 65px;
  background: #0055A2;
}

.l-header_opener button:focus-visible {
  outline: 2px auto #000;
}

.l-header_opener.open .l-header_opener_icon > span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
}

.l-header_opener.open .l-header_opener_icon > span:nth-child(2) {
  opacity: 0;
  left: 100%;
}

.l-header_opener.open .l-header_opener_icon > span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 50%;
}

.l-header_opener_icon {
  width: 34px;
  height: 26px;
  margin: 0 auto;
  display: block;
  position: relative;
}

.l-header_opener_icon > span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  display: block;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 4px;
}

.l-header_opener_icon > span:nth-child(1) {
  top: 0;
}

.l-header_opener_icon > span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.l-header_opener_icon > span:nth-child(3) {
  bottom: -2px;
}

.nav {
  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;
}

.nav_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  gap: 59px;
  padding-right: 40px;
  padding-left: 45px;
  padding-bottom: 8px;
}

@media (max-width: 1400px) and (min-width: 1200px) {
  .nav_items {
    gap: 34px;
    padding-right: 0;
    padding-left: 0;
  }
}
.nav_items .nav_item {
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.nav_items .nav_item_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 1.3rem;
  line-height: 1.3846153846;
  font-weight: bold;
  padding-block: 14px 10px;
  position: relative;
  height: 100%;
}

.nav_items .nav_item_link span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 5px;
  position: relative;
  height: 100%;
}

@media (min-width: 1024px) {
  .nav_items .nav_item_link span {
    text-align: center;
  }
}
.nav_items .nav_item_link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  opacity: 0;
}

.nav_items .nav_item_link span > span {
  font-size: 0.6rem;
  padding: 0;
  display: block;
}

@media (min-width: 1024px) {
  .nav_items .nav_item_link span > span {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    text-align: center;
  }
}
.nav_items .nav_item_link span > span::before {
  content: none;
}

.nav_items .nav_item_link:hover span::before {
  opacity: 1;
}

@media (max-width: 1199px) and (min-width: 1024px) {
  .nav_items {
    gap: 15px;
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 1023px) {
  .nav_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    gap: 2px;
    padding-right: 0;
    padding-bottom: 30px;
    padding-left: 0;
  }
  .nav_items li {
    display: block;
    width: 100%;
  }
  .nav_items .nav_item_link {
    color: #0055A2;
    font-size: 1.7rem;
    line-height: 1.1764705882;
    padding-block: 10px;
    background-color: #e9eff6;
    width: 100%;
    padding-inline: 20px;
    min-height: 76px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .nav_items .nav_item_link span {
    max-width: 260px;
    width: 100%;
    margin-inline: auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .nav_items .nav_item_link span::before {
    content: "";
    position: absolute;
    bottom: auto;
    left: auto;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
    height: 10px;
    background-color: transparent;
    background-image: url("/90th/assets/images/common/ico_arrow01.svg");
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    pointer-events: none;
    opacity: 1;
  }
  .nav_items .nav_item_link span span {
    font-size: 1.2rem;
  }
}
.l-footer_logo {
  width: 153px;
  margin-inline: auto;
  margin-block: 30px;
}

.l-footer_info {
  background: #e9eff6;
  padding-block: 15px;
}

.l-footer .l-inner {
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.l-footer_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 170px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.l-footer_sns .txt_sns {
  display: block;
  white-space: nowrap;
  font-size: 1.5rem;
  line-height: 2.1333333333;
  color: #014689;
  font-weight: bold;
}

.l-footer_sns--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.l-footer_sns a {
  display: block;
  height: 30px;
}

.l-footer_text {
  font-size: 1.5rem;
  line-height: 2.1333333333;
  color: #014689;
  font-weight: bold;
  letter-spacing: 0.01em;
  text-align: center;
}

.l-footer_copy {
  font-size: 1.5rem;
  line-height: 2;
  color: #FFFFFF;
  background-color: #0055A2;
  padding-block: 21px;
  text-align: center;
  font-weight: bold;
}

@media (max-width: 1023px) {
  .l-footer_logo {
    width: 95px;
    margin-block: 24px;
  }
  .l-footer .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .l-footer_info {
    padding-block: 0;
  }
  .l-footer_sns {
    max-width: 100%;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -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: 10px;
    margin-block: 10px;
    margin: 0 auto;
  }
  .l-footer_sns .txt_sns {
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
  .l-footer_text {
    font-size: 1.2rem;
    line-height: 1.4166666667;
    color: #FFFFFF;
    padding-inline: 10px;
    margin-bottom: 28px;
  }
  .l-footer_copy {
    font-size: 1.2rem;
    line-height: 2.5;
  }
}
#l-wrapper {
  position: relative;
  overflow-x: hidden;
}

.l-inner {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 20px;
}

@media (max-width: 767px) {
  .l-inner {
    padding-inline: 15px;
  }
}
.page-ttl {
  position: relative;
  padding: 91px 0;
}

.page-ttl::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #0055A2), color-stop(50%, #d80c18));
  background: linear-gradient(to right, #0055A2 50%, #d80c18 50%);
  z-index: -1;
}

@media (max-width: 767px) {
  .page-ttl {
    padding: 22px 0;
  }
}
.page-ttl_title {
  text-align: center;
}

.page-ttl--en {
  display: block;
  color: #0055A2;
  font-size: 6.4rem;
  font-weight: bold;
  margin-bottom: 3px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .page-ttl--en {
    font-size: 3rem;
  }
}
.page-ttl--ja {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .page-ttl--ja {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }
}
#l-loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  -webkit-perspective: 1px;
  perspective: 1px;
  z-index: 10002;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #FFF;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0s;
  transition: 0s;
}

#l-loading.is-hidden {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

#l-loading .spinner {
  --UIB_SIZE: 40px;
  --UIB_SPEED: .9s;
  --UIB_COLOR: #333;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: var(--UIB_SIZE);
  width: var(--UIB_SIZE);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  pointer-events: none;
  -webkit-animation: fadeInSpinner 0.3s cubic-bezier(0.66, 0, 0.34, 1) 0.3s 1 both;
  animation: fadeInSpinner 0.3s cubic-bezier(0.66, 0, 0.34, 1) 0.3s 1 both;
}

#l-loading .spinner_dot {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

#l-loading .spinner_dot::before {
  content: "";
  height: 20%;
  width: 20%;
  border-radius: 50%;
  background-color: var(--UIB_COLOR);
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0.5;
  -webkit-animation: pulse calc(var(--UIB_SPEED) * 1.111) ease-in-out infinite;
  animation: pulse calc(var(--UIB_SPEED) * 1.111) ease-in-out infinite;
}

#l-loading .spinner_dot:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#l-loading .spinner_dot:nth-child(2)::before {
  -webkit-animation-delay: calc(var(--UIB_SPEED) * -0.875);
  animation-delay: calc(var(--UIB_SPEED) * -0.875);
}

#l-loading .spinner_dot:nth-child(3) {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

#l-loading .spinner_dot:nth-child(3)::before {
  -webkit-animation-delay: calc(var(--UIB_SPEED) * -0.75);
  animation-delay: calc(var(--UIB_SPEED) * -0.75);
}

#l-loading .spinner_dot:nth-child(4) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

#l-loading .spinner_dot:nth-child(4)::before {
  -webkit-animation-delay: calc(var(--UIB_SPEED) * -0.625);
  animation-delay: calc(var(--UIB_SPEED) * -0.625);
}

#l-loading .spinner_dot:nth-child(5) {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#l-loading .spinner_dot:nth-child(5)::before {
  -webkit-animation-delay: calc(var(--UIB_SPEED) * -0.5);
  animation-delay: calc(var(--UIB_SPEED) * -0.5);
}

#l-loading .spinner_dot:nth-child(6) {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

#l-loading .spinner_dot:nth-child(6)::before {
  -webkit-animation-delay: calc(var(--UIB_SPEED) * -0.375);
  animation-delay: calc(var(--UIB_SPEED) * -0.375);
}

#l-loading .spinner_dot:nth-child(7) {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

#l-loading .spinner_dot:nth-child(7)::before {
  -webkit-animation-delay: calc(var(--UIB_SPEED) * -0.25);
  animation-delay: calc(var(--UIB_SPEED) * -0.25);
}

#l-loading .spinner_dot:nth-child(8) {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

#l-loading .spinner_dot:nth-child(8)::before {
  -webkit-animation-delay: calc(var(--UIB_SPEED) * -0.125);
  animation-delay: calc(var(--UIB_SPEED) * -0.125);
}

@-webkit-keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInSpinner {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeInSpinner {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.c-heading-ttl--en {
  font-size: 1.5rem;
  line-height: 1.5333333333;
  color: #0055A2;
  font-weight: bold;
  display: block;
  margin-bottom: 16px;
  position: relative;
  padding-left: 29px;
  letter-spacing: 0.04em;
}

.c-heading-ttl--en::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 8px;
  width: 15px;
  height: 10px;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #0055A2), color-stop(51%, #d80c18));
  background: linear-gradient(to right, #0055A2 50%, #d80c18 51%);
}

.c-heading-ttl--ja {
  font-size: 3rem;
  line-height: 1.3333333333;
  color: #000000;
  font-weight: bold;
}

@media (max-width: 767px) {
  .c-heading-ttl--en {
    font-size: 1.3rem;
    line-height: 1.7692307692;
    margin-bottom: 3px;
  }
  .c-heading-ttl--en::before {
    left: 5px;
  }
  .c-heading-ttl--ja {
    font-size: 2.5rem;
    line-height: 1.76;
  }
}
.main_visual {
  margin-top: 65px;
}

.main_visual_txt {
  max-width: 280px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.main_visual_txt--des {
  font-size: 1.8rem;
  line-height: 2.7777777778;
  color: #014689;
  font-weight: bold;
  text-align: center;
  max-width: 688px;
  width: 100%;
  margin-inline: auto;
}

.main_visual .btn_wrap {
  margin-top: 33px;
}

.main_visual .btn-scroll {
  width: 14px;
  margin-inline: auto;
  position: relative;
  display: block;
  padding-bottom: 92px;
}

.main_visual .btn-scroll:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 45%;
  width: 2px;
  height: 76px;
  background: #0055A2;
  -webkit-animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

.main_visual .btn-scroll img {
  width: 100%;
}

@media (max-width: 767px) {
  .main_visual {
    margin-top: 53px;
  }
  .main_visual_txt {
    max-width: 213px;
    margin-bottom: 27px;
  }
  .main_visual_txt--des {
    font-size: 1.5rem;
    line-height: 2.1333333333;
    margin-bottom: 20px;
  }
  .main_visual .btn_wrap {
    margin-top: 25px;
  }
  .main_visual .btn-scroll {
    width: 10px;
    padding-bottom: 66px;
  }
  .main_visual .btn-scroll:after {
    height: 55px;
    left: 40%;
  }
}
.l-main section {
  position: relative;
  z-index: 1;
}

.l-main .topics {
  margin-top: 154px;
}

.l-main .topics .l-inner {
  position: relative;
  padding-top: 101px;
}

.l-main .topics .deco_head {
  position: absolute;
  top: 0;
  left: -116px;
  width: 100%;
  min-height: 285px;
  z-index: 5;
  margin-top: -4px;
}

.l-main .topics .deco_head::after {
  content: "";
  position: absolute;
  top: 0;
  right: -34px;
  width: 100vw;
  height: 100%;
  background: #0055A2;
  pointer-events: none;
  z-index: -1;
  border-radius: 0 40px 40px 0;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(14, 65, 107, 0.05);
  box-shadow: 0px 0px 20px 0px rgba(14, 65, 107, 0.05);
}

.l-main .topics .c-heading-ttl {
  margin-bottom: 101px;
  position: relative;
  z-index: 10;
  margin-left: 61px;
}

.l-main .topics .c-heading-ttl--en {
  color: #FFFFFF;
}

.l-main .topics .c-heading-ttl--en::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #FFFFFF), color-stop(51%, #d80c18));
  background: linear-gradient(to right, #FFFFFF 50%, #d80c18 51%);
}

.l-main .topics .c-heading-ttl--ja {
  color: #FFFFFF;
}

.l-main .topics_swiper {
  position: relative;
  z-index: 4;
  padding-block: 64px 27px;
  margin-left: 52px;
}

.l-main .topics_swiper::after {
  content: "";
  position: absolute;
  top: -85px;
  left: -50px;
  width: 100vw;
  height: calc(100% + 86px);
  background: transparent;
  pointer-events: none;
  z-index: -1;
  border-radius: 40px 0 0 40px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(14, 65, 107, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(14, 65, 107, 0.2);
}

.l-main .topics_swiper .swiper-button-disabled {
  display: none !important;
}

.l-main .topics_swiper-prev, .l-main .topics_swiper-next {
  position: absolute;
  top: calc(50% - 22px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 3px 3px 0px rgba(104, 104, 104, 0.4);
  box-shadow: 0px 3px 3px 0px rgba(104, 104, 104, 0.4);
}

.l-main .topics_swiper-prev::before, .l-main .topics_swiper-next::before {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-image: url("/90th/assets/images/common/ico_arrow02.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (hover: hover) {
  .l-main .topics_swiper-prev:hover, .l-main .topics_swiper-next:hover {
    opacity: 0.75;
  }
}
.l-main .topics_swiper-prev {
  left: -35px;
}

.l-main .topics_swiper-prev::before {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.l-main .topics_swiper-next {
  right: -35px;
}

.l-main .topics .swiper {
  position: relative;
  overflow: visible;
  margin-left: 0;
  -webkit-clip-path: inset(0px -50vw 0px 0);
  clip-path: inset(0px -50vw 0px 0);
}

.l-main .topics_item {
  margin-right: 46px;
  width: 534px;
}

.l-main .topics_item--img {
  overflow: hidden;
  border-radius: 16px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(14, 65, 107, 0.05);
  box-shadow: 0px 0px 20px 0px rgba(14, 65, 107, 0.05);
}

.l-main .topics_item--img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.l-main .topics_item--img img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.l-main .topics_item--txt {
  font-size: 2rem;
  line-height: 1.5;
  color: #000000;
  font-weight: bold;
  margin-top: 24px;
  margin-left: 4px;
}

@media (max-width: 1023px) and (min-width: 768px) {
  .l-main .topics .deco_head {
    left: -10px;
  }
  .l-main .topics .deco_head--txt {
    font-size: 9.6rem;
    line-height: 1.3541666667;
  }
  .l-main .topics .deco_head::after {
    right: 10px;
  }
  .l-main .topics .c-heading-ttl {
    margin-left: 0;
  }
  .l-main .topics_swiper {
    margin-inline: 40px;
  }
}
@media (max-width: 767px) {
  .l-main .topics {
    margin-top: 53px;
  }
  .l-main .topics .l-inner {
    padding-top: 94px;
  }
  .l-main .topics .deco_head {
    left: 0;
    width: 100%;
    min-height: 189px;
    margin-top: -4px;
  }
  .l-main .topics .deco_head::after {
    right: 68px;
  }
  .l-main .topics .c-heading-ttl {
    margin-left: 0;
    margin-bottom: 40px;
  }
  .l-main .topics_swiper {
    margin-inline: 0;
    padding-block: 30px 23px;
    padding-inline: 20px;
  }
  .l-main .topics_swiper::after {
    top: -144px;
    left: -15px;
    height: calc(100% + 144px);
  }
  .l-main .topics_swiper-prev, .l-main .topics_swiper-next {
    width: 30px;
    height: 30px;
    top: calc(50% - 26px);
  }
  .l-main .topics_swiper-prev::before, .l-main .topics_swiper-next::before {
    background-size: 100%;
  }
  .l-main .topics_swiper-prev {
    left: -13px;
  }
  .l-main .topics_swiper-next {
    right: -13px;
  }
  .l-main .topics .swiper {
    overflow: hidden;
  }
  .l-main .topics_item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .l-main .topics_item:last-child {
    margin-bottom: 0;
  }
  .l-main .topics_item--img {
    border-radius: 10px;
  }
  .l-main .topics_item--txt {
    font-size: 1.5rem;
    line-height: 2;
    margin-top: 13px;
    margin-left: 0px;
    margin-right: -2px;
  }
}
@media screen and (max-width: 374px) {
  .l-main .topics .deco_head {
    left: 0;
    width: 100%;
    min-height: 189px;
    margin-top: -4px;
  }
  .l-main .topics .deco_head::after {
    right: 15px;
  }
}
.l-main .news {
  margin-top: 143px;
}

.l-main .news .l-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}

.l-main .news .c-heading-ttl {
  margin-bottom: 101px;
  position: relative;
  z-index: 10;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 61px;
}

.l-main .news_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 895px;
  width: calc(100% - 322px);
}

.l-main .news_items a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-main .news_items a:hover .news_item--txt {
  color: #0055A2;
}

.l-main .news_items a:hover .news_item--date {
  color: #0055A2;
}

.l-main .news_item {
  padding-bottom: 25px;
  margin-bottom: 27px;
  width: 100%;
  border-bottom: 1px solid #d8e1e8;
}

.l-main .news_item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.l-main .news_item--date {
  font-size: 1.6rem;
  line-height: 1.4375;
  color: #000000;
  font-weight: 500;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 125px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  padding-left: 20px;
}

.l-main .news_item--txt {
  font-size: 1.6rem;
  line-height: 1.4375;
  color: #000000;
  font-weight: 500;
  line-height: 1.5;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.l-main .news .btn_wrap {
  margin-top: 28px;
  margin-left: 60px;
  max-width: 390px;
  width: 100%;
}

.l-main .news .btn_wrap .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .l-main .news .c-heading-ttl {
    margin-left: 0;
  }
  .l-main .news_items {
    max-width: 100%;
    width: calc(100% - 155px);
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .l-main .news {
    margin-top: 93px;
    margin-bottom: 43px;
  }
  .l-main .news .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .l-main .news .c-heading-ttl {
    margin-bottom: 34px;
  }
  .l-main .news_items {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .l-main .news_items a {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .l-main .news_item {
    padding-bottom: 21px;
    margin-bottom: 18px;
    border-bottom-width: 2px;
  }
  .l-main .news_item:last-child {
    border-bottom: 2px solid #d8e1e8;
  }
  .l-main .news_item--date {
    min-width: 100px;
    padding-left: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
    line-height: 1.5333333333;
  }
  .l-main .news_item--txt {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
  .l-main .news .btn_wrap {
    margin-top: 49px;
    max-width: 325px;
    width: 100%;
    margin-inline: auto;
  }
}
.l-main .co-creation {
  margin-top: 197px;
}

.l-main .co-creation .l-inner {
  max-width: 1305px;
  position: relative;
}

.l-main .co-creation .deco_head {
  position: absolute;
  z-index: -3;
  top: -225px;
  left: 32.3vw;
  width: 100vw;
}

.l-main .co-creation .deco_head--txt {
  font-size: 12rem;
  line-height: 0.9583333333;
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .l-main .co-creation .deco_head {
    left: 0;
  }
  .l-main .co-creation .deco_head--txt {
    font-size: 9.6rem;
    line-height: 1.0416666667;
  }
}
@media (max-width: 767px) {
  .l-main .co-creation .deco_head {
    left: 0;
  }
  .l-main .co-creation .deco_head--txt {
    font-size: 4.8rem;
    line-height: 1.25;
  }
}
.l-main .co-creation_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding-top: 100px;
}

.l-main .co-creation_text {
  max-width: 466px;
  width: 100%;
  margin-top: 0px;
  margin-right: 41px;
}

@media (max-width: 1023px) {
  .l-main .co-creation_text {
    margin-right: 0;
  }
}
.l-main .co-creation_box {
  max-width: 640px;
  width: 100%;
  position: relative;
}

.l-main .co-creation_box:after {
  content: "";
  position: absolute;
  top: -152px;
  right: 166px;
  width: 100vw;
  height: calc(100% + 28px);
  background-color: #0055a2;
  z-index: -2;
  border-radius: 35px;
}

.l-main .co-creation_item--img {
  overflow: hidden;
  border-radius: 35px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(14, 65, 107, 0.05);
  box-shadow: 0px 0px 20px 0px rgba(14, 65, 107, 0.05);
}

.l-main .co-creation_item--img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.l-main .co-creation_item--img img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.l-main .co-creation .btn_wrap {
  margin-top: 92px;
}

@media (max-width: 767px) {
  .l-main .co-creation {
    margin-top: 7px;
  }
  .l-main .co-creation_content {
    padding-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .l-main .co-creation_box {
    max-width: 100%;
    margin-top: 70px;
  }
  .l-main .co-creation_box::after {
    top: -72px;
    right: 95px;
    height: calc(100% + 15px);
  }
  .l-main .co-creation_item--img {
    margin-left: 41px;
  }
  .l-main .co-creation .btn_wrap {
    margin-top: 3px;
  }
  .l-main .co-creation .btn_wrap .btn_more {
    max-width: 100%;
    width: 318px;
  }
}
@media (min-width: 768px) {
  .message .c-heading-ttl--ja {
    font-size: 2.8rem;
  }
}
.message_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 99px 0 137px;
  gap: 50px;
  margin-left: 61px;
}

@media (max-width: 1023px) {
  .message_content {
    gap: 50px;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .message_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0;
    padding: 50px 0 70px;
  }
}
@media (min-width: 768px) {
  .message_text {
    -webkit-transform: translateY(-14px);
    transform: translateY(-14px);
  }
}
@media (max-width: 767px) {
  .message_text {
    width: 100%;
  }
}
.message .c-heading-ttl {
  margin-bottom: 95px;
}

@media (max-width: 767px) {
  .message .c-heading-ttl {
    margin-bottom: 38px;
    margin-right: -10px;
  }
  .message .c-heading-ttl--ja {
    letter-spacing: -0.08em;
  }
}
@media (min-width: 768px) {
  .message .btn_more {
    font-size: 2rem;
    padding-left: 20px;
    padding-block: 10px;
  }
}
.message_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 91px 36px 91px 60px;
  gap: 43px;
  border-radius: 40px;
  background-color: #ffffff;
  position: relative;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  left: 21px;
}

@media screen and (max-width: 1219px) {
  .message_box {
    max-width: 50%;
    padding: 60px 40px;
    gap: 20px;
    left: 0;
  }
}
@media (max-width: 767px) {
  .message_box {
    max-width: calc(100% - 42px);
    width: 100%;
    padding: 44px 18px 43px 29px;
    margin-bottom: 112px;
    gap: 20px;
  }
}
.message_box:after {
  content: "";
  position: absolute;
  top: 107px;
  height: calc(100% + 30px);
  max-height: 466px;
  width: calc(100% + (100vw - 1180px) / 2);
  background-color: #0055a2;
  z-index: -1;
  left: 197px;
  border-radius: 40px 0 0 40px;
}

@media screen and (max-width: 1219px) {
  .message_box:after {
    width: 100vw;
  }
}
@media (max-width: 767px) {
  .message_box:after {
    top: 50px;
    left: 94px;
    max-height: calc(100% + 14px);
  }
}
.message_item--img {
  width: 100%;
}

@media (max-width: 767px) {
  .message_item--img {
    width: 46%;
  }
}
.message_item--img img {
  width: 273px;
  max-width: 100%;
}

@media (max-width: 767px) {
  .message_item--img img {
    width: 100%;
  }
}
.message_item--txt {
  width: 100%;
}

@media (max-width: 767px) {
  .message_item--txt {
    width: 42%;
  }
}
.message_item--txt img {
  width: 225px;
  max-width: 100%;
}

@media (max-width: 767px) {
  .message_item--txt img {
    width: 100%;
  }
}
.message .btn_wrap {
  width: 100%;
}

@media (max-width: 767px) {
  .message .btn_wrap {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .history {
    padding: 100px 0 70px;
  }
}
.history .l-inner {
  position: relative;
  max-width: 1370px;
}

.history .deco_head {
  position: absolute;
  top: -153px;
  left: -45px;
  width: 100%;
  z-index: -1;
}

.history .deco_head--txt {
  font-size: 17rem;
  line-height: 1;
}

@media (max-width: 1023px) {
  .history .deco_head {
    top: -106px;
    left: -16px;
  }
  .history .deco_head--txt {
    font-size: 9.6rem;
    line-height: 1.3541666667;
  }
}
@media (max-width: 767px) {
  .history .deco_head {
    top: -97px;
    left: 10px;
  }
  .history .deco_head--txt {
    font-size: 7.3rem;
    line-height: 1.7534246575;
  }
}
.history_box {
  position: relative;
}

@media (max-width: 767px) {
  .history_box {
    background-color: #0055a2;
    border-radius: 40px;
    overflow: hidden;
    margin: 0 -15px;
    padding: 0;
  }
}
.history_box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: #0055a2;
  z-index: -1;
  border-radius: 40px 0 0 40px;
}

@media (max-width: 767px) {
  .history_box:after {
    display: none;
  }
}
.history_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 271px 0 57px;
  position: relative;
  border-radius: 40px 0 0 40px;
  overflow: hidden;
  gap: 30px;
}

@media (max-width: 767px) {
  .history_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0;
    padding: 0 20px;
    gap: 0;
  }
}
.history_content-text {
  max-width: 405px;
  position: relative;
  padding: 93px 0;
  margin-right: 137px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 1253px) {
  .history_content-text {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .history_content-text {
    padding: 21px 0 43px;
    margin: 0 auto;
    max-width: 100%;
  }
}
.history_content-img {
  max-width: 622px;
  position: relative;
}

@media (max-width: 767px) {
  .history_content-img {
    margin-left: -20px;
    margin-right: 5px;
    max-width: calc(100% + 15px);
  }
}
.history_content .c-heading-ttl {
  margin-bottom: 34px;
}

@media (max-width: 767px) {
  .history_content .c-heading-ttl {
    margin-bottom: 32px;
  }
}
.history_content .c-heading-ttl--en {
  color: #ffffff;
}

.history_content .c-heading-ttl--en::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ffffff), color-stop(51%, #d80c18));
  background: linear-gradient(to right, #ffffff 50%, #d80c18 51%);
}

.history_content .c-heading-ttl--ja {
  color: #ffffff;
}

.history_text {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 2.125;
  color: #ffffff;
}

@media (max-width: 767px) {
  .history_text {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}
.history .btn_wrap {
  margin-top: 84px;
}

@media (max-width: 767px) {
  .history .btn_wrap {
    margin-top: 38px;
    text-align: center;
  }
}
.event {
  margin-top: 123px;
}

@media (max-width: 767px) {
  .event {
    margin-top: 87px;
  }
}
.event .l-inner {
  position: relative;
}

.event .deco_head {
  position: absolute;
  top: 6px;
  left: -116px;
  width: 100%;
  z-index: -1;
}

.event .deco_head--txt {
  font-size: 13rem;
  line-height: 0.9461538462;
}

@media (max-width: 1023px) {
  .event .deco_head {
    left: -10px;
  }
  .event .deco_head--txt {
    font-size: 9.6rem;
    line-height: 1.0416666667;
  }
}
@media (max-width: 767px) {
  .event .deco_head {
    left: 0;
    top: 0;
  }
  .event .deco_head--txt {
    font-size: 4.8rem;
    line-height: 1.25;
  }
}
.event .c-heading-ttl {
  margin-bottom: 37px;
}

@media (max-width: 767px) {
  .event .c-heading-ttl {
    margin-bottom: 30px;
  }
}
.event_text {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 2.125;
}

@media (max-width: 767px) {
  .event_text {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}
.event .btn_wrap {
  margin-top: 92px;
}

@media (max-width: 767px) {
  .event .btn_wrap {
    margin-top: 45px;
    text-align: center;
  }
}
.event .event_content {
  padding: 93px 0 193px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
}

@media (max-width: 767px) {
  .event .event_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0;
    padding: 111px 0 50px;
  }
}
.event .event_content-text {
  max-width: 480px;
  width: 100%;
  margin-top: 52px;
  margin-left: 61px;
}

@media (max-width: 1023px) {
  .event .event_content-text {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .event .event_content-text {
    margin: 80px auto 0;
    max-width: 100%;
  }
}
.event .event_content-img {
  width: 100%;
  position: relative;
  max-width: 538px;
}

@media (max-width: 767px) {
  .event .event_content-img {
    max-width: 100%;
  }
}
.event .event_content-img img {
  border-radius: 40px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  width: 100%;
}

@media (max-width: 767px) {
  .event .event_content-img img {
    width: 84%;
    border-radius: 20px;
  }
}
.event .event_content-img:after {
  content: "";
  position: absolute;
  top: 33px;
  height: calc(100% + 75px);
  max-height: 435px;
  width: calc(100% + (100vw - 1180px) / 2);
  background-color: #0055a2;
  z-index: -1;
  left: 70px;
  border-radius: 40px 0 0 40px;
}

@media screen and (max-width: 1219px) {
  .event .event_content-img:after {
    width: 100vw;
  }
}
@media (max-width: 767px) {
  .event .event_content-img:after {
    top: 17px;
    left: 39px;
    border-radius: 20px;
    height: calc(100% + 40px);
  }
}
.c-pagetop-wrap {
  position: relative;
}

.c-pagetop {
  right: calc(50% - 610px - 10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  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;
  cursor: pointer;
  z-index: 10;
  position: absolute;
  top: -120px;
  width: 100px;
  height: 100px;
}

@media screen and (max-width: 1219px) {
  .c-pagetop {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .c-pagetop {
    width: 80px;
    height: 80px;
    right: 5px;
    top: -20px;
  }
}
.c-pagetop img {
  width: 100%;
}

.c-pagetop.fixed {
  position: fixed;
  top: auto;
  bottom: 45px;
}

@media (max-width: 767px) {
  .c-pagetop.fixed {
    bottom: 30px;
  }
}
.c-pagetop.is-active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .c-pagetop.is-active:hover {
    opacity: 0.7;
  }
}
.page-message .message-content {
  padding: 84px 0 150px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(33.78%, rgb(250, 251, 252)), color-stop(72.69%, rgb(236, 240, 244)), to(rgb(222, 228, 235)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(250, 251, 252) 33.78%, rgb(236, 240, 244) 72.69%, rgb(222, 228, 235) 100%);
}

.page-message .message-content .l-inner {
  max-width: 1100px;
}

@media (max-width: 767px) {
  .page-message .message-content {
    padding: 39px 0 49px;
  }
}
.page-message .president-message {
  margin-bottom: 143px;
}

.page-message .president-message_title {
  color: #0055A2;
  font-weight: bold;
  margin-bottom: 38px;
  font-size: 3.3rem;
  line-height: 1.5151515152;
}

.page-message .president-message_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 31px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.page-message .president-message_text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.page-message .president-message_text p {
  font-size: 1.6rem;
  line-height: 1.9375;
  font-weight: 500;
}

.page-message .president-message_text p + p {
  margin-top: 31px;
}

.page-message .president-message_image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 345px;
  flex: 0 0 345px;
  margin-top: 50px;
  border-radius: 12px;
  overflow: hidden;
}

.page-message .president-message_image img {
  width: 100%;
}

.page-message .president-message_signature {
  text-align: right;
  margin-top: 36px;
  margin-right: 11px;
}

.page-message .president-message_signature p {
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 1.5217391304;
}

.page-message .president-message_date {
  margin-bottom: 10px;
  margin-top: 13px !important;
}

.page-message .president-message_position {
  margin-top: -10px !important;
  margin-bottom: 0;
}

.page-message .president-message_name {
  width: 257px;
  margin-left: auto;
  margin-right: 0;
}

.page-message .president-message_name img {
  width: 100%;
}

@media (max-width: 1023px) {
  .page-message .president-message_content {
    gap: 42px;
  }
  .page-message .president-message_text {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    max-width: 516px;
    width: 100%;
  }
  .page-message .president-message_text p {
    font-size: 1.6rem;
    line-height: 1.9375;
    font-weight: 500;
  }
  .page-message .president-message_text p + p {
    margin-top: 31px;
  }
  .page-message .president-message_image {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    max-width: 437px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .page-message .president-message {
    margin-bottom: 99px;
  }
  .page-message .president-message_title {
    font-size: 2.8rem;
    line-height: 1.6071428571;
    margin-bottom: 44px;
  }
  .page-message .president-message_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 31px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .page-message .president-message_text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .page-message .president-message_text p {
    font-size: 1.6rem;
    line-height: 1.9375;
    font-weight: 500;
  }
  .page-message .president-message_text p + p {
    margin-top: 31px;
  }
  .page-message .president-message_image {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    margin-top: 0;
    border-radius: 24px;
  }
  .page-message .president-message_signature {
    margin-top: 38px;
    margin-right: 0;
  }
  .page-message .president-message_signature p {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
  .page-message .president-message_date {
    margin-bottom: 10px;
  }
  .page-message .president-message_name {
    width: 230px;
    margin-top: 15px !important;
  }
}
.page-message .logo-section {
  position: relative;
  padding-top: 108px;
  padding-bottom: 100px;
  margin-bottom: 84px;
}

.page-message .logo-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 40px;
  width: 100vw;
  height: 100%;
  background: #FFFFFF;
  pointer-events: none;
  z-index: -1;
  border-radius: 0 40px 40px 0;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(14, 65, 107, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(14, 65, 107, 0.2);
}

.page-message .logo-section::after {
  content: "";
  position: absolute;
  top: 194px;
  right: -109px;
  width: calc(100% + 76px);
  height: calc(100% - 109px);
  background: #0055A2;
  pointer-events: none;
  z-index: -2;
  border-radius: 40px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(14, 65, 107, 0.05);
  box-shadow: 0px 0px 20px 0px rgba(14, 65, 107, 0.05);
}

.page-message .logo-section .c-heading-ttl {
  position: relative;
  z-index: 10;
}

.page-message .logo-section .c-heading-ttl--en {
  font-size: 1.7rem;
  line-height: 1.3529411765;
  padding-left: 42px;
  margin-bottom: 23px;
}

.page-message .logo-section .c-heading-ttl--en::before {
  height: 15px;
  width: 24px;
}

.page-message .logo-section .c-heading-ttl--ja {
  width: 100%;
  max-width: 280px;
  display: block;
}

.page-message .logo-section .c-heading-ttl--ja img {
  max-width: 100%;
}

.page-message .logo-section_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  padding-right: 190px;
  position: relative;
  z-index: 20;
}

.page-message .logo-section_text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 60px;
  max-width: 440px;
}

.page-message .logo-section_text p {
  margin-bottom: 20px;
  color: #0055A2;
  font-size: 2rem;
  line-height: 2.3;
  font-weight: bold;
}

.page-message .logo-section_image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 310px;
  flex: 0 0 310px;
  margin-top: -32px;
}

.page-message .logo-section_image img {
  width: 100%;
}

@media (max-width: 1023px) {
  .page-message .logo-section_content {
    gap: 30px;
    padding-right: 60px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .page-message .logo-section_text {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    width: 100%;
    margin-top: 60px;
    max-width: 440px;
  }
  .page-message .logo-section_image {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    max-width: 310px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .page-message .logo-section {
    padding-top: 52px;
    padding-bottom: 32px;
    margin-bottom: 85px;
  }
  .page-message .logo-section::before {
    right: -15px;
  }
  .page-message .logo-section::after {
    right: -126px;
  }
  .page-message .logo-section .c-heading-ttl--en {
    font-size: 1.3rem;
    line-height: 1.7692307692;
    padding-left: 27px;
    margin-bottom: 14px;
  }
  .page-message .logo-section .c-heading-ttl--en::before {
    height: 11px;
    width: 16px;
  }
  .page-message .logo-section .c-heading-ttl--ja {
    max-width: 273px;
  }
  .page-message .logo-section_content {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 10px;
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .page-message .logo-section_text {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    margin-top: 30px;
    max-width: 100%;
    text-align: center;
  }
  .page-message .logo-section_text p {
    margin-bottom: 20px;
    font-size: 1.6rem;
    line-height: 2.125;
  }
  .page-message .logo-section_image {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    margin-top: 67px;
    margin-inline: auto;
    max-width: 193px;
  }
  .page-message .logo-section_image img {
    width: 100%;
  }
}
.page-history .l-main {
  background: linear-gradient(136.07deg, rgb(255, 255, 255) 0%, rgb(251, 251, 252) 28%, rgb(239, 241, 243) 56.05%, rgb(219, 223, 228) 84.03%, rgb(204, 210, 217) 100%);
}

.history-content {
  padding: 6.5rem 0 10rem;
}

@media (max-width: 767px) {
  .history-content {
    padding: 4rem 0 11.2rem;
  }
}
.history-content .l-inner {
  max-width: 1191px;
}

.history-content_text {
  font-size: 1.8rem;
  line-height: 2.7777777778;
  font-weight: 700;
  color: #0055a2;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .history-content_text {
    font-size: 1.4rem;
    line-height: 2.3;
  }
}
.history-content .c-year {
  margin-bottom: 20px;
  height: 44px;
  text-align: left;
  display: block;
  width: 100%;
  margin-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.history-content .c-year img {
  margin: 0 !important;
}

@media (max-width: 767px) {
  .history-content .c-year {
    margin-bottom: 15px;
  }
}
.history-content .c-year + .c-year-sub {
  margin-top: 0;
}

.history-content .c-year-sub {
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 700;
  color: #0055a2;
  margin-bottom: 3px;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .history-content .c-year-sub {
    font-size: 1.4rem;
    line-height: 1.7857142857;
    margin-bottom: 7px;
  }
}
.history-content .c-text {
  font-size: 1.6rem;
  line-height: 1.875;
}

@media (max-width: 767px) {
  .history-content .c-text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.history-content .c-text + .c-text {
  margin-top: 35px !important;
}

@media (max-width: 767px) {
  .history-content .c-text + .c-text {
    margin-top: 20px !important;
  }
}
.history-content .c-text + .c-year {
  margin-top: 45px;
  margin-bottom: 45px;
}

.history-content .c-text + .c-notice {
  margin-top: 40px;
}

.history-content .c-text + .c-media-box {
  margin-top: 43px;
}

@media (min-width: 768px) {
  .history-content .c-text + .c-point {
    margin-top: 39px;
  }
}
.history-content .c-img {
  position: relative;
  text-align: center;
  margin-top: 13px;
}

.history-content .c-img img {
  max-width: 300px;
}

@media (max-width: 767px) {
  .history-content .c-img img {
    max-width: 280px;
  }
}
.history-content .c-img img + img {
  margin-top: 20px;
}

.history-content .c-img_caption {
  font-size: 1.4rem;
  line-height: 2.1428571429;
  text-align: center;
  display: block;
}

@media (max-width: 767px) {
  .history-content .c-img_caption {
    margin-top: 5px;
  }
}
.history-content .c-img--shadow img {
  -webkit-box-shadow: 0px 2px 5px rgba(32, 80, 125, 0.6);
  box-shadow: 0px 2px 5px rgba(32, 80, 125, 0.6);
}

.history-content .c-img_caption-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 50px;
  margin-top: 24px;
  padding: 0 20px;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .history-content .c-img_caption-list {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .history-content .c-img_caption-list {
    gap: 20px;
    margin-top: 15px;
  }
}
.history-content .c-img_caption-list p {
  font-size: 1.6rem;
  line-height: 1.625;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-bottom: solid 2px;
  position: relative;
  text-align: left;
  padding-bottom: 5px;
}

@media (max-width: 767px) {
  .history-content .c-img_caption-list p {
    font-size: 1.3rem;
    line-height: 1.6923076923;
  }
}
.history-content .c-img_caption-list p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}

.history-content .c-img_caption-list .red {
  border-color: #d80c18;
}

.history-content .c-img_caption-list .red:after {
  width: 0;
  max-height: 190px;
  height: 16vw;
  border: 1px dashed #d80c18;
  position: absolute;
  top: -97px;
  left: 0;
  -webkit-transform: rotate(55deg) translate(-50%, -50%);
  transform: rotate(55deg) translate(-50%, -50%);
}

@media (max-width: 850px) and (min-width: 768px) {
  .history-content .c-img_caption-list .red:after {
    max-height: 194px;
    height: 18vw;
    top: -75px;
    -webkit-transform: rotate(46deg) translate(-50%, -50%);
    transform: rotate(46deg) translate(-50%, -50%);
  }
}
@media (max-width: 767px) {
  .history-content .c-img_caption-list .red:after {
    height: 135px;
    top: -76px;
    -webkit-transform: rotate(53deg) translate(-50%, -50%);
    transform: rotate(53deg) translate(-50%, -50%);
  }
}
.history-content .c-img_caption-list .blue {
  border-color: #0055a2;
}

.history-content .c-img_caption-list .blue:after {
  width: 0;
  max-height: 100px;
  height: 9vw;
  border: 1px dashed #0055a2;
  position: absolute;
  top: -60px;
  left: 0;
  -webkit-transform: rotate(-15deg) translate(-50%, -50%);
  transform: rotate(-15deg) translate(-50%, -50%);
}

@media (max-width: 767px) {
  .history-content .c-img_caption-list .blue:after {
    left: 5px;
    height: 83px;
    top: -46px;
    -webkit-transform: rotate(-12deg) translate(-50%, -50%);
    transform: rotate(-12deg) translate(-50%, -50%);
  }
}
.history-content .c-img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 20px;
  max-width: 940px;
  margin: 0 auto;
}

.history-content .c-img-list .c-img {
  margin: 0;
}

@media (max-width: 767px) {
  .history-content .c-img-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;
  }
}
.history-content .c-point {
  position: relative;
  background-color: #e9edf2;
  padding: 14px 20px;
  border-radius: 30px;
  margin: 58px -20px 30px;
}

@media (max-width: 767px) {
  .history-content .c-point {
    margin: 60px -25px 30px;
  }
}
.history-content .c-point_tag {
  position: absolute;
  top: -24px;
  left: 0;
  width: 100px;
}

@media (max-width: 767px) {
  .history-content .c-point_tag + .c-img {
    margin-top: 6px !important;
  }
}
.history-content .c-notice {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #ffffff;
  background-color: #0055a2;
  text-align: center;
  margin-bottom: 40px;
  padding: 9px 50px;
  border-radius: 20px;
  display: inline-block;
}

@media (max-width: 767px) {
  .history-content .c-notice {
    font-size: 1.6rem;
    line-height: 1.75;
    padding: 10px;
    display: block;
    border-radius: 0 !important;
    margin: 0 -30px 30px;
  }
}
.history-content .c-notice--gray {
  background-color: #e9edf2;
  color: #0055a2;
  border-radius: 24px;
  display: block;
  text-align: left;
  margin-bottom: 51px;
}

@media (max-width: 767px) {
  .history-content .c-notice--gray {
    margin-bottom: 38px;
    text-align: center;
  }
}
.history-content .c-notice + .c-media-box {
  margin-top: 10px;
}

.history-content .c-timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 200px 0;
  position: relative;
  padding-bottom: 245px;
  margin: 174px auto 0;
}

@media (max-width: 767px) {
  .history-content .c-timeline {
    gap: 50px;
    margin: 90px auto 0;
    padding-bottom: 151px;
  }
}
.history-content .c-timeline.is-show {
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  .history-content .c-timeline.is-show .c-timeline_item--1970:after {
    opacity: 1;
  }
}
.history-content .c-timeline::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 3px;
  height: calc(100% - 55px);
  background-color: #c6cfd6;
}

@media (min-width: 768px) {
  .history-content .c-timeline::after {
    content: "";
    position: absolute;
    top: 55px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 13px;
    height: 13px;
    background-color: #0055a2;
    border-radius: 50%;
    z-index: 1;
  }
}
.history-content .c-timeline_item {
  width: 50%;
  position: relative;
  padding-right: 77px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .history-content .c-timeline_item {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .history-content .c-timeline_item {
    width: 100%;
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .history-content .c-timeline_item::before {
    content: "";
    position: absolute;
    top: 297px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #c6cfd6;
    z-index: 0;
  }
}
.history-content .c-timeline_item::after {
  content: "";
  position: absolute;
  top: 293px;
  right: -7px;
  width: 13px;
  height: 13px;
  background-color: #0055a2;
  border-radius: 50%;
  z-index: 1;
}

@media (max-width: 767px) {
  .history-content .c-timeline_item::after {
    right: auto !important;
    top: auto !important;
    bottom: -30px !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.history-content .c-timeline_item-inner {
  max-width: 495px;
  border-radius: 40px;
  padding: 39px 51px 34px;
  -webkit-box-shadow: 0 0 10px 0 rgba(14, 65, 107, 0.2);
  box-shadow: 0 0 10px 0 rgba(14, 65, 107, 0.2);
  position: relative;
  z-index: 1;
  background-color: #ffffff;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .history-content .c-timeline_item-inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .history-content .c-timeline_item-inner {
    padding: 50px 40px 42px;
  }
}
.history-content .c-timeline_item-inner > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .history-content .c-timeline_item .c-img {
    margin: 16px -10px 0;
  }
}
.history-content .c-timeline_item .c-accordion_content {
  padding-top: 32px;
}

@media (min-width: 768px) {
  .history-content .c-timeline_item:nth-child(even), .history-content .c-timeline_item--revert {
    margin-top: 434px;
    margin-bottom: -434px;
    margin-left: auto;
    padding-left: 77px;
    padding-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (min-width: 768px) {
  .history-content .c-timeline_item:nth-child(even), .history-content .c-timeline_item--revert {
    padding-left: 30px;
  }
}
@media (min-width: 768px) {
  .history-content .c-timeline_item:nth-child(even) .c-timeline_item-inner, .history-content .c-timeline_item--revert .c-timeline_item-inner {
    margin-left: auto;
  }
  .history-content .c-timeline_item:nth-child(even)::after, .history-content .c-timeline_item--revert::after {
    right: auto;
    left: -7px;
  }
  .history-content .c-timeline_item:nth-child(even)::before, .history-content .c-timeline_item--revert::before {
    left: auto;
    right: 0;
  }
  .history-content .c-timeline_item:nth-child(even) .c-timeline__item-inner, .history-content .c-timeline_item--revert .c-timeline__item-inner {
    margin-left: auto;
    margin-right: 0;
  }
  .history-content .c-timeline_item--2000 {
    margin-top: -480px;
    margin-bottom: 0;
  }
}
.history-content .c-timeline_item--1960::before {
  top: 261px;
}

.history-content .c-timeline_item--1960:after {
  top: 256px;
}

.history-content .c-timeline_item--1970::after {
  top: 236px;
}

@media (max-width: 767px) {
  .history-content .c-timeline_item--1970::after {
    opacity: 0;
  }
}
.history-content .c-timeline_item--1970::before {
  top: 241px;
}

.history-content .c-timeline_item--1980::before {
  top: 241px;
}

.history-content .c-timeline_item--1980:after {
  top: 236px;
}

.history-content .c-timeline_item--2000::before {
  top: 50%;
}

.history-content .c-timeline_item--2000:after {
  top: calc(50% - 4px);
}

.history-content .c-timeline_viewmore {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #0055a2;
  text-align: center;
  position: absolute;
  bottom: 84px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
  padding: 15px 10px;
  width: 300px;
  border-radius: 50px;
  z-index: 1;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .history-content .c-timeline_viewmore {
    bottom: 40px;
  }
}
.history-content .c-timeline_viewmore-plus {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #0055a2;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.history-content .c-timeline_viewmore-plus::before, .history-content .c-timeline_viewmore-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 10px;
  height: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
}

.history-content .c-timeline_viewmore-plus::before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}

.history-content .c-timeline_viewmore-plus::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

@media (max-width: 767px) {
  .history-content .c-timeline_viewmore {
    color: #ffffff;
    background-color: #0055a2;
  }
  .history-content .c-timeline_viewmore .c-timeline_viewmore-plus {
    background-color: #ffffff;
  }
  .history-content .c-timeline_viewmore .c-timeline_viewmore-plus::before, .history-content .c-timeline_viewmore .c-timeline_viewmore-plus::after {
    background-color: #0055a2;
  }
}
@media (min-width: 768px) {
  .history-content .c-timeline_viewmore:hover {
    color: #ffffff;
    background-color: #0055a2;
  }
  .history-content .c-timeline_viewmore:hover .c-timeline_viewmore-plus {
    background-color: #ffffff;
  }
  .history-content .c-timeline_viewmore:hover .c-timeline_viewmore-plus::before, .history-content .c-timeline_viewmore:hover .c-timeline_viewmore-plus::after {
    background-color: #0055a2;
  }
}
.history-content .c-btn {
  font-size: 1.6rem;
  line-height: 1.5625;
  font-weight: 700;
  position: relative;
  background-color: #ffffff;
  color: #0055a2;
  padding: 7px 40px 7px 20px;
  border-radius: 10px;
  border: 3px solid #0055a2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
  text-align: center;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .history-content .c-btn {
    font-size: 1.6rem;
    padding: 9px 25px;
    margin: 0 auto;
    color: #ffffff;
    background-color: #0055a2;
    border-color: #ffffff;
  }
}
.history-content .c-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 17px;
  width: 15px;
  height: 17px;
  -webkit-mask-image: url(/90th/assets/images/common/ico_arrow01.svg);
  mask-image: url(/90th/assets/images/common/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #0055a2;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .history-content .c-btn:after {
    right: 12px;
    width: 12px;
    height: 13px;
    background-color: #ffffff;
  }
}
.history-content .c-btn:hover {
  background-color: #0055a2;
  color: #ffffff;
}

.history-content .c-btn:hover:after {
  background-color: #ffffff;
}

.history-content_item {
  border-radius: 40px;
  padding: 50px 53px 48px;
  -webkit-box-shadow: 0 0 10px 0 rgba(14, 65, 107, 0.2);
  box-shadow: 0 0 10px 0 rgba(14, 65, 107, 0.2);
  position: relative;
  z-index: 1;
  background-color: #ffffff;
}

@media (max-width: 767px) {
  .history-content_item {
    padding: 45px 30px;
  }
  .history-content_item .c-year {
    font-size: 2.6rem;
    line-height: 1.7307692308;
  }
  .history-content_item .c-year span {
    font-size: 4rem;
    line-height: 2.175;
  }
}
.history-content_item .c-year {
  margin-bottom: 50px;
}

.history-content_item .c-accordion_content > .c-text {
  margin: 0 50px;
}

@media (max-width: 767px) {
  .history-content_item .c-accordion_content > .c-text {
    margin: 0 15px;
  }
}
.history-content_item .c-img_caption {
  text-align: center;
  line-height: 1.4285714286;
  margin-top: 5px;
}

.history-content_item .c-img_caption2 {
  text-align: left;
  line-height: 1.4285714286;
  /*margin-top: 5px;*/
}

.history-content .c-accordion + .c-accordion {
  margin-top: 50px;
}

.history-content .c-accordion_btn {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #0055a2;
  text-align: center;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  padding-right: 40px;
  margin: 30px 0 0;
  text-transform: uppercase;
  text-align: right;
}

@media (max-width: 767px) {
  .history-content .c-accordion_btn {
    margin-top: 57px;
  }
}
.history-content .c-accordion_btn:hover {
  opacity: 0.8;
}

.history-content .c-accordion_btn-plus {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #0055a2;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.history-content .c-accordion_btn-plus::before, .history-content .c-accordion_btn-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 10px;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.history-content .c-accordion_btn-plus::before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}

.history-content .c-accordion_btn-plus::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.history-content .c-accordion_btn.is-active .c-accordion_btn-plus::after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}

.history-content .c-accordion_content {
  max-height: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}

.history-content .c-accordion_content > *:first-child {
  margin-top: 0;
}

.history-content .c-accordion_content > *:last-child {
  margin-bottom: 0;
}

.history-content .c-accordion_content.is-active {
  padding-top: 47px;
  max-height: 10000px;
}

@media (min-width: 768px) {
  .history-content .c-accordion_content.is-active {
    padding-bottom: 52px;
  }
}
@media (max-width: 767px) {
  .history-content .c-accordion_content {
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.history-content .c-media-box {
  padding: 50px;
  background-color: #e9edf2;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 30px;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 85, 162, 0.2);
  box-shadow: 0px 2px 5px rgba(0, 85, 162, 0.2);
  margin-bottom: 50px;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .history-content .c-media-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    margin: 40px -15px;
  }
}
@media (min-width: 768px) {
  .history-content .c-media-box_content {
    padding-top: 45px;
  }
}
.history-content .c-media-box_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .history-content .c-media-box_img {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.history-content .c-media-box_img .c-img {
  margin-top: 0;
}

.history-content .c-media-box_img-link .c-btn {
  margin-top: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.history-content .c-media-box_img-caption {
  font-size: 1.4rem;
  line-height: 2.1428571429;
  display: block;
}

.history-content .c-media-box--2 {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .history-content .c-media-box--2 .c-media-box_content {
    padding-top: 70px;
  }
}
.history-content .c-img_caption2 {
  font-size: 1.4rem;
  /*line-height: 2.1428571429;*/
   text-align: left;
   padding-left: 16px;
   display: block;
}

@media (max-width: 767px) {
   .history-content .c-img_caption2 {
  font-size: 1.4rem;
  /*line-height: 2.1428571429;*/
   text-align: left;
   padding-left: 6px;
   display: block;
}
}

@media (max-width: 767px) {
  .history-content .c-img_caption2 {
    /*margin-top: 5px;*/
  }
}
.history-content .c-img--shadow img {
  -webkit-box-shadow: 0px 2px 5px rgba(32, 80, 125, 0.6);
  box-shadow: 0px 2px 5px rgba(32, 80, 125, 0.6);
}



/*# sourceMappingURL=style.css.map */
