@charset "UTF-8";
.adlp-accordion {
  background: #fff;
}
.adlp-accordion__wrapper {
  display: flex;
  flex-direction: column;
  gap: min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__wrapper {
    gap: calc(40 / 750 * 100vw);
  }
}
.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.--img::after {
  display: none;
}
.adlp-accordion__header.--img > span:last-child {
  display: none;
}
.adlp-accordion__header.--img.--open > span:first-child {
  display: none;
}
.adlp-accordion__header.--img.--open > span:last-child {
  display: block;
}
.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;
}

/* 上開きアコーディオンのボタン切り替えCSS */
.adlp-accordion-up__header.--img {
  cursor: pointer;
  transition: all 0.3s ease;
}

/* 初期状態：1つ目のspan（通常時のボタン）を表示、2つ目のspan（開いた時のボタン）を非表示 */
.adlp-accordion-up__header.--img span:nth-child(1) {
  display: block;
}

.adlp-accordion-up__header.--img span:nth-child(2) {
  display: none;
}

/* 開いた状態（--openクラス付与時）：1つ目のspanを非表示、2つ目のspanを表示 */
.adlp-accordion-up__header.--img.--open span:nth-child(1) {
  display: none;
}

.adlp-accordion-up__header.--img.--open span:nth-child(2) {
  display: block;
}

/* 画像の基本設定 */
.adlp-accordion-up__header.--img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ホバー効果（PC時のみ） */
@media (min-width: 768px) {
  .adlp-accordion-up__header.--img:hover {
    opacity: 0.8;
  }
}
/* アコーディオンボディの基本設定 */
.adlp-accordion-up__body {
  overflow: hidden;
}

.adlp-accordion-up__body img {
  width: 100%;
  height: auto;
  display: block;
}

/* アニメーション用のクラス（オプション） */
.adlp-accordion-up__header.--img span {
  transition: opacity 0.2s ease;
}

/* よりスムーズな切り替えを希望する場合 */
.adlp-accordion-up__header.--img.--smooth span:nth-child(1) {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.adlp-accordion-up__header.--img.--smooth span:nth-child(2) {
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.adlp-accordion-up__header.--img.--smooth.--open span:nth-child(1) {
  opacity: 0;
}

.adlp-accordion-up__header.--img.--smooth.--open span:nth-child(2) {
  opacity: 1;
}

/* スムーズ切り替え用の親要素設定 */
.adlp-accordion-up__header.--img.--smooth {
  position: relative;
}

.adlp-swiper {
  position: relative;
  width: 100%;
  /* ページネーションの余白 */
}
.adlp-swiper.--hide {
  overflow: hidden;
}
.adlp-swiper .swiper-slide {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-slide {
    padding: 0 calc(12 / 750 * 100vw);
  }
}
.adlp-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.adlp-swiper .swiper-button-next,
.adlp-swiper .swiper-button-prev {
  width: min(calc(60 / 1080 * 100vw), 60px);
  height: min(calc(60 / 1080 * 100vw), 60px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  top: auto;
  bottom: max(calc(-60 / 1080 * 100vw), -60px);
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-button-next,
  .adlp-swiper .swiper-button-prev {
    width: calc(100 / 750 * 100vw);
    height: calc(100 / 750 * 100vw);
    bottom: calc(-90 / 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='61' viewBox='0 0 60 61' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='59.2' y='59.7' width='58.4' height='58.4' rx='29.2' transform='rotate(180 59.2 59.7)' fill='%23F6F4EF'/%3E%3Crect x='59.2' y='59.7' width='58.4' height='58.4' rx='29.2' transform='rotate(180 59.2 59.7)' stroke='%23333333' stroke-width='1.6'/%3E%3Cpath d='M24.9088 30.5001L33.9598 21.4491L35.0911 22.5805L27.1716 30.5L35.0913 38.4197L33.9599 39.551L24.9088 30.5001Z' fill='%23333333'/%3E%3C/svg%3E%0A");
  left: min(calc(860 / 1080 * 100vw), 860px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-button-prev {
    left: calc(250 / 750 * 100vw);
  }
}
.adlp-swiper .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='61' viewBox='0 0 60 61' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.8' y='1.3' width='58.4' height='58.4' rx='29.2' fill='%23F6F4EF'/%3E%3Crect x='0.8' y='1.3' width='58.4' height='58.4' rx='29.2' stroke='%23333333' stroke-width='1.6'/%3E%3Cpath d='M35.0912 30.4999L26.0402 39.5509L24.9089 38.4195L32.8284 30.5L24.9087 22.5803L26.0401 21.449L35.0912 30.4999Z' fill='%23333333'/%3E%3C/svg%3E%0A");
  left: min(calc(1000 / 1080 * 100vw), 1000px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-button-next {
    left: calc(400 / 750 * 100vw);
  }
}
.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(8 / 1080 * 100vw), 8px);
}
@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(8 / 750 * 100vw);
  }
}
.adlp-swiper .swiper-pagination-bullet {
  height: min(calc(10 / 1080 * 100vw), 10px);
  width: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-pagination-bullet {
    width: calc(16 / 750 * 100vw);
    height: calc(16 / 750 * 100vw);
  }
}
.adlp-swiper .swiper-pagination-bullet-active {
  background-color: #E0BF23;
}
@media screen and (max-width: 767px) {
  .adlp-swiper__wrapper {
    width: 100%;
  }
}
/*# sourceMappingURL=lp.css.map */
