@charset "UTF-8";
@keyframes fade-effect {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: scale(1) !important;
  }
}
@keyframes hover {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.align-left {
  text-align: left;
}

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

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

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

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

.flex-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

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

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

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

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

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

.fadeInRight.is-anim {
  opacity: 1;
  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;
}

.text-black333 {
  color: #333;
}

.text-white {
  color: #FFFFFF;
}

.text-blue {
  color: #187FBE;
}

.text-orange {
  color: #ED9100;
}

.text-green {
  color: #00B500;
}

.text-red {
  color: #E2465A;
}

.text-pink {
  color: #FF2BB5;
}

.text-yellow {
  color: #FFF7B2;
}

.cursor-auto {
  cursor: auto;
}

.cursor-pointer {
  cursor: pointer;
}

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

.overflow-hidden {
  overflow: hidden;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.inline {
  display: inline;
}

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

.block {
  display: block;
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

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

.justify-center {
  justify-content: center;
}

.shrink {
  flex-shrink: 1;
}

.grow {
  flex-grow: 1;
}

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

.underline {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-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;
  appearance: revert;
}

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

/* reset default text opacity of input placeholder */
::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;
  box-sizing: border-box;
}

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

html {
  font-size: 62.5%;
}

@media screen and (max-width: 940px) {
  html {
    font-size: 1.0638297872vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
}
body {
  min-height: 100vh;
  color: #231815;
  font-family: "Zen Maru Gothic", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  overflow-wrap: break-word;
  overflow-x: hidden;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 2.4rem;
    line-height: 1.5833333333;
  }
  body.is-open {
    overflow: hidden;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

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;
  transition-duration: 0s;
}

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

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

a:hover {
  text-decoration: none;
}

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

@media screen and (min-width: 768px) {
  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: 600;
  margin: 0;
}

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

figure img {
  width: 100%;
}

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

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

* {
  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%;
  object-fit: cover;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}

.zen-maru-gothic-black {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 900;
  font-style: normal;
}

.js-fade.fadeIn, .js-fade.bound_title, .js-fade.bound_item {
  opacity: 0;
  animation: none;
}

.js-fade.is-show.delay01.bound_item, .js-fade.is-show.delay01.bound_title {
  animation-delay: 1s;
}

.js-fade.is-show.bound_item {
  animation: scrollEffect 0.4s ease-in-out forwards;
}

.js-fade.is-show.bound_title {
  animation: bound_title 0.8s forwards 0.4s;
}

.js-fade.is-show.fadeIn {
  animation: fadeIn 0.4s forwards 0.4s;
}

@keyframes scrollEffect {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bound_title {
  0% {
    opacity: 0;
    transform: matrix(0, 0, 0, 0, 0, 0);
  }
  3.34% {
    opacity: 1;
    transform: matrix(0.32, 0, 0, 0.21, 0, 0);
  }
  4% {
    opacity: 1;
    transform: matrix(0.411, 0, 0, 0.29, 0, 0);
  }
  6.59% {
    opacity: 1;
    transform: matrix(0.798, 0, 0, 0.688, 0, 0);
  }
  7.91% {
    opacity: 1;
    transform: matrix(0.987, 0, 0, 0.91, 0, 0);
  }
  9.93% {
    opacity: 1;
    transform: matrix(1.122, 0, 0, 1.109, 0, 0);
  }
  11.91% {
    opacity: 1;
    transform: matrix(1.26, 0, 0, 1.209, 0, 0);
  }
  13.18% {
    opacity: 1;
    transform: matrix(1.28, 0, 0, 1.278, 0, 0);
  }
  15.82% {
    opacity: 1;
    transform: matrix(1.27, 0, 0, 1.27, 0, 0);
  }
  17.02% {
    opacity: 1;
    transform: matrix(1.225, 0, 0, 1.243, 0, 0);
  }
  20.42% {
    opacity: 1;
    transform: matrix(1.156, 0, 0, 1.156, 0, 0);
  }
  20.77% {
    opacity: 1;
    transform: matrix(1.138, 0, 0, 1.135, 0, 0);
  }
  24.61% {
    opacity: 1;
    transform: matrix(0.986, 0, 0, 1.038, 0, 0);
  }
  24.92% {
    opacity: 1;
    transform: matrix(0.977, 0, 0, 1.026, 0, 0);
  }
  28.36% {
    opacity: 1;
    transform: matrix(0.923, 0, 0, 0.931, 0, 0);
  }
  29.53% {
    opacity: 1;
    transform: matrix(0.918, 0, 0, 0.915, 0, 0);
  }
  34.03% {
    opacity: 1;
    transform: matrix(0.941, 0, 0, 0.91, 0, 0);
  }
  35.95% {
    opacity: 1;
    transform: matrix(0.96, 0, 0, 0.926, 0, 0);
  }
  43.14% {
    opacity: 1;
    transform: matrix(1.011, 0, 0, 0.997, 0, 0);
  }
  43.46% {
    opacity: 1;
    transform: matrix(1.012, 0, 0, 1, 0, 0);
  }
  52.15% {
    opacity: 1;
    transform: matrix(1.009, 0, 0, 1.019, 0, 0);
  }
  58.64% {
    opacity: 1;
    transform: matrix(0.999, 0, 0, 1.006, 0, 0);
  }
  70.37% {
    opacity: 1;
    transform: matrix(0.999, 0, 0, 0.996, 0, 0);
  }
  73.82% {
    opacity: 1;
    transform: matrix(1, 0, 0, 0.997, 0, 0);
  }
  83.33%, 100% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  88.59% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1.001, 0, 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.l-header {
  position: absolute;
  min-height: 15.5rem;
  min-height: calc(15.5rem + 5vh);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.l-header_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mask-image: url(../images/common/bg_header.png);
  mask-size: contain;
  mask-position: top center;
  background-color: #8DC7ED;
  mask-repeat: repeat-x;
  z-index: 1;
}

.l-header_container {
  z-index: 2;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.l-header_banner--left {
  width: 21.4rem;
  position: absolute;
  top: 2rem;
  left: 3.1rem;
}

.l-header_banner--right {
  width: 23.9rem;
  position: absolute;
  right: 19%;
  top: 1.7rem;
}

.l-header_logo {
  text-align: center;
  width: 16rem;
  width: 20rem;
  margin: 0 auto;
  padding-top: 1.6rem;
}

.l-header_hamburger {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 20rem;
  height: 18rem;
  z-index: 98;
}

.l-header_hamburger .c-hamburger {
  cursor: pointer;
}

.l-header_hamburger .c-hamburger_txt {
  width: 8.2rem;
  position: absolute;
  top: 40%;
  left: 50%;
  display: flex;
  align-items: center;
  transform: translate(-50%, -50%);
}

.l-header_hamburger .c-hamburger_txt.on img:nth-child(1) {
  opacity: 0;
  height: 0;
  visibility: hidden;
}

.l-header_hamburger .c-hamburger_txt.on img:nth-child(2) {
  opacity: 1;
  height: auto;
  visibility: visible;
}

.l-header_hamburger .c-hamburger_txt img {
  transition: all 0.4s ease;
}

.l-header_hamburger .c-hamburger_txt img:nth-child(2) {
  opacity: 0;
  height: 0;
  visibility: hidden;
}

@media screen and (max-width: 767px) {
  .l-header_hamburger {
    display: block;
  }
}
.l-header_nav {
  position: absolute;
  pointer-events: none;
  right: -100%;
  top: 15.5rem;
  z-index: 99;
  width: 39.1rem;
  min-height: 14rem;
  background-color: #197FC4;
  padding: 2.1rem 2.7rem;
  transition: right 0.3s ease;
  box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.1);
}

.l-header_nav.is-active {
  right: 4.3rem;
  pointer-events: auto;
}

.l-header_nav_list {
  margin-top: 2.3rem;
  margin-bottom: 4.2rem;
  padding-left: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.l-header_nav_list a {
  color: #FFFFFF;
  font-weight: bold;
}

.l-header_nav--title {
  text-align: center;
  margin: 0 auto;
  width: 23.7rem;
}

.l-header_nav--title img {
  width: 100%;
  object-fit: cover;
}

.l-header_nav .btn-social {
  position: absolute;
  top: 3.5rem;
  left: 1.5rem;
  width: 4rem;
}

.l-header_nav .btn-social img {
  width: 100%;
  object-fit: cover;
}

.l-header_nav .btn-line {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 23rem;
  max-width: 100%;
  min-height: 4rem;
  background-color: #8FC31F;
  border-radius: 1rem;
  color: #FFFFFF;
  font-weight: bold;
}

.l-header_nav .deco {
  position: absolute;
  bottom: 7.7rem;
  right: 2.4rem;
  width: 13.1rem;
  pointer-events: none;
  background-image: url("../images/common/deco_menu01.png");
  background-size: contain;
}

.l-header_nav .deco img {
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .l-header_nav {
    position: fixed;
    width: 56.1rem;
    bottom: 14rem;
    top: auto;
    padding: 4rem 3rem;
  }
  .l-header_nav.is-active {
    right: 2rem;
  }
  .l-header_nav_list {
    margin-top: 4.3rem;
    margin-bottom: 5.2rem;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
  }
  .l-header_nav_list a {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 2.8rem;
  }
  .l-header_nav--title {
    text-align: center;
    margin: 0 auto;
    width: 34rem;
  }
  .l-header_nav--title img {
    width: 100%;
    object-fit: cover;
  }
  .l-header_nav .btn-social {
    position: absolute;
    top: 5.5rem;
    left: 2.5rem;
    width: 6.5rem;
  }
  .l-header_nav .btn-line {
    width: 41rem;
    max-width: 100%;
    min-height: 8rem;
    font-size: 4rem;
  }
  .l-header_nav .deco {
    bottom: 19.7rem;
    right: 2rem;
    width: 15.1rem;
  }
}
.l-header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  z-index: 97;
  transition: 0.3s cubic-bezier(0.66, 0, 0.34, 1);
}

.l-header .overlay.show {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .l-header .l-header_bg {
    mask-size: cover;
  }
  .l-header .l-header_banner--right {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    position: absolute;
    min-height: 19rem;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
  }
  .l-header_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mask-image: url(../images/common/bg_header_sp.png);
    mask-size: contain;
    mask-position: top center;
    background-color: #FFFFFF;
    mask-repeat: repeat-x;
    z-index: 1;
  }
  .l-header_bg::after {
    content: "";
    position: absolute;
    top: -0.4rem;
    left: 0;
    width: 100%;
    height: 100%;
    mask-image: url(../images/common/bg_header_sp.png);
    mask-size: contain;
    mask-position: top center;
    background-color: #8DC7ED;
    mask-repeat: repeat-x;
    z-index: 1;
  }
  .l-header_banner--left {
    width: 27rem;
    top: 3rem;
    left: 2.4rem;
  }
  .l-header_banner--left img {
    width: 100%;
    object-fit: cover;
  }
  .l-header_logo {
    text-align: center;
    width: 22rem;
    padding-top: 1.4rem;
    margin-right: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .nav_sp {
    z-index: 999;
    position: fixed;
    bottom: 0;
    bottom: -1.8rem;
    width: calc(100% - 3.2rem);
    left: 50%;
    transform: translateX(-50%);
  }
  .nav_sp ul {
    display: flex;
    justify-content: space-between;
  }
  .nav_sp ul li a {
    position: relative;
    width: 22.4rem;
    height: 11.2rem;
    background-color: #107FBF;
    display: flex;
    border: 1px solid #FFFFFF;
    border-width: 1px 1px 0px 1px;
    border-radius: 0.8rem 0.8rem 0 0;
    justify-content: flex-end;
    padding-top: 1.2rem;
    padding-right: 2.2rem;
  }
  .nav_sp ul li a .ico {
    position: absolute;
    display: block;
  }
  .nav_sp ul li a .ico img {
    width: 100%;
    object-fit: cover;
  }
  .nav_sp ul li a .txt {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: bold;
  }
  .nav_sp ul li:nth-child(1) a .ico {
    width: 6.8rem;
    top: -0.6rem;
    left: 2.2rem;
  }
  .nav_sp ul li:nth-child(2) a {
    width: 24.6rem;
    padding-right: 1.2rem;
  }
  .nav_sp ul li:nth-child(2) a .ico {
    width: 6rem;
    top: -1rem;
    left: 1rem;
  }
  .nav_sp ul li:nth-child(2) a .txt {
    letter-spacing: -0.1em;
  }
  .nav_sp ul li:nth-child(3) a .ico {
    width: 7.4rem;
    left: 0.2rem;
    top: -1.2rem;
  }
}
.l-footer {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
  padding-top: 15rem;
  margin-top: 7.5rem;
  background-color: rgba(94, 183, 232, 0.3);
  background: #cfe9f8;
}

.l-footer .deco_bg {
  position: absolute;
  top: -7.6rem;
  left: 0;
  width: 100%;
  height: 16.8rem;
  mask-image: url(../images/common/mask_sky.png);
  mask-size: contain;
  mask-position: bottom center;
  background-color: #FFFFFF;
  mask-repeat: repeat-x;
  z-index: 1;
  transform: scaleY(-1);
}

.l-footer .l-inner {
  position: relative;
  z-index: 2;
}

.l-footer .deco {
  width: 100%;
}

.l-footer .deco span {
  display: block;
  position: absolute;
  pointer-events: none;
}

.l-footer .deco span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.l-footer .deco span:nth-child(1) {
  bottom: -37.5rem;
  left: 49%;
  width: 151.5rem;
  transform: translateX(-50%);
  z-index: 3;
}

.l-footer .deco span:nth-child(2) {
  right: -5.8rem;
  width: 21rem;
  bottom: 6.6rem;
  z-index: 4;
}

.l-footer .deco span:nth-child(3) {
  left: -7.9rem;
  bottom: 0.5rem;
  z-index: 2;
  width: 39rem;
}

.l-footer .deco span:nth-child(4) {
  bottom: 0;
  left: 50%;
  width: 108.2rem;
  z-index: 4;
  transform: translateX(-50%);
}

.l-footer .deco span:nth-child(5) {
  transform: translateX(-50%);
  left: 50.5%;
  width: 68rem;
  bottom: 11.2rem;
  z-index: 4;
}

.l-footer .deco span:nth-child(6) {
  width: 8.3rem;
  z-index: 4;
  bottom: 11.2rem;
  left: 4.1rem;
}

.l-footer .deco span:nth-child(7) {
  width: 10.8rem;
  z-index: 4;
  bottom: -1.3rem;
  left: -2.6rem;
}

.l-footer .btn-contact {
  max-width: 100%;
  width: 40rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 100px;
  border: 2px solid #187FBE;
  font-size: 2.6rem;
  font-weight: bold;
  color: #187FBE;
  position: relative;
  text-align: center;
  margin: 0 auto;
  z-index: 5;
}

.l-footer .btn-contact::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.7rem;
  transform: translateY(-50%);
  width: 4.5rem;
  height: 4.5rem;
  background-image: url("../images/common/ico_arrow03.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.l-footer .btn-topback {
  width: 22.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  margin: 12rem auto 0;
  z-index: 5;
}

.l-footer_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #000000;
  margin-top: 3rem;
  z-index: 5;
  position: relative;
}

.l-footer_nav li {
  position: relative;
  padding: 0 1.1rem;
}

.l-footer_nav li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 1.2rem;
  background-color: #000000;
  transform: translateY(-50%);
}

.l-footer .c-copyright {
  font-size: 1.3rem;
  line-height: 1.2307692308;
  text-align: center;
  margin-top: 2rem;
  z-index: 5;
  position: relative;
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding-bottom: 13.4rem;
    padding-top: 14rem;
  }
  .l-footer .btn-topback {
    width: 8rem;
    margin: 0 auto;
    z-index: 5;
  }
  .l-footer .deco_bg {
    mask-size: 150% auto;
  }
  .l-footer_nav {
    margin-top: 2.2rem;
    flex-wrap: wrap;
    row-gap: 0.6rem;
    font-size: 2.4rem;
  }
  .l-footer_nav li {
    position: relative;
    padding: 0 2.4rem;
  }
  .l-footer_nav li:not(:last-child)::after {
    height: 2.4rem;
  }
  .l-footer_nav li:first-child {
    padding-left: 0;
  }
  .l-footer .c-copyright {
    font-size: 2rem;
    line-height: 1.5;
    margin-top: 1.6rem;
  }
}
#l-wrapper {
  overflow: hidden;
  position: relative;
  padding-top: 9rem;
}

#l-wrapper.page-home {
  padding-top: 0;
}

.l-inner {
  width: 94rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media screen and (max-width: 767px) {
  .l-inner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.page-content {
  padding-top: 7vw;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .page-content {
    padding-top: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .page-content {
    padding-top: 7rem;
  }
}
.modules {
  padding: 3rem 0;
}

.module {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 5rem;
}

.c-page-title_ttl {
  width: 69.4rem;
  margin: 0 auto;
  position: relative;
}

.c-page-title_ttl--small {
  position: relative;
  width: max-content;
  margin: 0 auto;
  padding: 1.6rem 11.3rem;
}

.c-page-title_ttl--small::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100vw;
  background-color: #FFF7B2;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.c-page-title_ttl--small .text {
  font-size: 3.2rem;
  line-height: 1.1875;
  color: #ED9100;
  text-align: center;
  font-weight: 900;
}

.c-page-title_ttl--small .deco {
  position: absolute;
  pointer-events: none;
}

.c-page-title_ttl--small .deco-left {
  width: 10.1rem;
  left: 0.3rem;
  bottom: 0;
}

.c-page-title_ttl--small .deco-right {
  width: 12.1rem;
  right: -0.6rem;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .c-page-title {
    margin-top: -0.5rem;
  }
  .c-page-title_ttl {
    width: 65.4rem;
  }
  .c-page-title_ttl--small {
    margin: -1rem auto 0;
    padding: 1.6rem 11.3rem;
    width: 100%;
  }
  .c-page-title_ttl--small .text {
    font-size: 3rem;
    line-height: 1.1666666667;
    padding-top: 1rem;
  }
  .c-page-title_ttl--small .deco-left {
    left: -1.5rem;
    bottom: 0.8rem;
  }
  .c-page-title_ttl--small .deco-right {
    right: -2rem;
    bottom: 0.2rem;
  }
}
.c-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: 1px solid #187FBE;
  color: #187FBE;
  text-align: center;
  font-weight: 700;
  padding: 1rem 3.6rem 1rem 1.5rem;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  border-radius: 1rem;
  gap: 1.5rem;
  position: relative;
  background: #FFFFFF;
}

.c-btn .ico {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.2rem;
  width: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.c-btn .ico svg path {
  fill: #187FBE;
}

.c-btn--green {
  border-color: #00B500;
  color: #00B500;
  background: #e7f7ed;
}

.c-btn--green .ico svg path {
  fill: #00B500;
}

.c-btn--orange {
  border-color: #ED9100;
  color: #ED9100;
  background: #FFFBC7;
}

.c-btn--orange .ico svg path {
  fill: #ED9100;
}

@media screen and (max-width: 767px) {
  .c-btn {
    padding: 1.6rem 4.4rem 1.6rem 2rem;
    font-size: 2.4rem;
    line-height: 1.3333333333;
    border-radius: 1.6rem;
    gap: 2rem;
  }
  .c-btn .ico {
    right: 2rem;
    width: 2.2rem;
  }
}
.c-column-grid {
  display: grid;
  gap: 20px;
}

.c-column-04 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media screen and (min-width: 768px) and (max-width: 1440px) {
  .c-column-04 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 940px) {
  .c-column-04 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .c-column-04 {
    grid-template-columns: 1fr 1fr;
  }
}
.c-column-03 {
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 940px) {
  .c-column-03 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .c-column-03 {
    grid-template-columns: 1fr 1fr;
  }
}
.c-column-02 {
  grid-template-columns: 1fr 1fr;
}

.c-heading-type1 {
  background: #187FBE;
  text-align: center;
  color: #fff;
  font-size: 3rem;
  line-height: 1.3333333333;
  font-weight: 700;
  padding: 1.7rem 7rem;
  position: relative;
  border-radius: 7rem;
}

@media screen and (min-width: 768px) {
  .c-heading-type1 {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-type1.js-accordion-btn::after {
    position: absolute;
    content: "";
    z-index: 1;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    border-top: 1.8rem solid #fff;
    border-left: 1.8rem solid transparent;
    border-right: 1.8rem solid transparent;
    transition: 0.3s cubic-bezier(0.66, 0, 0.34, 1);
  }
  .c-heading-type1.js-accordion-btn.is-active::after {
    transform: translateY(-50%) rotate(180deg);
  }
}
.c-heading-type2 {
  color: #0071B6;
  font-size: 2.4rem;
  line-height: 1.4166666667;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .c-heading-type2 {
    font-size: 3rem;
    line-height: 1.4666666667;
  }
}
.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  perspective: 1px;
  z-index: 10002;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
  opacity: 1;
  visibility: visible;
  transition: 0s;
}

.loading.is-hidden {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s cubic-bezier(0.66, 0, 0.34, 1);
  transition-delay: 1s;
}

.loading_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loading_logo {
  width: 50rem;
}

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

.loading .dot-spinner__dot {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

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

.loading .dot-spinner__dot:nth-child(2) {
  transform: rotate(45deg);
}

.loading .dot-spinner__dot:nth-child(2)::before {
  animation-delay: calc(var(--UIB_SPEED) * -0.875);
}

.loading .dot-spinner__dot:nth-child(3) {
  transform: rotate(90deg);
}

.loading .dot-spinner__dot:nth-child(3)::before {
  animation-delay: calc(var(--UIB_SPEED) * -0.75);
}

.loading .dot-spinner__dot:nth-child(4) {
  transform: rotate(135deg);
}

.loading .dot-spinner__dot:nth-child(4)::before {
  animation-delay: calc(var(--UIB_SPEED) * -0.625);
}

.loading .dot-spinner__dot:nth-child(5) {
  transform: rotate(180deg);
}

.loading .dot-spinner__dot:nth-child(5)::before {
  animation-delay: calc(var(--UIB_SPEED) * -0.5);
}

.loading .dot-spinner__dot:nth-child(6) {
  transform: rotate(225deg);
}

.loading .dot-spinner__dot:nth-child(6)::before {
  animation-delay: calc(var(--UIB_SPEED) * -0.375);
}

.loading .dot-spinner__dot:nth-child(7) {
  transform: rotate(270deg);
}

.loading .dot-spinner__dot:nth-child(7)::before {
  animation-delay: calc(var(--UIB_SPEED) * -0.25);
}

.loading .dot-spinner__dot:nth-child(8) {
  transform: rotate(315deg);
}

.loading .dot-spinner__dot:nth-child(8)::before {
  animation-delay: calc(var(--UIB_SPEED) * -0.125);
}

@media screen and (max-width: 767px) {
  .loading_logo {
    width: 66.6666666667vw;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeInSpinner {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.c-leading {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .c-leading {
    font-size: 2.4rem;
  }
}
.c-copy {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .c-copy {
    font-size: 2.2rem;
  }
}
.c-list-dot {
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 500;
}

.c-list-dot li {
  padding-left: 1em;
  position: relative;
}

.c-list-dot li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.c-list-dot li + li {
  margin-top: 0.5rem;
}

@media screen and (max-width: 767px) {
  .c-list-dot {
    font-size: 2rem;
  }
  .c-list-dot li + li {
    margin-top: 1rem;
  }
}
.box-section {
  padding: 7rem 0;
}

.box-section_content {
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .box-section_content {
    display: block !important;
  }
}
.box-section_content .c-leading {
  padding: 0 1rem;
}

.box-section.is-last {
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .box-section {
    padding: 5rem 0 1rem;
  }
  .box-section_content {
    margin-bottom: 4rem;
  }
}
.t-mainvisual {
  position: relative;
}

.t-mainvisual_slider {
  position: relative;
  z-index: 1;
  padding-bottom: 6rem;
}

.t-mainvisual_slider .slick-arrow {
  position: absolute;
  top: 50%;
  width: 4rem;
  height: 4rem;
  z-index: 2;
  background: no-repeat center center/cover;
  text-indent: -9999rem;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.66, 0, 0.34, 1);
  margin-top: -5rem;
}

.t-mainvisual_slider .slick-arrow.slick-prev {
  left: 2rem;
  background-image: url("../images/common/ico_arrow_slider_01.png");
}

.t-mainvisual_slider .slick-arrow.slick-next {
  background-image: url("../images/common/ico_arrow_slider_02.png");
  right: 2rem;
}

@media (hover: hover) {
  .t-mainvisual_slider .slick-arrow:hover {
    transform: scale(1.05);
  }
}
.t-mainvisual_slider .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  height: 6rem;
}

.t-mainvisual_slider .slick-dots li {
  width: 1.6rem;
  height: 1.6rem;
}

.t-mainvisual_slider .slick-dots li button {
  width: 100%;
  height: 100%;
  border: none;
  background: #06AFD3;
  opacity: 0.5;
  border-radius: 50%;
  text-indent: -9999rem;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.66, 0, 0.34, 1);
}

.t-mainvisual_slider .slick-dots li.slick-active button {
  opacity: 1;
}

.t-mainvisual_item {
  height: calc(100svh - 6rem);
  overflow: hidden;
}

.t-mainvisual_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-mainvisual_logo {
  position: absolute;
  z-index: 2;
  bottom: 10rem;
  right: 10%;
  width: 70rem;
  max-width: 50vw;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .t-mainvisual_slider {
    padding-bottom: 0;
  }
  .t-mainvisual_slider .slick-arrow {
    width: 6.4rem;
    height: 6.4rem;
    margin-top: -4rem;
  }
  .t-mainvisual_slider .slick-arrow.slick-prev {
    left: 3.4rem;
  }
  .t-mainvisual_slider .slick-arrow.slick-next {
    right: 3.4rem;
  }
  .t-mainvisual_slider .slick-dots {
    bottom: 4rem;
  }
  .t-mainvisual_slider .slick-dots li {
    width: 2.1rem;
    height: 2.1rem;
  }
  .t-mainvisual_slider .slick-dots li button {
    background: rgba(255, 255, 255, 0.4);
  }
  .t-mainvisual_slider .slick-dots li.slick-active button {
    background: #fff;
  }
  .t-mainvisual_logo {
    bottom: 10rem;
    right: 5%;
    width: 68rem;
    max-width: 90vw;
  }
}
.t-news {
  padding: 6rem 0;
}

.t-news_headline {
  position: relative;
  font-size: 2.6rem;
  line-height: 1.1538461538;
  padding-bottom: 1rem;
  padding-left: 7rem;
  border-bottom: 1px solid #187FBE;
  color: #187FBE;
  font-weight: 600;
}

.t-news_headline .ico {
  width: 10.6rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.t-news_content {
  position: relative;
}

.t-news_items {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #187FBE;
}

.t-news_item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

.t-news_meta {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2rem;
}

.t-news_date {
  width: 12rem;
  flex-shrink: 0;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}

.t-news_cat {
  flex-grow: 1;
}

.t-news_cat li {
  min-width: 12rem;
  border: 1px solid #187FBE;
  color: #187FBE;
  background: #e4f1f9;
  text-align: center;
  padding: 0.6rem 1.5rem;
  font-size: 1.6rem;
  line-height: 1.5;
  display: inline-flex;
  justify-content: center;
}

.t-news_text {
  font-size: 1.6rem;
  line-height: 1.5;
}

@media (hover: hover) {
  .t-news_text a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}
.t-news_btn {
  position: absolute;
  bottom: 4rem;
  right: 0;
  width: 15rem;
}

.t-news_btn .c-btn {
  padding: 0.4rem 3rem 0.4rem 1.2rem;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .t-news {
    padding: 6rem 4rem;
  }
  .t-news_headline {
    font-size: 5rem;
    line-height: 1.2;
    padding-bottom: 1.6rem;
    padding-left: 0;
    text-align: center;
  }
  .t-news_headline .ico {
    width: 16rem;
    left: 1rem;
  }
  .t-news_content {
    padding-bottom: 2rem;
  }
  .t-news_items {
    margin-top: 6rem;
    gap: 4rem;
  }
  .t-news_item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
  }
  .t-news_date {
    width: max-content;
    font-size: 2.6rem;
  }
  .t-news_cat li {
    min-width: 20rem;
    padding: 0.6rem 2rem;
    font-size: 2.4rem;
  }
  .t-news_text {
    font-size: 2.4rem;
  }
  .t-news_btn {
    position: static;
    width: 43rem;
    margin: 4rem auto 0;
  }
  .t-news_btn .c-btn {
    padding: 1.6rem 5rem 1.6rem 2rem;
    font-size: 3.2rem;
  }
  .t-news_btn .c-btn .ico {
    right: 3rem;
  }
}
.t-media {
  padding: 6rem 0;
}

.t-media_row {
  display: flex;
  gap: 4rem;
}

.t-media_headline {
  width: 26rem;
  max-width: 100%;
  margin: 0 auto 5rem;
}

@media screen and (max-width: 767px) {
  .t-media {
    padding: 6rem 0;
  }
  .t-media_row {
    flex-direction: column;
    gap: 8rem;
  }
  .t-media_headline {
    width: 40rem;
  }
}
.t-movie {
  flex-grow: 1;
}

.t-movie_heading {
  margin-bottom: 1.5rem;
  color: #187FBE;
  font-size: 1.8rem;
  line-height: 1.6666666667;
}

.t-movie_iframe {
  aspect-ratio: 16/9;
}

.t-movie_iframe iframe {
  width: 100%;
  height: 100%;
}

.t-movie_items {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media screen and (max-width: 767px) {
  .t-movie {
    width: 67rem;
    max-width: 100%;
    margin: 0 auto;
  }
  .t-movie_heading {
    margin-bottom: 2rem;
    font-size: 2.8rem;
  }
  .t-movie_items {
    gap: 6rem;
  }
}
.t-facebook {
  width: 33.4rem;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .t-facebook {
    width: 66rem;
  }
  .t-facebook_bnr {
    margin-bottom: 3rem;
  }
  .t-facebook_newsfeed {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .t-facebook_newsfeed_inner {
    width: 100%;
    text-align: center;
  }
}
.t-line {
  padding: 6rem 0;
  position: relative;
  z-index: 3;
}

.t-line_inner {
  display: block;
}

.t-line_box {
  background: #00B500;
  padding: 3rem 4rem;
  display: flex;
  gap: 3rem;
  border-radius: 1rem;
}

.t-line_content {
  flex-grow: 1;
}

.t-line_heading {
  width: 60rem;
  max-width: 100%;
  margin-bottom: 2rem;
}

.t-line_copy {
  width: 62rem;
  max-width: 100%;
}

.t-line_qr {
  width: 18rem;
  flex-shrink: 0;
}

.t-line_children {
  display: none;
}

@media screen and (max-width: 767px) {
  .t-line {
    padding: 6rem 0;
  }
  .t-line_box {
    padding: 4rem;
    display: block;
    position: relative;
  }
  .t-line_content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .t-line_heading {
    max-width: 94%;
    margin-bottom: 4rem;
  }
  .t-line_copy {
    width: 40rem;
    margin: 0 auto;
  }
  .t-line_qr {
    position: relative;
    z-index: 2;
    width: 28rem;
    margin: 4rem auto 0;
    display: none;
  }
  .t-line_children {
    display: block;
  }
  .t-line_children figure {
    position: absolute;
    width: 13rem;
    bottom: 2rem;
  }
  .t-line_children figure:nth-child(1) {
    left: 0.5rem;
  }
  .t-line_children figure:nth-child(2) {
    right: 0.5rem;
  }
}
.t-about {
  position: relative;
  padding-bottom: 2.5rem;
  padding-top: 14rem;
  margin-bottom: -21rem;
  background-color: rgba(94, 183, 232, 0.3);
  background: #cfe9f8;
  text-align: center;
  z-index: 2;
}

.t-about .deco_bg {
  position: absolute;
  top: -7.6rem;
  left: 0;
  width: 100%;
  height: 16.8rem;
  mask-image: url("../images/common/mask_sky.png");
  mask-size: contain;
  mask-position: bottom center;
  background-color: #FFFFFF;
  mask-repeat: repeat-x;
  z-index: 1;
  transform: scaleY(-1);
}

.t-about .l-inner {
  position: relative;
  z-index: 2;
}

.t-about_ttl {
  width: 56rem;
  max-width: 80%;
  margin: 0 auto 3rem;
}

.t-about_headline {
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 900;
  color: #035097;
  margin-bottom: 2rem;
}

.t-about_copy {
  font-size: 1.6rem;
  line-height: 1.75;
}

.t-about_btn {
  max-width: 40rem;
  margin: 3rem auto 0;
}

@media screen and (max-width: 767px) {
  .t-about {
    padding-bottom: 0;
    padding-top: 4rem;
    margin-bottom: 8rem;
    background: #fff;
  }
  .t-about .deco_bg {
    display: none;
  }
  .t-about_headline {
    margin-bottom: 2.4rem;
  }
  .t-about_copy {
    font-size: 2.4rem;
  }
  .t-about_btn {
    max-width: 43rem;
    margin: 3rem auto 0;
  }
  .t-about_btn .c-btn {
    font-size: 3.2rem;
  }
}
.page-home .l-main {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .page-friends .c-page-title_ttl--small .deco-left {
    left: 2.4rem;
  }
  .page-friends .c-page-title_ttl--small .deco-right {
    right: 2.4rem;
  }
}
.c-list-friends {
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.c-list-friends_item {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.c-list-friends_item.reverse {
  flex-direction: row-reverse;
}

.c-list-friends_img {
  width: 15.8rem;
  flex-shrink: 0;
}

.c-list-friends_body {
  width: 52rem;
}

.c-list-friends_name {
  font-size: 2.4rem;
  font-weight: bold;
  color: #035097;
  margin-bottom: 0.5rem;
}

.c-list-friends_text {
  color: #3E3A39;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6470588235;
}

@media screen and (max-width: 767px) {
  .c-list-friends {
    gap: 8rem;
  }
  .c-list-friends_img {
    width: 18rem;
  }
  .c-list-friends_body {
    width: 43rem;
  }
  .c-list-friends_name {
    font-size: 3.6rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  .c-list-friends_text {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.page-illustration .c-page-title_ttl {
  max-width: 40rem;
}

.page-illustration .c-page-title_ttl--small {
  margin-top: 0.5rem;
  padding: 1.6rem 16rem;
}

.page-illustration .c-page-title_ttl--small .deco-left {
  width: 12rem;
}

.page-illustration .c-page-title_ttl--small .deco-right {
  width: 12rem;
}

@media screen and (max-width: 767px) {
  .page-illustration .c-page-title_ttl {
    max-width: 46rem;
    margin-bottom: 3rem;
  }
  .page-illustration .c-page-title_ttl--small .text {
    font-size: 3rem;
  }
  .page-illustration .c-page-title_ttl--small {
    padding: 2rem 12rem;
  }
  .page-illustration .c-page-title_ttl--small .deco-left {
    left: 3rem;
    bottom: 2rem;
  }
  .page-illustration .c-page-title_ttl--small .deco-right {
    right: 3rem;
    bottom: 2rem;
  }
}
.il-coloring_items {
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0 2px;
}

.il-coloring_item {
  width: calc(50% - 1px);
  padding: 5rem 0;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .il-coloring_item:nth-child(2n+1) {
    animation-delay: 0s !important;
  }
  .il-coloring_item:nth-child(2n+2) {
    animation-delay: 0.2s !important;
  }
}
@media screen and (min-width: 768px) {
  .il-coloring_item:nth-child(n+3) {
    border-top: 2px dotted #187FBE;
  }
}
.il-coloring_thumb {
  width: 25rem;
  flex-shrink: 0;
}

.il-coloring_desc {
  flex-grow: 1;
  padding-left: 2rem;
}

.il-coloring_ttl {
  font-size: 2.6rem;
  line-height: 1.3846153846;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #187FBE;
}

.il-coloring_ttl .fz-sm {
  font-size: 74%;
  display: block;
}

.il-coloring_btn {
  padding-right: 3rem;
}

@media screen and (min-width: 768px) {
  .il-coloring_btn .c-btn {
    font-size: 1.6rem;
  }
  .il-coloring_btn .c-btn .ico {
    width: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .il-coloring_items {
    padding-top: 5rem;
    gap: 2rem;
  }
  .il-coloring_item {
    width: 100%;
    padding: 0;
  }
  .il-coloring_item:nth-child(2n+1):not(:first-child) {
    padding-top: 5rem;
    margin-top: 3rem;
    border-top: 2px dotted #187FBE;
  }
  .il-coloring_thumb {
    width: 30rem;
  }
  .il-coloring_desc {
    padding-left: 3rem;
  }
  .il-coloring_ttl {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
  .il-coloring_btn {
    padding-right: 0;
    max-width: 25rem;
  }
}
.il-papercraft {
  margin-top: 5rem;
}

.il-papercraft_row {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.il-papercraft_thumb {
  width: 40rem;
  flex-shrink: 0;
}

.il-papercraft_desc {
  flex-grow: 1;
}

.il-papercraft_desc .bus-park {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.il-papercraft_desc .bus-park_thumb {
  width: 25rem;
  border: 1px solid #000;
  flex-shrink: 0;
}

.il-papercraft_desc .bus-park_desc {
  flex-grow: 1;
}

.il-papercraft_desc .bus-park_ttl {
  color: #187FBE;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .il-papercraft_desc .bus-park_btn .c-btn {
    padding-right: 3rem;
  }
  .il-papercraft_desc .bus-park_btn .c-btn .ico svg {
    width: 1.2rem;
  }
}
.il-papercraft_desc .bus-park_copy {
  margin-top: 2rem;
}

.il-papercraft_desc .bus-park_copy li {
  text-indent: -1.2em;
  padding-left: 1.2em;
}

.il-papercraft_desc .bus-park_copy li:nth-child(n+2) {
  margin-top: 0.5rem;
}

.il-papercraft_warning {
  margin-top: 5rem;
  border-top: 2px dotted #ED1A61;
  border-bottom: 2px dotted #ED1A61;
  display: flex;
  align-items: center;
  padding: 3rem 4rem;
  gap: 3rem;
}

.il-papercraft_warning-icon {
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: 900;
  border-radius: 50%;
  background: #ED1A61;
  text-align: center;
  width: 14rem;
  height: 14rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.il-papercraft_warning-text {
  font-size: 2.2rem;
  line-height: 1.3636363636;
  color: #ED1A61;
  font-weight: 500;
}

.il-papercraft_note {
  padding: 3rem 4rem 0;
}

.il-papercraft_note p a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #187FBE;
}

.il-papercraft_note .papercraft-adobe {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.il-papercraft_note .papercraft-adobe .img {
  width: 20rem;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .il-papercraft {
    margin-top: 5rem;
  }
  .il-papercraft_row {
    flex-direction: column;
    gap: 3.6rem;
  }
  .il-papercraft_thumb {
    width: 50rem;
  }
  .il-papercraft_desc .bus-park {
    flex-direction: column;
    gap: 3rem;
  }
  .il-papercraft_desc .bus-park_thumb {
    width: 50rem;
  }
  .il-papercraft_desc .bus-park_ttl {
    font-size: 3.8rem;
    margin-bottom: 2rem;
  }
  .il-papercraft_desc .bus-park_btn {
    max-width: 26rem;
    margin: 0 auto;
  }
  .il-papercraft_desc .bus-park_copy {
    margin-top: 2rem;
  }
  .il-papercraft_warning {
    border-top-width: 1px;
    border-bottom-width: 1px;
    padding: 3rem 0;
  }
  .il-papercraft_warning-icon {
    font-size: 2.4rem;
  }
  .il-papercraft_warning-text {
    font-size: 2.4rem;
  }
  .il-papercraft_note {
    padding: 4rem 0 0;
  }
  .il-papercraft_note .papercraft-adobe .img {
    width: 24rem;
  }
}
.illustration-bnr {
  margin-top: 5rem;
  padding: 0 10%;
}

.illustration-bnr ul {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.illustration-bnr ul a {
  display: block;
}

.illustration-bnr ul img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .illustration-bnr {
    padding: 0;
  }
}
.illustration-pdf {
  margin-top: 5rem;
  padding: 0 20%;
}

.illustration-pdf a {
  display: block;
}

@media screen and (max-width: 767px) {
  .illustration-pdf {
    padding: 0 10%;
  }
}
.c-download-guide {
  margin-top: 10rem;
}

.c-download-guide_ttl {
  text-align: center;
  position: relative;
  padding-top: 3rem;
  margin-bottom: 4rem;
}

.c-download-guide_ttl::before {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 23rem;
  height: 4.5rem;
  background: url("../images/common/download_guide_deco.png") no-repeat top center/cover;
}

.c-download-guide_ttl span {
  position: relative;
  z-index: 2;
  border: 3px solid #187FBE;
  border-radius: 1.5rem;
  padding: 1.5rem 3rem;
  min-width: 54rem;
  display: inline-block;
  font-size: 2.6rem;
  line-height: 1.2307692308;
  font-weight: 700;
  color: #187FBE;
  background: #fff;
}

.c-download-guide_step {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: 500;
}

.c-download-guide_step li {
  padding-left: 1em;
  text-indent: -1em;
}

.c-download-guide_step li + li {
  margin-top: 0.5rem;
}

.c-download-guide_content {
  background: #eff8fd;
  padding: 3rem;
  margin-top: 3.5rem;
}

.c-download-guide_sttl {
  color: #187FBE;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.5454545455;
  margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
  .c-download-guide {
    margin-top: 8rem;
  }
  .c-download-guide_ttl {
    padding-top: 4rem;
  }
  .c-download-guide_ttl::before {
    width: 30rem;
    height: 5.8rem;
  }
  .c-download-guide_ttl span {
    border-width: 2px;
    border-radius: 2rem;
    padding: 1.6rem 3rem;
    font-size: 3.4rem;
    width: 100%;
  }
  .c-download-guide_step {
    font-size: 2.2rem;
    padding-left: 2rem;
  }
  .c-download-guide_step li + li {
    margin-top: 1rem;
  }
  .c-download-guide_content {
    padding: 3rem;
    margin-top: 3.5rem;
  }
  .c-download-guide_sttl {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
  .c-download-guide_notes {
    font-size: 2rem;
  }
  .c-download-guide_notes li + li {
    margin-top: 1rem;
  }
}
.s-illustration_headline {
  text-align: center;
  padding-bottom: 6rem;
}

.s-illustration_headline-txt {
  font-size: 3.5rem;
  line-height: 1.1428571429;
  font-weight: 900;
  color: #ED9100;
}

.s-illustration_headline-bnr {
  max-width: 90%;
  margin: 2rem auto 0;
}

.s-illustration_items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5rem 2rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .s-illustration_item:nth-child(3n+1) {
    animation-delay: 0s !important;
  }
  .s-illustration_item:nth-child(3n+2) {
    animation-delay: 0.2s !important;
  }
  .s-illustration_item:nth-child(3n+3) {
    animation-delay: 0.4s !important;
  }
}
.s-illustration_thumb {
  border: 1px solid #187FBE;
  aspect-ratio: 248/186;
  margin-bottom: 1.5rem;
}

.s-illustration_thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.s-illustration_ttl {
  color: #231815;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.4;
}

.s-illustration_link {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.s-illustration_btn {
  border: 1px solid #595757;
  color: #595757;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 0.5rem 1rem;
  display: inline-block;
  min-width: 20rem;
  max-width: 100%;
  border-radius: 0.8rem;
}

.s-illustration_btn.-gray {
  background: #dedcdd;
}

.s-illustration_btn.-blue {
  border-color: #187FBE;
  color: #187FBE;
  background: #cce4f0;
}

@media screen and (max-width: 940px) {
  .s-illustration_items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 60rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 940px) and (min-width: 768px) and (max-width: 940px) {
  .s-illustration_item:nth-child(2n+1) {
    animation-delay: 0s !important;
  }
  .s-illustration_item:nth-child(2n+2) {
    animation-delay: 0.2s !important;
  }
}
@media screen and (max-width: 940px) {
  .s-illustration_thumb {
    max-width: 28rem;
    margin: 0 auto 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .s-illustration_headline-txt {
    font-size: 3.2rem;
    line-height: 1.125;
  }
  .s-illustration_headline-bnr {
    max-width: 100%;
    margin: 3.6rem auto 0;
  }
  .s-illustration_items {
    max-width: 67rem;
    gap: 8rem 3rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .s-illustration_item:nth-child(2n+1) {
    animation-delay: 0s !important;
  }
  .s-illustration_item:nth-child(2n+2) {
    animation-delay: 0.2s !important;
  }
}
@media screen and (max-width: 767px) {
  .s-illustration_thumb {
    max-width: 32rem;
    margin: 0 auto 3rem;
  }
  .s-illustration_ttl {
    font-size: 2.6rem;
  }
  .s-illustration_link {
    margin-top: 3rem;
    gap: 2rem;
  }
  .s-illustration_btn {
    font-size: 2.4rem;
    padding: 0.6rem 1.6rem;
    min-width: 25rem;
    border-radius: 1.2rem;
  }
}
.page-access .c-page-title_ttl {
  width: 90rem;
  max-width: 100%;
  position: relative;
  padding: 0 19rem 3rem;
}

.page-access .c-page-title_per {
  position: absolute;
  bottom: -0.5rem;
  left: 3.5rem;
  width: 12rem;
}

.access-map_iframe {
  overflow: hidden;
  aspect-ratio: 900/600;
}

.access-map_iframe iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access-map_info {
  padding: 4rem 0 0;
  font-size: 1.8rem;
  line-height: 1.4444444444;
}

.access-map_info-items {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
}

.access-map_dl {
  margin-top: 3rem;
  text-align: center;
}

.access-map_dl dt {
  border-bottom: 1px solid #231815;
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.access-map_dl dd ul li:nth-child(n+2) {
  margin-top: 0.5rem;
}

@media screen and (max-width: 767px) {
  .page-access .c-page-title {
    padding-top: 1.5rem;
  }
  .page-access .c-page-title_ttl {
    width: 100%;
    padding: 0 17rem 3rem;
  }
  .page-access .c-page-title_per {
    left: 5rem;
    width: 11rem;
  }
  .access-map_iframe {
    aspect-ratio: 4/5;
  }
  .access-map_info {
    padding: 6rem 0 0;
    font-size: 2.4rem;
  }
  .access-map_info-items {
    padding-top: 2rem;
  }
  .access-map_dl {
    margin-top: 3rem;
  }
  .access-map_dl dt {
    font-size: 3rem;
    padding-bottom: 1.6rem;
    margin-bottom: 2rem;
  }
  .access-map_dl dd {
    font-size: 2.8rem;
    text-align: left;
  }
}
.page-caravan .c-page-title {
  text-align: center;
}

.page-caravan .c-page-title_ttl {
  width: 80rem;
}

.page-caravan .c-page-title_text {
  text-align: center;
  color: #ED9100;
  font-size: 3.4rem;
  line-height: 1.2352941176;
  border-bottom: 2px dotted #ED9100;
  display: inline-block;
  padding: 0 10rem 1.5rem;
  font-weight: 900;
}

.page-caravan .btn-contact {
  max-width: 100%;
  width: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 100px;
  border: 2px solid #187FBE;
  font-size: 2.6rem;
  line-height: 1.3846153846;
  font-weight: 700;
  padding: 1rem 6rem;
  color: #187FBE;
  position: relative;
  text-align: center;
  margin: 0 auto;
  z-index: 5;
}

.page-caravan .btn-contact::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.7rem;
  transform: translateY(-50%);
  width: 4.5rem;
  height: 4.5rem;
  background-image: url("../images/common/ico_arrow03.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.page-caravan .caravan-leading {
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.68;
  padding: 0 4rem;
  max-width: 120rem;
  margin: 0 auto;
}

.page-caravan .caravan-leading .hl {
  color: #ED9100;
  font-size: 3.4rem;
  line-height: 1.2352941176;
}

.caravan-intro {
  padding: 5rem 0;
}

.caravan-intro_img {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  margin-left: -5rem;
  margin-right: -5rem;
}

.caravan-intro_child {
  width: 65%;
  margin-right: -5rem;
}

.caravan-intro_desc {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.caravan-course {
  margin-top: 6rem;
  padding: 8rem 0 4rem;
  position: relative;
}

.caravan-course::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150vw;
  height: 100%;
  z-index: 1;
  background: #FFF7B2;
}

.caravan-course_inner {
  position: relative;
  z-index: 2;
}

.caravan-course_headline .img {
  padding: 0 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.caravan-course_headline .img li:nth-child(2) {
  width: 40%;
  flex-shrink: 0;
}

.caravan-course_headline .text {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: 700;
}

.caravan-course_items {
  margin-top: 6rem;
}

.caravan-course_item {
  border-top: 3px dotted #ED9100;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 6rem 0;
  position: relative;
}

.caravan-course_item::before {
  position: absolute;
  content: "";
  z-index: 2;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #FFF7B2;
}

.caravan-course_item::after {
  position: absolute;
  content: "";
  top: -2px;
  width: 40px;
  height: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFF7B2 url("../images/common/arrow_down.png") no-repeat bottom center/100% 100%;
  z-index: 1;
}

.caravan-course_img {
  width: 44rem;
  flex-shrink: 0;
}

.caravan-course_desc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem 2rem;
}

.caravan-course_desc dl {
  width: 100%;
}

.caravan-course_desc dl dt {
  background: #ED9100;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: 700;
  padding: 0.5rem 1rem 0.5rem 4rem;
  position: relative;
  border-radius: 3rem;
  margin-bottom: 1.5rem;
}

.caravan-course_desc dl dt .fz-sm {
  font-size: 75%;
}

.caravan-course_desc dl dt .ico {
  position: absolute;
  top: -0.7rem;
  left: -1rem;
  width: 5.4rem;
  height: 5.4rem;
  border: 2px solid #ED9100;
  background: #FFFF00;
  font-size: 3.8rem;
  line-height: 1.0526315789;
  padding-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ED9100;
  border-radius: 50%;
}

.caravan-course_desc .copy {
  width: calc(100% - 16rem);
}

.caravan-course_desc .img {
  width: 14rem;
  flex-shrink: 0;
}

.caravan-course_btn {
  margin-top: 6rem;
}

.caravan-movie_items {
  padding-top: 5rem;
}

.caravan-movie_item {
  border: 3px solid #ED9100;
  border-radius: 2rem;
  background: #fff;
  position: relative;
  padding: 7rem 4rem 4rem;
}

.caravan-movie_item:nth-child(n+2) {
  margin-top: 8rem;
}

.caravan-movie_item .caravan-btn {
  max-width: 40rem;
  margin: 4rem auto 0;
}

.caravan-movie_headline {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  background: #ED9100;
  color: #fff;
  font-size: 3.4rem;
  line-height: 1.7647058824;
  font-weight: 700;
  padding: 1rem 1rem 1rem 8.6rem;
  border-radius: 3rem;
  margin-bottom: 1.5rem;
}

.caravan-movie_headline .fz-sm {
  font-size: 75%;
}

.caravan-movie_headline .ico {
  position: absolute;
  top: -1.5rem;
  left: -3rem;
  width: 11rem;
  height: 11rem;
  border: 6px solid #ED9100;
  background: #FFFF00;
  font-size: 7rem;
  line-height: 1.1428571429;
  padding-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ED9100;
  border-radius: 50%;
}

.caravan-movie_heading {
  display: block;
  text-align: center;
  position: relative;
  margin-top: 4rem;
  padding-top: 3rem;
  margin-bottom: 4rem;
}

.caravan-movie_heading::before {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 23rem;
  height: 4.5rem;
  background: url("../images/common/download_guide_deco.png") no-repeat top center/cover;
}

.caravan-movie_heading .text {
  position: relative;
  z-index: 2;
  border: 3px solid #E2465A;
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  min-width: 54rem;
  display: inline-block;
  font-size: 2.6rem;
  line-height: 1.2307692308;
  font-weight: 700;
  color: #E2465A;
  background: #fff;
  letter-spacing: -0.05em;
}

.caravan-movie_heading .deco-l {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1rem;
  width: 13rem;
  z-index: 1;
}

.caravan-movie_heading .deco-r {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1rem;
  width: 12.5rem;
  z-index: 1;
}

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

.caravan-movie_combination {
  text-align: center;
  margin-top: 5rem;
}

.caravan-movie_combination h4 {
  display: inline-block;
  color: #E2465A;
  border: 2px solid #E2465A;
  border-radius: 1.2rem;
  margin-bottom: 2rem;
  padding: 0.5rem 3rem;
  font-size: 2rem;
  line-height: 1.5;
}

.caravan-movie_combination ul li + li {
  margin-top: 0.5rem;
}

.caravan-story_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem;
}

@media screen and (min-width: 768px) {
  .caravan-story_item:nth-child(3n+1) {
    animation-delay: 0s !important;
  }
  .caravan-story_item:nth-child(3n+2) {
    animation-delay: 0.2s !important;
  }
  .caravan-story_item:nth-child(3n+3) {
    animation-delay: 0.4s !important;
  }
}
.caravan-story_desc {
  padding-top: 1.5rem;
}

.caravan-story_desc h4 {
  color: #E2465A;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.caravan-musical_item {
  margin-top: 4rem;
}

.caravan-musical_ttl {
  color: #E2465A;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.caravan-musical_img {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4rem;
}

@media screen and (min-width: 768px) {
  .caravan-musical_img li:nth-child(4n+1) {
    animation-delay: 0s !important;
  }
  .caravan-musical_img li:nth-child(4n+2) {
    animation-delay: 0.2s !important;
  }
  .caravan-musical_img li:nth-child(4n+3) {
    animation-delay: 0.4s !important;
  }
  .caravan-musical_img li:nth-child(4n+4) {
    animation-delay: 0.6s !important;
  }
}
.caravan-dance {
  padding: 0 5%;
}

.caravan-dance_row {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .caravan-dance_row {
    flex-direction: row-reverse;
  }
}
.caravan-dance_desc {
  flex-grow: 1;
  line-height: 1.65;
}

.caravan-dance_boy {
  width: 36rem;
  flex-shrink: 0;
}

.caravan-dance_img {
  display: flex;
  gap: 6rem;
}

.caravan-dance_img figure {
  width: calc(50% - 3rem);
}

@media screen and (min-width: 768px) {
  .caravan-dance_img figure:nth-child(2n+1) {
    animation-delay: 0s !important;
  }
  .caravan-dance_img figure:nth-child(2n+2) {
    animation-delay: 0.2s !important;
  }
}
.caravan-dance .caravan-btn {
  max-width: 40rem;
  margin: 4rem auto 0;
}

.caravan-activities_leading {
  padding: 0 10%;
}

.caravan-activities_heading {
  position: relative;
  margin: 4rem 0 4rem;
}

.caravan-activities_heading .text {
  display: block;
  text-align: center;
  position: relative;
  padding-top: 3rem;
  margin-bottom: 4rem;
}

.caravan-activities_heading .text::before {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 23rem;
  height: 4.5rem;
  background: url("../images/common/download_guide_deco.png") no-repeat top center/cover;
}

.caravan-activities_heading .text span {
  position: relative;
  z-index: 2;
  border: 3px solid #E2465A;
  border-radius: 1.5rem;
  padding: 1.5rem 3rem;
  min-width: 54rem;
  display: inline-block;
  font-size: 2.6rem;
  line-height: 1.2307692308;
  font-weight: 700;
  color: #E2465A;
  background: #fff;
}

.caravan-activities_heading .animal {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 17rem;
}

.caravan-activities_heading .animal.-left {
  top: 10%;
  right: auto;
  width: 13rem;
  left: 5rem;
}

.caravan-activities_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4.2rem;
}

.caravan-activities_item {
  width: calc(33.3333% - 28px);
}

@media screen and (min-width: 768px) {
  .caravan-activities_item:nth-child(3n+1) {
    animation-delay: 0s !important;
  }
  .caravan-activities_item:nth-child(3n+2) {
    animation-delay: 0.2s !important;
  }
  .caravan-activities_item:nth-child(3n+3) {
    animation-delay: 0.4s !important;
  }
}
.caravan-activities_img {
  width: 100%;
  aspect-ratio: 272/232;
}

.caravan-activities_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.caravan-activities_desc {
  padding-top: 1rem;
}

.caravan-activities_desc h4 {
  color: #ED1A61;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.caravan-activities_sttl {
  text-align: center;
  margin-bottom: 4rem;
}

.caravan-bar_heading {
  text-align: center;
  color: #187FBE;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.3571428571;
  margin-bottom: 4rem;
}

.caravan-bar_img {
  padding: 0 5%;
}

.caravan-bg {
  position: relative;
  padding-bottom: 2.5rem;
  padding-top: 14rem;
  margin-bottom: -21rem;
  background-color: rgba(94, 183, 232, 0.3);
  background: #cfe9f8;
  text-align: center;
  z-index: 2;
}

.caravan-bg .deco_bg {
  position: absolute;
  top: -7.6rem;
  left: 0;
  width: 100%;
  height: 16.8rem;
  mask-image: url("../images/common/mask_sky.png");
  mask-size: contain;
  mask-position: bottom center;
  background-color: #FFFFFF;
  mask-repeat: repeat-x;
  z-index: 1;
  transform: scaleY(-1);
}

.caravan-bg .l-inner {
  position: relative;
  z-index: 2;
}

.caravan-bus {
  text-align: center;
  position: relative;
}

.caravan-bus_heading {
  text-align: center;
  color: #187FBE;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.3571428571;
  display: inline-block;
  background: linear-gradient(to top, #FFFF00 0%, #FFFF00 20%, transparent 20%, transparent 100%);
}

.caravan-bus_content {
  padding-left: 5%;
  text-align: left;
}

.caravan-bus_content dl:nth-child(n+2) {
  margin-top: 3rem;
}

.caravan-bus_content dl dt {
  margin-bottom: 1rem;
}

.caravan-bus_content dl h3 {
  color: #187FBE;
  font-size: 2.2rem;
  line-height: 1.2727272727;
  font-weight: 700;
}

.caravan-bus_content dl ul li {
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 1.65;
}

.caravan-bus_img {
  position: absolute;
  top: 0rem;
  right: -2rem;
  width: 30rem;
}

.caravan-pct {
  position: relative;
}

.caravan-pct_heading {
  text-align: left;
  position: absolute;
  top: 3rem;
  left: 3rem;
}

@media screen and (max-width: 767px) {
  .page-caravan .c-page-title_ttl {
    width: 68rem;
  }
  .page-caravan .c-page-title_text {
    padding: 1rem 6rem 1.6rem;
  }
  .page-caravan .btn-contact {
    width: 50rem;
    font-size: 3.2rem;
    line-height: 1.4375;
    padding: 1.3rem 6rem;
  }
  .page-caravan .btn-contact::after {
    right: 1.2rem;
    width: 5rem;
    height: 5rem;
  }
  .page-caravan .caravan-leading {
    font-size: 2.4rem;
  }
  .caravan-intro_img {
    margin-top: 4rem;
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .caravan-intro_child {
    margin-right: -3rem;
  }
  .caravan-course {
    margin-top: 5rem;
    padding: 6rem 0 2rem;
  }
  .caravan-course_headline .img {
    padding: 0;
    margin-bottom: 2rem;
  }
  .caravan-course_headline .text {
    font-size: 2.4rem;
  }
  .caravan-course_items {
    margin-top: 6rem;
  }
  .caravan-course_item {
    flex-direction: column;
    border-top-width: 2px;
    gap: 4rem;
    padding: 6rem 0;
    width: 60rem;
    margin: 0 auto;
    text-align: center;
  }
  .caravan-course_item::before {
    top: -4px;
    width: 20px;
    height: 2px;
  }
  .caravan-course_item::after {
    top: -2px;
    width: 26px;
    height: 16px;
  }
  .caravan-course_img {
    width: 100%;
  }
  .caravan-course_desc dl dt {
    font-size: 2.6rem;
    padding: 1rem 1rem 1rem 5.6rem;
    margin-bottom: 2rem;
    text-align: left;
    font-feature-settings: "palt";
  }
  .caravan-course_desc dl dt .ico {
    left: -2rem;
    width: 7.6rem;
    height: 7.6rem;
    font-size: 4.8rem;
    padding-bottom: 0.4rem;
  }
  .caravan-course_desc dl dd {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .caravan-course_desc .copy {
    width: 100%;
  }
  .caravan-course_desc .img {
    display: none;
  }
  .caravan-course_btn {
    margin-top: 6rem;
  }
  .caravan-movie_items {
    padding-top: 5rem;
  }
  .caravan-movie_item {
    margin: 0 -2rem;
    border-width: 2px;
    padding: 7rem 4rem 4rem;
  }
  .caravan-movie_item:nth-child(n+2) {
    margin-top: 8rem;
  }
  .caravan-movie_item .caravan-btn {
    max-width: 58rem;
    margin: 4rem auto 0;
  }
  .caravan-movie_item .caravan-btn .c-btn {
    padding: 1.5rem 4rem;
    font-size: 2.6rem;
    line-height: 1.3846153846;
  }
  .caravan-movie_item:nth-child(1) .caravan-movie_headline {
    text-align: left;
    padding-left: 9rem;
  }
  .caravan-movie_headline {
    font-size: 2.6rem;
    width: 94%;
    padding: 1rem 1rem 1rem 6.6rem;
    margin-bottom: 2rem;
    text-align: center;
    font-feature-settings: "palt" !important;
  }
  .caravan-movie_headline .ico {
    top: -0.6rem;
    left: 0;
    width: 7.6rem;
    height: 7.6rem;
    font-size: 4.8rem;
    padding-bottom: 0.4rem;
    border-width: 2px;
  }
  .caravan-movie_heading {
    margin-top: 6rem;
    padding-top: 3rem;
    margin-bottom: 6rem;
  }
  .caravan-movie_heading::before {
    width: 30rem;
    height: 5.8rem;
  }
  .caravan-movie_heading .text {
    border-width: 2px;
    padding: 1.5rem 1rem;
    min-width: 50rem;
    font-size: 2.4rem;
    line-height: 1.3333333333;
  }
  .caravan-movie_heading .deco-l {
    left: -3rem;
    width: 9rem;
  }
  .caravan-movie_heading .deco-r {
    right: -3.6rem;
    width: 9rem;
  }
  .caravan-movie_combination {
    margin-top: 4rem;
  }
  .caravan-movie_combination h4 {
    padding: 0.6rem 3rem;
    font-size: 2.6rem;
    line-height: 1.4615384615;
  }
  .caravan-story_list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0;
  }
  .caravan-story_item {
    padding: 4rem 0;
  }
  .caravan-story_item:not(:first-child) {
    border-top: 2px dotted #ED9100;
  }
  .caravan-story_item:last-child {
    padding-bottom: 2rem;
  }
  .caravan-story_img {
    width: 50rem;
    margin: 0 auto;
  }
  .caravan-story_desc {
    width: 50rem;
    margin: 0 auto;
    padding-top: 2rem;
  }
  .caravan-story_desc h4 {
    font-size: 120%;
    margin-bottom: 1rem;
  }
  .caravan-musical_item {
    margin-top: 0;
    padding: 4rem 0;
  }
  .caravan-musical_item:not(:first-child) {
    border-top: 2px dotted #ED9100;
  }
  .caravan-musical_item:last-child {
    padding-bottom: 2rem;
  }
  .caravan-musical_ttl {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    text-align: center;
  }
  .caravan-musical_img {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    max-width: 58rem;
    margin: 0 auto;
  }
  .caravan-dance {
    padding: 0;
  }
  .caravan-dance_row {
    flex-direction: column;
    margin-bottom: 3rem;
    text-align: center;
  }
  .caravan-dance_boy {
    width: 50rem;
    margin: 0 auto 3rem;
  }
  .caravan-dance_img {
    gap: 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    padding: 1.5rem 0;
  }
  .caravan-dance_img figure {
    width: calc(50% - 1rem);
  }
  .caravan-dance .caravan-btn {
    max-width: 58rem;
    margin: 4rem auto 0;
  }
  .caravan-dance .caravan-btn .c-btn {
    padding: 1.5rem 4rem;
    font-size: 2.6rem;
    line-height: 1.3846153846;
  }
  .caravan-activities_leading {
    padding: 0 5%;
  }
  .caravan-activities_heading {
    margin: 4rem 0 4rem;
  }
  .caravan-activities_heading .text {
    padding-top: 3rem;
    margin-bottom: 4rem;
  }
  .caravan-activities_heading .text::before {
    width: 30rem;
    height: 5.8rem;
  }
  .caravan-activities_heading .text span {
    border-width: 2px;
    min-width: 48rem;
  }
  .caravan-activities_heading .animal {
    right: -4rem;
    width: 14rem;
  }
  .caravan-activities_heading .animal.-left {
    top: 50%;
    width: 12rem;
    left: -2.6rem;
  }
  .caravan-activities_list {
    padding: 2rem 0;
    gap: 4.2rem;
    max-width: 50rem;
    margin: 0 auto;
  }
  .caravan-activities_item {
    width: 100%;
  }
  .caravan-activities_desc {
    padding-top: 1rem;
  }
  .caravan-activities_desc h4 {
    margin-bottom: 1rem;
  }
  .caravan-activities_sttl {
    margin-bottom: 1rem;
  }
  .caravan-bar_img {
    padding: 0 2rem;
  }
  .caravan-bg {
    padding-top: 0;
    padding-bottom: 1rem;
    margin-bottom: -4rem;
    background: #fff;
  }
  .caravan-bg .deco_bg {
    display: none;
  }
  .caravan-bus_content {
    padding-left: 5%;
  }
  .caravan-bus_content dl:nth-child(n+2) {
    margin-top: 4rem;
  }
  .caravan-bus_content dl dt {
    margin-bottom: 2rem;
  }
  .caravan-bus_content dl h3 {
    font-size: 2.8rem;
  }
  .caravan-bus_img {
    position: static;
    width: 50rem;
    margin: 5rem auto 0;
  }
  .caravan-pct_heading {
    text-align: center;
    position: static;
    margin-bottom: 3rem;
  }
  .caravan-pct_img {
    margin-left: -1rem;
    margin-right: -3rem;
  }
}
.text-orange {
  color: #ED9100;
  font-weight: bold;
}

.no-wrap {
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .no-wrap_sp {
    white-space: nowrap;
  }
}
.page-campaign .c-page-title {
  padding-top: 0;
}

.page-campaign .c-page-title_ttl {
  width: 53.4rem;
  padding: 0 9.3rem;
}

.page-campaign .c-page-title_ttl .deco {
  position: absolute;
  pointer-events: none;
}

.page-campaign .c-page-title_ttl .deco-left {
  width: 9rem;
  left: -0.2rem;
  bottom: -1.1rem;
}

.page-campaign .c-page-title_ttl .deco-right {
  width: 9.4rem;
  right: -1.1rem;
  bottom: -1.2rem;
}

.page-campaign .c-page-title_ttl--small {
  margin: 0px auto 0;
  padding: 1.9rem 11.3rem;
}

.page-campaign .c-campaign-items {
  margin-top: 2.5rem;
}

.page-campaign .c-campaign-item + .c-campaign-item {
  position: relative;
  z-index: 3;
}

.page-campaign .c-campaign-item_text {
  font-size: 1.7rem;
  line-height: 1.6470588235;
  text-align: center;
  margin-top: 3rem;
}

.page-campaign .c-campaign-item_img {
  width: 53.5rem;
  margin: 0 auto;
}

.page-campaign .c-campaign-item .logo {
  width: 27.6rem;
  margin: 5rem auto 0;
}

.page-campaign .c-campaign-item .car {
  width: 51.6rem;
  margin: 0 auto;
}

.page-campaign .c-campaign-item .wrap-btn {
  margin: 2.4rem auto 0;
  max-width: 40rem;
}

.page-campaign .c-campaign-item .wrap-btn .c-btn {
  padding: 0.6rem 3.6rem 0.6rem 1.5rem;
}

.page-campaign .bnr_campaign {
  position: relative;
  padding-bottom: 4.5rem;
  padding-top: 16rem;
  margin-bottom: -21rem;
  background-color: rgba(94, 183, 232, 0.3);
  background: #cfe9f8;
  text-align: center;
  z-index: 2;
}

.page-campaign .bnr_campaign .deco_bg {
  position: absolute;
  top: -7.6rem;
  left: 0;
  width: 100%;
  height: 16.8rem;
  mask-image: url(../images/common/mask_sky.png);
  mask-size: contain;
  mask-position: bottom center;
  background-color: #FFFFFF;
  mask-repeat: repeat-x;
  z-index: 1;
  transform: scaleY(-1);
}

.page-campaign .bnr_campaign_text {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.75;
  border-radius: 1rem;
  border: 2px solid #035097;
  background-color: #fff;
  max-width: 70rem;
  margin: 0 auto;
  padding: 2.7rem 0;
}

@media screen and (max-width: 767px) {
  .page-campaign .c-page-title {
    margin-top: -1.5rem;
  }
  .page-campaign .c-page-title_ttl {
    width: 51.4rem;
    padding: 0 9.3rem;
  }
  .page-campaign .c-page-title_ttl--small {
    margin: 1.2rem auto 0;
    padding: 1.9rem 12.3rem;
    width: 100%;
  }
  .page-campaign .c-page-title_ttl--small .deco-left {
    left: 2.2rem;
    bottom: 0.6rem;
    width: 9.8rem;
  }
  .page-campaign .c-page-title_ttl--small .deco-right {
    right: 2.7rem;
    bottom: 1.1rem;
    width: 9.1rem;
  }
  .page-campaign .c-campaign-items {
    margin-top: 3.4rem;
  }
  .page-campaign .c-campaign-item + .c-campaign-item {
    margin-top: 5rem;
  }
  .page-campaign .c-campaign-item_text {
    font-size: 2.2rem;
    line-height: 1.5454545455;
    text-align: center;
    margin-top: 3rem;
  }
  .page-campaign .c-campaign-item_img {
    width: 53.5rem;
    margin: 0 auto;
  }
  .page-campaign .c-campaign-item .logo {
    width: 46.5rem;
  }
  .page-campaign .c-campaign-item .car {
    width: 51.6rem;
    margin: 0 auto;
    padding-bottom: 2.1rem;
  }
  .page-campaign .c-campaign-item .wrap-btn {
    margin: 3rem auto 0;
    max-width: 50rem;
  }
  .page-campaign .c-campaign-item .wrap-btn .c-btn {
    font-size: 3.6rem;
    line-height: 1.65;
  }
  .page-campaign .c-campaign-item .wrap-btn .c-btn .ico {
    right: 2rem;
    width: 3rem;
  }
  .page-campaign .bnr_campaign {
    padding-bottom: 5.5rem;
    padding-top: 6rem;
    margin-bottom: -18rem;
    background-color: #fff;
  }
  .page-campaign .bnr_campaign_text {
    font-size: 3.2rem;
    line-height: 1.7428571429;
    max-width: 60rem;
    padding: 3.7rem 0 5rem;
    color: #035097;
  }
}
.p-news-detail {
  text-align: center;
}

.p-news-detail .l-inner {
  position: relative;
}

.p-news-detail .deco-bird {
  position: absolute;
  top: -4.2rem;
  left: 10.7rem;
  width: 14rem;
}

.p-news-detail .meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-bottom: 1.5rem;
}

.p-news-detail .date {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  font-weight: 700;
  color: #187FBE;
  min-width: 14rem;
  padding: 0.4rem 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #187FBE;
}

.p-news-detail .cate {
  font-size: 1.8rem;
  line-height: 1.3333333333;
  font-weight: 700;
  padding: 0.4rem 2rem;
  color: #187FBE;
  min-width: 14rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #187FBE;
  background: rgba(94, 183, 232, 0.3);
}

.p-news-detail .c-news_img {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4.3rem;
}

.p-news-detail .c-news_img img {
  width: 34rem;
}

.p-news-detail .c-heading-type2 {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.p-news-detail .c-heading-type2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70rem;
  height: 2px;
  background-color: #187FBE;
}

@media screen and (max-width: 767px) {
  .p-news-detail .deco-bird {
    top: -3rem;
    left: 4rem;
    width: 14rem;
  }
  .p-news-detail .meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 2rem;
  }
  .p-news-detail .cate {
    font-size: 2.4rem;
    line-height: 1.3333333333;
    padding: 0.7rem 3rem;
  }
  .p-news-detail .date {
    font-size: 2.4rem;
    line-height: 1.3333333333;
    padding: 0.7rem 3rem;
  }
  .p-news-detail .c-news_img {
    width: 60rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin: 6rem auto 0;
    justify-content: center;
  }
  .p-news-detail .c-news_img img {
    width: 100%;
  }
  .p-news-detail .c-heading-type2 {
    margin-bottom: 3rem;
    padding-bottom: 2.4rem;
  }
  .p-news-detail .c-heading-type2::after {
    width: 100%;
  }
}
.page-movie .c-page-title {
  padding-top: 0;
}

.page-movie .c-page-title_ttl {
  width: 27.6rem;
  margin-bottom: 1.3rem;
}

.page-movie .c-page-title_ttl--small .deco-left {
  width: 11.8rem;
  left: 2.3rem;
}

.page-movie .c-page-title_ttl--small .deco-right {
  width: 14.7rem;
}

@media screen and (max-width: 767px) {
  .page-movie .c-page-title_ttl {
    width: 26.6rem;
    transform: translateY(-1.5rem);
  }
  .page-movie .c-page-title_ttl--small {
    padding: 1.6rem 11.3rem 2rem;
  }
  .page-movie .c-page-title_ttl--small .deco-right {
    right: 0;
  }
}
.page-movie .c-movie {
  margin-top: 6rem;
}

.page-movie .c-movie_ttl {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #187FBE;
}

.page-movie .c-movie-item_inner {
  display: flex;
  flex-direction: column;
  padding: 0 10%;
}

.page-movie .c-movie-item + .c-movie-item {
  margin-top: 10rem;
}

.page-movie .c-movie-item_copy {
  text-align: center;
  margin-bottom: 4.1rem;
}

.page-movie .c-movie-item_img {
  display: flex;
  justify-content: center;
  gap: 7rem;
}

@media screen and (min-width: 768px) {
  .page-movie .c-movie-item_img li:nth-child(2n+1) {
    animation-delay: 0s !important;
  }
  .page-movie .c-movie-item_img li:nth-child(2n+2) {
    animation-delay: 0.2s !important;
  }
}
.page-movie .c-movie-item_img a {
  display: block;
}

.page-movie .c-movie-content_list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.page-movie .c-movie .c-list-mambo {
  padding-bottom: 1px;
}

.page-movie .c-movie .c-list-mambo li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  position: relative;
}

.page-movie .c-movie .c-list-mambo li:last-child {
  padding-bottom: 0;
}

.page-movie .c-movie .c-list-mambo li:last-child::after {
  content: none;
  background: transparent;
}

.page-movie .c-movie .c-list-mambo li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: url("../images/movie/line-dot.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.page-movie .c-movie .c-list-mambo_img {
  width: 30rem;
  flex-shrink: 0;
}

.page-movie .c-movie .c-list-mambo_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  color: #187FBE;
  margin-bottom: 1.3rem;
}

.page-movie .c-movie .c-list-mambo_ttl span {
  font-size: 75%;
}

.page-movie .c-movie .c-list-mambo_text {
  max-width: 100%;
  width: 30.3rem;
}

.page-movie .c-movie .c-list-mambo .wrap-btn {
  display: flex;
  flex-direction: column;
  width: 165px;
  gap: 9px;
}

.page-movie .c-movie .c-list-mambo .wrap-btn .c-btn {
  padding: 0.5rem 3.6rem 0.5rem 1.5rem;
}

@media screen and (max-width: 767px) {
  .page-movie .c-movie {
    margin-top: 8rem;
  }
  .page-movie .c-movie-item_inner {
    padding: 0;
  }
  .page-movie .c-movie-item + .c-movie-item {
    margin-top: 8.7rem;
  }
  .page-movie .c-movie-item_img {
    align-items: center;
    gap: 5rem;
    flex-direction: column;
    width: 50rem;
    margin: 0 auto;
  }
  .page-movie .c-movie-item_img a {
    display: block;
  }
  .page-movie .c-movie_ttl {
    text-align: center;
    font-size: 3.2rem;
  }
  .page-movie .c-movie .c-list-mambo {
    padding-top: 4px;
  }
  .page-movie .c-movie .c-list-mambo li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 3rem;
    padding-bottom: 0;
    margin-bottom: 6rem;
    position: relative;
  }
  .page-movie .c-movie .c-list-mambo li:last-child {
    padding-bottom: 0;
  }
  .page-movie .c-movie .c-list-mambo li:last-child::after {
    content: none;
    background: transparent;
  }
  .page-movie .c-movie .c-list-mambo li::after {
    content: none;
    background: transparent;
  }
  .page-movie .c-movie .c-list-mambo_img {
    width: 28rem;
    flex-shrink: 0;
  }
  .page-movie .c-movie .c-list-mambo_text {
    flex-grow: 1;
  }
  .page-movie .c-movie .c-list-mambo_ttl {
    font-size: 3rem;
    line-height: 1.3333333333;
    margin-bottom: 2rem;
  }
  .page-movie .c-movie .c-list-mambo .wrap-btn {
    display: flex;
    flex-direction: column;
    width: 23.1rem;
    gap: 1.6rem;
  }
  .page-movie .c-movie .c-list-mambo .wrap-btn .c-btn {
    padding: 0.5rem 3.6rem 0.5rem 1.5rem;
    font-size: 2.6rem;
    height: 6rem;
  }
  .page-movie .c-movie-content_list {
    padding: 0 5%;
  }
}
.page-movie .c-download-guide_content {
  margin-top: 5rem;
}
.time-text {
  font-size: 70%;
}
@media screen and (max-width: 767px) {
  .page-movie .c-download-guide_content {
    margin-top: 1rem;
  }
}