@charset "UTF-8";
.adlp-footer {
  background-color: #fff;
  padding: min(calc(64 / 1080 * 100vw), 64px) 0 min(calc(164 / 1080 * 100vw), 164px);
}
@media screen and (max-width: 767px) {
  .adlp-footer {
    padding: calc(64 / 750 * 100vw) 0 calc(220 / 750 * 100vw);
  }
}
.adlp-footer__jpx {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(calc(10 / 1080 * 100vw), 10px);
  margin-bottom: min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .adlp-footer__jpx {
    gap: calc(10 / 750 * 100vw);
    margin-bottom: calc(40 / 750 * 100vw);
  }
}
.adlp-footer__jpx .logo {
  flex: 0 0 min(calc(50 / 1080 * 100vw), 50px);
}
@media screen and (max-width: 767px) {
  .adlp-footer__jpx .logo {
    flex: 0 0 calc(50 / 750 * 100vw);
  }
}
.adlp-footer__jpx .code {
  color: #000;
  text-align: center;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  font-weight: 400;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .adlp-footer__jpx .code {
    font-size: calc(20 / 750 * 100vw);
  }
}
.adlp-footer__menu__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto min(calc(40 / 1080 * 100vw), 40px);
  gap: min(calc(48 / 1080 * 100vw), 48px);
}
@media screen and (max-width: 767px) {
  .adlp-footer__menu__wrapper {
    flex-direction: column;
    width: 100%;
    margin: 0 auto calc(40 / 750 * 100vw);
    gap: calc(32 / 750 * 100vw);
  }
}
.adlp-footer__menu {
  text-align: center;
  font-size: min(calc(18 / 1080 * 100vw), 18px);
  font-weight: 400;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .adlp-footer__menu {
    font-size: calc(28 / 750 * 100vw);
  }
}
.adlp-footer__logo {
  width: min(calc(252 / 1080 * 100vw), 252px);
  margin: 0 auto min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .adlp-footer__logo {
    width: calc(254 / 750 * 100vw);
    margin: 0 auto calc(40 / 750 * 100vw);
  }
}
.adlp-footer__number {
  text-align: center;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  font-weight: 400;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .adlp-footer__number {
    font-size: calc(20 / 750 * 100vw);
  }
}
.adlp-footer__text {
  margin: min(calc(40 / 1080 * 100vw), 40px) auto 0;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  font-weight: 400;
  line-height: 150%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .adlp-footer__text {
    font-size: calc(20 / 750 * 100vw);
    margin: calc(40 / 750 * 100vw) auto 0;
  }
}

.adlp-accordion__wrapper {
  display: flex;
  flex-direction: column;
  gap: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__wrapper {
    gap: calc(30 / 750 * 100vw);
  }
}
.adlp-accordion {
  background: #fff;
}
.adlp-accordion__header {
  position: relative;
  cursor: pointer;
}
.adlp-accordion__header__inner {
  display: flex;
  align-items: center;
  padding: min(calc(20 / 1080 * 100vw), 20px) min(calc(80 / 1080 * 100vw), 80px) min(calc(20 / 1080 * 100vw), 20px) min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header__inner {
    padding: calc(40 / 750 * 100vw) calc(112 / 750 * 100vw) calc(40 / 750 * 100vw) calc(40 / 750 * 100vw);
  }
}
.adlp-accordion__header__inner .lead {
  line-height: 1;
  font-size: min(calc(40 / 1080 * 100vw), 40px);
  margin-right: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header__inner .lead {
    font-size: calc(48 / 750 * 100vw);
    margin-right: calc(20 / 750 * 100vw);
  }
}
.adlp-accordion__header::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(calc(20 / 1080 * 100vw), 20px);
  height: min(calc(12 / 1080 * 100vw), 12px);
  right: min(calc(45 / 1080 * 100vw), 45px);
  transition: all 0.3s;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 11.5L0.47372 0.25L19.5263 0.250002L10 11.5Z' fill='%23012F83'/%3E%3C/svg%3E%0A");
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header::after {
    width: calc(28 / 750 * 100vw);
    height: calc(17 / 750 * 100vw);
    right: calc(35 / 750 * 100vw);
  }
}
.adlp-accordion__header.--open::after {
  transform: translateY(-50%) rotate(180deg);
}
.adlp-accordion__header.--open::before {
  opacity: 0;
}
.adlp-accordion__header.--plus::before {
  content: "";
  display: block;
  background-image: none;
  background: #012F83;
  position: absolute;
  height: min(calc(20 / 1080 * 100vw), 20px);
  width: min(calc(2 / 1080 * 100vw), 2px);
  right: min(calc(49 / 1080 * 100vw), 49px);
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header.--plus::before {
    height: calc(20 / 750 * 100vw);
    width: calc(2 / 750 * 100vw);
    right: calc(49 / 750 * 100vw);
  }
}
.adlp-accordion__header.--plus::after {
  width: min(calc(20 / 1080 * 100vw), 20px);
  height: min(calc(2 / 1080 * 100vw), 2px);
  right: min(calc(40 / 1080 * 100vw), 40px);
  background-image: none;
  background: #012F83;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header.--plus::after {
    width: calc(20 / 750 * 100vw);
    height: calc(2 / 750 * 100vw);
    right: calc(40 / 750 * 100vw);
  }
}
.adlp-accordion__body {
  display: none;
}
.adlp-accordion__body__inner {
  display: flex;
  align-items: flex-start;
  padding: min(calc(20 / 1080 * 100vw), 20px) min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__body__inner {
    padding: 0 calc(40 / 750 * 100vw) calc(40 / 750 * 100vw);
  }
}
.adlp-accordion__body__inner .lead {
  font-size: min(calc(40 / 1080 * 100vw), 40px);
  margin-right: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__body__inner .lead {
    margin-right: calc(20 / 750 * 100vw);
  }
}
.js-toggle {
  cursor: pointer;
}
.js-toggle + * {
  display: none;
}

.adlp-logo__wrapper {
  display: flex;
  width: min(calc(4592 / 1080 * 100vw), 4592px);
}
@media screen and (max-width: 767px) {
  .adlp-logo__wrapper {
    width: calc(4592 / 750 * 100vw);
  }
}
.adlp-logo {
  animation: infinity-scroll-left 35s infinite linear 0.5s both;
  width: min(calc(2296 / 1080 * 100vw), 2296px);
}
@media screen and (max-width: 767px) {
  .adlp-logo {
    width: calc(2296 / 750 * 100vw);
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.adlp-swiper {
  position: relative;
  padding-bottom: min(calc(50 / 1080 * 100vw), 50px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .adlp-swiper {
    padding-bottom: calc(80 / 750 * 100vw);
  }
}
.adlp-swiper.--hide {
  overflow: hidden;
}
.adlp-swiper .swiper-slide {
  padding: 0 min(calc(11 / 1080 * 100vw), 11px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-slide {
    padding: 0;
  }
}
.adlp-swiper .swiper-button-next,
.adlp-swiper .swiper-button-prev {
  width: min(calc(42 / 1080 * 100vw), 42px);
  height: min(calc(42 / 1080 * 100vw), 42px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-button-next,
  .adlp-swiper .swiper-button-prev {
    width: calc(60 / 750 * 100vw);
    height: calc(60 / 750 * 100vw);
  }
}
.adlp-swiper .swiper-button-next::after,
.adlp-swiper .swiper-button-prev::after {
  display: none;
}
.adlp-swiper .swiper-button-prev {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='30' transform='matrix(4.37114e-08 -1 -1 -4.37114e-08 60 60)' fill='%23E27A1E'/%3E%3Cpath d='M19 30L37 13L37 47L19 30Z' fill='white'/%3E%3C/svg%3E%0A");
  left: 0;
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-button-prev {
    left: calc(10 / 750 * 100vw);
  }
}
.adlp-swiper .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='30' transform='rotate(-90 30 30)' fill='%23E27A1E'/%3E%3Cpath d='M41 30L23 13L23 47L41 30Z' fill='white'/%3E%3C/svg%3E%0A");
  right: 0;
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-button-next {
    right: calc(10 / 750 * 100vw);
  }
}
.adlp-swiper {
  /* ページネーションの余白 */
}
.adlp-swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.adlp-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 min(calc(7 / 1080 * 100vw), 7px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .adlp-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 calc(10 / 750 * 100vw);
  }
}
.adlp-swiper .swiper-pagination-bullet {
  height: min(calc(14 / 1080 * 100vw), 14px);
  width: min(calc(14 / 1080 * 100vw), 14px);
  background-color: transparent;
  opacity: 1;
  border: min(calc(2 / 1080 * 100vw), 2px) solid #E27A1E;
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-pagination-bullet {
    width: calc(25 / 750 * 100vw);
    height: calc(25 / 750 * 100vw);
    border: calc(3 / 750 * 100vw) solid #E27A1E;
  }
}
.adlp-swiper .swiper-pagination-bullet-active {
  background-color: #E27A1E;
}
.adlp-swiper__wrapper {
  padding-bottom: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper__wrapper {
    width: 100%;
    padding-bottom: calc(60 / 750 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .adlp-tab__wrapper {
    width: calc(690 / 750 * 100vw);
    margin: 0 auto;
  }
}
.adlp-tab__head__wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: min(calc(2 / 1080 * 100vw), 2px);
}
@media screen and (max-width: 767px) {
  .adlp-tab__head__wrapper {
    gap: calc(3 / 750 * 100vw);
  }
}
.adlp-tab__head {
  transition: 0.5s;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: min(calc(8 / 1080 * 100vw), 8px) min(calc(8 / 1080 * 100vw), 8px) 0 0;
  background: #DDD;
  width: min(calc(306 / 1080 * 100vw), 306px);
  height: min(calc(92 / 1080 * 100vw), 92px);
}
@media screen and (max-width: 767px) {
  .adlp-tab__head {
    border-radius: calc(16 / 750 * 100vw) calc(16 / 750 * 100vw) 0 0;
    width: calc(230 / 750 * 100vw);
    height: calc(150 / 750 * 100vw);
  }
}
.adlp-tab__head.--active {
  background: #E27A1E;
  color: #fff;
}
.adlp-tab__content {
  display: none;
  border-top: min(calc(8 / 1080 * 100vw), 8px) solid #E27A1E;
  background-color: #FFEFC9;
  padding: min(calc(27 / 1080 * 100vw), 27px) 0 min(calc(50 / 1080 * 100vw), 50px);
  border-radius: 0 0 min(calc(12 / 1080 * 100vw), 12px) min(calc(12 / 1080 * 100vw), 12px);
}
@media screen and (max-width: 767px) {
  .adlp-tab__content {
    border-top: calc(10 / 750 * 100vw) solid #E27A1E;
    padding: calc(34 / 750 * 100vw) calc(30 / 750 * 100vw) calc(56 / 750 * 100vw);
  }
}
.adlp-tab__content.--active {
  display: block;
}
.adlp-tab__content.--bg {
  position: relative;
}
.adlp-tab__content.--bg:before {
  content: "";
  display: block;
  background-color: #F7F4ED;
  width: min(calc(920 / 1080 * 100vw), 920px);
  height: min(calc(164 / 1080 * 100vw), 164px);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .adlp-tab__content.--bg:before {
    width: calc(690 / 750 * 100vw);
    height: calc(220 / 750 * 100vw);
  }
}
/*# sourceMappingURL=lp.css.map */
