@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: 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);
    top: calc(-70 / 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%3Cg clip-path='url(%23clip0_16093_1650)'%3E%3Crect x='59.7' y='59.7' width='59.4' height='59.4' rx='29.7' transform='rotate(180 59.7 59.7)' fill='white'/%3E%3Crect x='59.7' y='59.7' width='59.4' height='59.4' rx='29.7' transform='rotate(180 59.7 59.7)' stroke='%230178B0' stroke-width='0.6'/%3E%3Cpath d='M26.1815 30L32.9697 23.2118L33.8182 24.0603L27.8786 29.9999L33.8184 35.9397L32.9698 36.7882L26.1815 30Z' fill='%230178B0'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_16093_1650'%3E%3Crect width='60' height='60' fill='white' transform='matrix(1 0 0 -1 0 60)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  left: min(calc(879 / 1080 * 100vw), 879px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-button-prev {
    left: calc(450 / 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%3Cg clip-path='url(%23clip0_16093_1652)'%3E%3Crect x='0.3' y='0.3' width='59.4' height='59.4' rx='29.7' fill='white'/%3E%3Crect x='0.3' y='0.3' width='59.4' height='59.4' rx='29.7' stroke='%230178B0' stroke-width='0.6'/%3E%3Cpath d='M33.8185 30L27.0303 36.7882L26.1818 35.9397L32.1214 30.0001L26.1816 24.0603L27.0302 23.2118L33.8185 30Z' fill='%230178B0'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_16093_1652'%3E%3Crect width='60' height='60' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  left: min(calc(986 / 1080 * 100vw), 986px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-button-next {
    left: calc(610 / 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 */
