@charset "UTF-8";
/*$base-width: 1400px;*/
a:hover {
  opacity: 0.7;
  transition: opacity 0.6s;
}

.p-main {
  background-color: #F4FECE;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  margin-top: 5rem;
}

.p-main__inner {
  max-width: 1500px;
  margin: 0 auto;
}

.p-content {
  background-color: #FFF;
}

.p-content__inner {
  padding: 0 80px 82px;
}

@media screen and (max-width: 767px) {
  .p-content__inner {
    padding: 0 15px 120px;
  }
}
.p-section {
  padding-top: 70px;
}

@media screen and (max-width: 767px) {
  .p-section {
    padding-top: 50px;
  }
  .p-section.of-farst {
    padding-top: 20px;
  }
}
.p-heading {
  width: 100%;
  position: relative;
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  .p-heading {
    margin-bottom: 20px;
  }
}
.p-inline-block {
  display: inline-block;
}

.p-heading::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  background-color: #144F31;
}

@media screen and (max-width: 767px) {
  .p-heading::after {
    display: none;
  }
}
.p-heading__text {
  position: relative;
  border-radius: 10px;
  background: linear-gradient(to right, #4bad31 0%, #0c5c55 100%);
  color: #FFF;
  font-size: 2.4rem;
  line-height: 1;
  width: 335px;
  display: grid;
  align-items: center;
  justify-content: center;
  z-index: 1;
  height: 45px;
}

@media screen and (max-width: 767px) {
  .p-heading__text {
    font-size: 28px;
    width: 100%;
    height: 55px;
  }
}
@media screen and (max-width: 767px) {
  .p-list {
    padding: 0 15px 0;
  }
}
.p-list__item {
  position: relative;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.5;
  padding-left: 25px;
}

@media screen and (max-width: 767px) {
  .p-list__item {
    font-size: 1.7rem;
    line-height: 1.4;
    padding-left: 15px;
    margin-top: 10px;
  }
}
.p-list__item::before {
  content: "";
  height: 13px;
  width: 13px;
  border-radius: 50%;
  background-color: #144F31;
  left: 0;
  top: 1rem;
  display: block;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .p-list__item::before {
    height: 9px;
    width: 9px;
    top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-num-list {
    padding: 0 15px 0;
  }
}
.p-num-list__item {
  position: relative;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.5;
  padding-left: 2.3rem;
}

@media screen and (max-width: 767px) {
  .p-num-list__item {
    font-size: 1.7rem;
    line-height: 1.4;
    padding-left: 1.8rem;
  }
}
.p-num-list__item::before {
  content: "";
  left: 0;
  top: 0;
  display: block;
  position: absolute;
}

.p-num-list__item:nth-child(1)::before {
  content: "①";
}

.p-num-list__item:nth-child(2)::before {
  content: "②";
}

.p-num-list__item:nth-child(3)::before {
  content: "③";
}

.p-num-list__item:nth-child(4)::before {
  content: "④";
}

.p-num-list__item:nth-child(5)::before {
  content: "⑤";
}

.p-num-list__item.of-2::before {
  content: "②";
}

.p-num-list__tag {
  margin: 7px 0 20px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .p-num-list__tag {
    margin: 16px 0 20px;
    display: inline-block;
  }
}
.p-num-list__tag-item {
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 150px;
  padding: 11px 20px 11px;
  border-radius: 10px;
  line-height: 1;
  background: #84bc6d;
  color: #FFF;
  font-weight: bold;
  font-size: 2rem;
  display: inline-block;
  margin: 0 20px 10px 0;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .p-num-list__tag-item {
    width: 100%;
    padding: 14px 0 14px;
    font-size: 1.7rem;
  }
  .p-num-list__tag-sp-small {
    font-weight: 500;
    font-size: 15px;
  }
}
.p-note-list {
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .p-note-list {
    padding: 0 15px 0;
  }
}
.p-note-list__item {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.6rem;
}

@media screen and (max-width: 767px) {
  .p-note-list__item {
    font-size: 1.2rem;
    letter-spacing: -0.03em;
    padding-left: 1.2rem;
    line-height: 1.5;
  }
}
.p-note-list__item::before {
  content: "※";
  left: 0;
  top: 0;
  display: block;
  position: absolute;
}

.p-note-list__item.of-red {
  color: #FF0000;
}

.p-text {
  font-size: 2rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .p-text {
    padding: 0 15px 0;
    font-size: 1.7rem;
    line-height: 1.4;
  }
}
.p-text + .p-text {
  margin-top: 15px;
}

.p-text-border {
  text-decoration: underline !important;
}

.p-text-bold {
  text-decoration: bold;
}

.p-text-bold.of-red {
  color: #FF0000;
}

.p-text-bold .p-red {
  color: #FF0000;
}

@media screen and (max-width: 767px) {
  .p-text-sp-small {
    font-size: 1.3rem;
  }
}
.p-inline {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .p-pc-bold {
    font-weight: bold;
  }
}
@media screen and (max-width: 767px) {
  .p-pc-only {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-sp-only {
    display: none;
  }
}
.p-kv {
  position: relative;
  background-color: #FFF;
}

.p-kv-prev, .p-kv-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 110px;
}

@media screen and (max-width: 767px) {
  .p-kv-prev, .p-kv-next {
    width: 50px;
  }
}
.p-kv-prev {
  left: -55px;
}

.p-kv-next {
  right: -55px;
}

@media screen and (max-width: 1610px) {
  .p-kv-prev {
    left: calc((100vw - 100%) / -2);
  }
  .p-kv-next {
    right: calc((100vw - 100%) / -2);
  }
}
.p-kv__title, .p-kv__video {
  width: 100%;
}

.p-step {
  display: grid;
  grid-template-columns: 372px 40px 372px 40px 372px;
  justify-content: space-between;
  position: relative;
}

@media screen and (max-width: 1400px) {
  .p-step {
    grid-template-columns: 1fr 20px 1fr 20px 1fr;
    padding: 0 15px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-step {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-step__item {
    text-align: center;
  }
}
.p-step__image {
  height: 450px;
  text-align: center;
  display: block;
}
.p-step__image img {
  height: 100%;
  width: auto;
}

@media screen and (max-width: 1400px) {
  .p-step__image {
    height: 300px;
  }
}
@media screen and (max-width: 1000px) {
  .p-step__image {
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .p-step__image {
    height: 300px;
  }
}
.p-step__arrow {
  margin-top: 200px;
}

@media screen and (max-width: 1400px) {
  .p-step__arrow {
    margin-top: 140px;
  }
}
@media screen and (max-width: 1000px) {
  .p-step__arrow {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-step__arrow {
    width: 28px;
    margin: 30px auto 10px;
  }
  .p-step__arrow img {
    transform: rotate(90deg);
  }
}
.p-step__text {
  position: relative;
  margin-top: 25px;
  font-size: 2rem;
  line-height: 1.5;
  padding-left: 2.3rem;
}

@media screen and (max-width: 767px) {
  .p-step__text {
    margin-top: 20px;
    font-size: 1.7rem;
    line-height: 1.4;
    padding-left: 1.8rem;
    display: inline-block;
    text-align: left;
  }
}
.p-step__text::before {
  content: "";
  left: 0;
  top: 0;
  display: block;
  position: absolute;
}

.p-step__text.of-1::before {
  content: "①";
}

.p-step__text.of-2::before {
  content: "②";
}

.p-step__text.of-3::before {
  content: "③";
}

.p-step__note {
  position: absolute;
  right: 0;
  bottom: -50px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .p-step__note {
    position: relative;
    right: auto;
    bottom: auto;
    text-align: right;
    font-size: 1.2rem;
  }
}
.p-note {
  position: relative;
}

.p-note__image {
  position: absolute;
  right: -80px;
  bottom: -220px;
  width: 271px;
  z-index: 1;
}

@media screen and (max-width: 860px) {
  .p-note__image {
    bottom: -190px;
    width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .p-note__image {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    text-align: right;
  }
  .p-note__image-image {
    width: 249px;
    margin-left: auto;
  }
}
.p-note__text {
  font-size: 1.5rem;
  margin-left: 50px;
  margin-top: -20px;
}

@media screen and (max-width: 767px) {
  .p-note__text {
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: 40px;
    margin-top: 0;
  }
}
.p-shop__list {
  display: grid;
  row-gap: 10px;
  column-gap: 25px;
  margin-top: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 1300px) {
  .p-shop__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 850px) {
  .p-shop__list {
    padding: 0 15px 0;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 10px;
    margin-top: 20px;
  }
}
.p-shop__link {
  font-weight: bold;
  width: 100%;
  height: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: solid 2px #144F31;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: #144f31;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-shop__link {
    font-size: 18px;
    height: 65px;
  }
}
.p-shop__link:hover {
  opacity: 1;
  background-color: #144F31;
  color: #FFF;
  transition: all 0.6s;
}

.p-shop__link::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/baa-cp/shop-arrow.svg);
  width: 13px;
  height: 12px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.p-shop__link:hover::after {
  opacity: 1;
  transition: all 0.6s;
  background-image: url(../img/baa-cp/shop-arrow-act.svg);
}

.p-shop__text.of-small {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .p-shop__text.of-small {
    font-size: 16px;
  }
}
.p-contact {
  position: relative;
}

.p-contact__banner {
  position: absolute;
  right: -180px;
  bottom: -169px;
}

@media screen and (max-width: 1700px) {
  .p-contact__banner {
    position: absolute;
    right: -60px;
    bottom: -169px;
  }
}
@media screen and (max-width: 1200px) {
  .p-contact__banner {
    position: absolute;
    right: -60px;
    bottom: -110px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__banner {
    display: none;
  }
}
.p-contact__banner-image {
  width: 180px;
  display: block;
}

@media screen and (max-width: 1200px) {
  .p-contact__banner-image {
    width: 120px;
    display: block;
  }
}
.p-contact__flex {
  display: flex;
  justify-content: space-between;
  column-gap: 108px;
}

@media screen and (max-width: 1200px) {
  .p-contact__flex {
    column-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__flex {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.p-contact__images {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 360px;
  row-gap: 5px;
}

@media screen and (max-width: 767px) {
  .p-contact__images {
    align-items: center;
    margin: 24px auto 0;
    width: 100%;
    padding-inline: 15px;
  }
}
.p-contact__app {
  width: 85.2%;
  padding-left: 11%;
}

@media screen and (max-width: 1200px) {
  .p-contact__app {
    padding-left: 0%;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__app {
    width: 100%;
    padding-bottom: 4px;
  }
}
.p-contact__baa {
  max-width: 170px;
}

@media screen and (max-width: 767px) {
  .p-contact__baa {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__note {
    margin-top: 20px;
  }
}
.p-movie {
  background: linear-gradient(160deg, #4bad31, #0c5c55);
  padding: 55px 0 70px;
  margin-inline: -80px;
  margin-top: 75px;
}

@media screen and (max-width: 767px) {
  .p-movie {
    padding: 40px 0 47px;
    margin-inline: -15px;
    margin-top: 34px;
  }
}
.p-movie__heading {
  width: 335px;
  margin-inline: auto;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .p-movie__heading {
    color: #FFF;
    width: 284px;
  }
}
.p-movie__slider {
  position: relative;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .p-movie__slider {
    margin-top: 53px;
  }
}
.p-movie__item {
  padding-inline: 100px;
}

@media screen and (max-width: 767px) {
  .p-movie__item {
    padding-inline: 45px;
  }
}
.p-movie__item-video {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.p-movie__item-video iframe {
  width: 100%;
  aspect-ratio: 560/315;
}

.p-movie__item-text {
  text-align: center;
  font-size: 2.2rem;
  color: #FFF;
  margin-top: 30px;
  height: 30px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .p-movie__item-text {
    font-size: 1.6rem;
    margin-top: 43px;
    height: 20px;
  }
}
.p-movie__next, .p-movie__prev {
  width: 78px;
  position: absolute;
  top: calc(50% - 56px);
  transform: translateY(-50%);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-movie__next, .p-movie__prev {
    width: 25px;
    top: calc(50% - 51px);
  }
}
.p-movie__prev {
  left: calc(18% - 39px);
}

.p-movie__next {
  right: calc(18% - 39px);
}

@media screen and (max-width: 767px) {
  .p-movie__prev {
    left: 11px;
  }
  .p-movie__next {
    right: 11px;
  }
}
.p-movie .slick-dots {
  display: flex;
  justify-content: space-between;
  width: 95px;
  margin: 35px auto 0;
}

@media screen and (max-width: 767px) {
  .p-movie .slick-dots {
    width: 65px;
    margin: 26px auto 0;
  }
}
.p-movie .slick-dots li button {
  width: 18px;
  height: 18px;
  background: #fff;
  font-size: 0;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .p-movie .slick-dots li button {
    width: 13px;
    height: 13px;
  }
}
.p-movie .slick-dots .slick-active button {
  background: #79D9B2;
}

.p-button {
  text-align: center;
  margin-top: 96px;
}

@media screen and (max-width: 767px) {
  .p-button {
    text-align: center;
    margin-top: 67px;
  }
}
.p-button__link {
  width: 500px;
  height: 100px;
  display: grid;
  justify-content: center;
  align-items: center;
  background-color: #fad718;
  border-radius: 50px;
  position: relative;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-button__link {
    width: 100%;
    max-width: 345px;
    height: 80px;
    justify-content: start;
  }
}
.p-button__link::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 43px;
  height: 42px;
  background-image: url(../img/baa-cp/button-arrow.svg);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-button__link::after {
    right: 14px;
    width: 34px;
    height: 35px;
    background-size: 100% 100%;
  }
}
.p-button__text {
  font-weight: 500;
  font-size: 27px;
  letter-spacing: -0.03em;
  text-align: center;
  color: #000;
}

@media screen and (max-width: 767px) {
  .p-button__text {
    font-size: 21px;
    margin-left: 25px;
  }
}
.p-footer {
  background-color: #144F31;
  position: relative;
}

.p-footer::before {
  position: absolute;
  content: "";
  width: 142px;
  height: 88px;
  background-image: url(../img/baa-cp/footer-bike.svg);
  background-size: cover;
  top: -88px;
  right: 144px;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1200px) {
  .p-footer::before {
    height: 60px;
    top: -60px;
    background-size: auto 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-footer::before {
    height: 93px;
    width: 151px;
    top: -90px;
    right: 18px;
    background-size: auto 100%;
  }
}
.p-footer__inner {
  padding: 30px 80px 30px;
}

@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding: 36px 15px 36px;
  }
}
.p-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFF;
  column-gap: 30px;
}

@media screen and (max-width: 767px) {
  .p-footer__content {
    display: grid;
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=baa-cp.css.map */