@charset "UTF-8";
.adlp-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  z-index: 100;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.adlp-header__inner {
  max-width: min(calc(1000 / 1080 * 100vw), 1000px);
  height: min(calc(65 / 1080 * 100vw), 65px);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .adlp-header__inner {
    max-width: none;
    height: calc(100 / 750 * 100vw);
    padding: 0 0 0 calc(30 / 750 * 100vw);
  }
}
.adlp-header__logo {
  width: min(calc(133 / 1080 * 100vw), 133px);
}
@media screen and (max-width: 767px) {
  .adlp-header__logo {
    width: calc(200 / 750 * 100vw);
  }
}
.adlp-header__switch {
  width: calc(96 / 750 * 100vw);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--sub-color2, #4c4c4c);
}
@media screen and (min-width: 768px) {
  .adlp-header__switch {
    display: none;
  }
}
.adlp-header__switch__inner {
  width: calc(45 / 750 * 100vw);
  height: calc(36 / 750 * 100vw);
  position: relative;
}
.adlp-header__switch__inner span {
  background: #fff;
  position: absolute;
  width: 100%;
  height: calc(4 / 750 * 100vw);
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
  transform-origin: left;
  border-radius: calc(10 / 750 * 100vw);
}
.adlp-header__switch__inner span:nth-child(1) {
  top: 0;
}
.adlp-header__switch__inner span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.adlp-header__switch__inner span:nth-child(3) {
  bottom: 0;
}
.adlp-header__switch__inner.--open span:nth-child(1) {
  top: 45%;
  transform: rotate(45deg) translateX(-50%);
}
.adlp-header__switch__inner.--open span:nth-child(2) {
  opacity: 0;
}
.adlp-header__switch__inner.--open span:nth-child(3) {
  bottom: 45%;
  transform: rotate(-45deg) translateX(-50%);
}
.adlp-header__ctrl {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .adlp-header__tgl {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .adlp-header__tgl {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    position: absolute;
    right: 0;
    top: calc(95 / 750 * 100vw);
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: calc(160 / 750 * 100vw) calc(90 / 750 * 100vw) calc(140 / 750 * 100vw);
  }
  .adlp-header__tgl::before {
    content: "";
    inset: 0;
    position: absolute;
    display: block;
    background: linear-gradient(160deg, #292929 7.1%, #595757 95.24%);
    opacity: 0.95;
    z-index: -1;
  }
  .adlp-header__tgl.--open {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .adlp-header__menu__wrapper {
    display: flex;
    align-items: center;
    gap: min(calc(16 / 1080 * 100vw), 16px);
  }
}
@media screen and (max-width: 767px) {
  .adlp-header__menu__wrapper {
    flex-direction: column;
  }
}
.adlp-header__menu a {
  font-size: min(calc(14 / 1080 * 100vw), 14px);
  font-weight: 450;
  line-height: 1.8;
  letter-spacing: 0.14em;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .adlp-header__menu a {
    display: block;
    width: 100%;
    padding: calc(44 / 750 * 100vw) 0;
  }
}
.adlp-header__menu a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .adlp-header__menu {
    display: flex;
    align-items: center;
  }
  .adlp-header__menu:not(:last-child)::after {
    content: "";
    display: block;
    width: 1px;
    height: min(calc(14 / 1080 * 100vw), 14px);
    background-color: #dfdfdf;
    margin-left: min(calc(16 / 1080 * 100vw), 16px);
  }
}
@media screen and (max-width: 767px) {
  .adlp-header__menu::after {
    display: none;
  }
}
.adlp-header .adlp-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(calc(190 / 1080 * 100vw), 190px);
  height: min(calc(38 / 1080 * 100vw), 38px);
  background-color: #db993a;
  border-radius: min(calc(2 / 1080 * 100vw), 2px);
  text-decoration: none;
  transition: opacity 0.3s;
}
.adlp-header .adlp-btn__wrapper {
  margin-left: min(calc(27 / 1080 * 100vw), 27px);
}
@media screen and (max-width: 767px) {
  .adlp-header .adlp-btn__wrapper {
    margin-left: 0;
    margin-right: calc(40 / 750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .adlp-header .adlp-btn {
    width: calc(240 / 750 * 100vw);
    height: calc(60 / 750 * 100vw);
    border-radius: calc(4 / 750 * 100vw);
  }
}
.adlp-header .adlp-btn:hover {
  opacity: 0.8;
}
.adlp-header .adlp-btn span {
  font-family: "A P-OTF A1 Mincho StdN", "Yu Mincho", serif;
  font-size: min(calc(14 / 1080 * 100vw), 14px);
  font-weight: 550;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .adlp-header .adlp-btn span {
    font-size: calc(22 / 750 * 100vw);
  }
}

.adlp-footer {
  background-color: #fff;
  padding: min(calc(48 / 1080 * 100vw), 48px) 0;
}
@media screen and (max-width: 767px) {
  .adlp-footer {
    padding: calc(80 / 750 * 100vw) 0;
  }
}
.adlp-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(29 / 1080 * 100vw), 29px);
}
@media screen and (max-width: 767px) {
  .adlp-footer__inner {
    gap: calc(50 / 750 * 100vw);
  }
}
.adlp-footer__menu__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(calc(50 / 1080 * 100vw), 50px);
}
@media screen and (max-width: 767px) {
  .adlp-footer__menu__wrapper {
    flex-direction: column;
    gap: calc(40 / 750 * 100vw);
  }
}
.adlp-footer__menu a {
  font-family: "Yu Gothic Pr6N", "Yu Gothic", sans-serif;
  font-size: min(calc(14 / 1080 * 100vw), 14px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #333;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .adlp-footer__menu a {
    font-size: calc(24 / 750 * 100vw);
  }
}
.adlp-footer__menu a:hover {
  text-decoration: underline;
}
.adlp-footer__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(12 / 1080 * 100vw), 12px);
}
@media screen and (max-width: 767px) {
  .adlp-footer__text {
    gap: calc(22 / 750 * 100vw);
  }
}
.adlp-footer__trademark {
  font-family: "Yu Gothic Pr6N", "Yu Gothic", sans-serif;
  font-size: min(calc(14 / 1080 * 100vw), 14px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #666;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .adlp-footer__trademark {
    font-size: calc(24 / 750 * 100vw);
  }
}
.adlp-footer__copyright {
  font-family: "Yu Gothic Pr6N", "Yu Gothic", sans-serif;
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #666;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .adlp-footer__copyright {
    font-size: calc(20 / 750 * 100vw);
  }
}

.adlp-main {
  padding-top: min(calc(65 / 1080 * 100vw), 65px);
}
@media screen and (max-width: 767px) {
  .adlp-main {
    padding-top: calc(96 / 750 * 100vw);
  }
}

.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(40 / 1080 * 100vw), 40px);
}
.adlp-swiper .swiper-button-next,
.adlp-swiper .swiper-button-prev {
  width: min(calc(24 / 1080 * 100vw), 24px);
  height: min(calc(84 / 1080 * 100vw), 84px);
  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(30 / 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='24' height='84' viewBox='0 0 24 84' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='84' fill='%234A453B'/%3E%3Cpath d='M18 51L8 42L18 33' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  left: 0;
}
.adlp-swiper .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='84' viewBox='0 0 24 84' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='84' fill='%234A453B'/%3E%3Cpath d='M8 33L18 42L8 51' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  right: 0;
}
.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;
}
.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);
  }
}

.adlp-wrapper .cv01_btn {
  position: absolute;
  width: min(calc(480 / 1080 * 100vw), 480px);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .adlp-wrapper .cv01_btn {
    width: calc(630 / 750 * 100vw);
  }
}
.adlp-wrapper .fv {
  position: relative;
}
.adlp-wrapper .fv .cv01_btn {
  bottom: min(calc(111 / 1080 * 100vw), 111px);
}
@media screen and (max-width: 767px) {
  .adlp-wrapper .fv .cv01_btn {
    bottom: calc(281 / 750 * 100vw);
  }
}
.adlp-wrapper .cv01 {
  position: relative;
}
.adlp-wrapper .cv01 .cv01_btn {
  bottom: min(calc(40 / 1080 * 100vw), 40px);
  transform: translate(-45%, 0);
}
@media screen and (max-width: 767px) {
  .adlp-wrapper .cv01 .cv01_btn {
    bottom: calc(40 / 750 * 100vw);
    transform: translate(-50%, 0);
  }
}
.adlp-wrapper .secXX .adlp-accordion__wrapper {
  width: min(calc(500 / 1080 * 100vw), 500px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .adlp-wrapper .secXX .adlp-accordion__wrapper {
    width: calc(630 / 750 * 100vw);
  }
}
.adlp-wrapper .secXX .adlp-slider__wrapper {
  position: absolute;
  width: min(calc(500 / 1080 * 100vw), 500px);
  top: min(calc(150 / 1080 * 100vw), 150px);
  left: 50%;
  transform: translateX(-50%);
  background: pink;
}
@media screen and (max-width: 767px) {
  .adlp-wrapper .secXX .adlp-slider__wrapper {
    width: calc(350 / 750 * 100vw);
    top: calc(25 / 750 * 100vw);
  }
}
.adlp-wrapper .sec05 .relative {
  position: relative;
}
.adlp-wrapper .sec05__slider {
  position: absolute;
  top: min(calc(295 / 1080 * 100vw), 295px);
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(1080 / 1080 * 100vw), 1080px);
}
@media screen and (max-width: 767px) {
  .adlp-wrapper .sec05__slider {
    top: calc(333 / 750 * 100vw);
    width: 100%;
  }
}
.adlp-wrapper .sec05-swiper {
  position: relative;
  padding-bottom: min(calc(40 / 1080 * 100vw), 40px);
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .adlp-wrapper .sec05-swiper {
    padding-bottom: calc(60 / 750 * 100vw);
  }
}
.adlp-wrapper .sec05-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.adlp-wrapper .sec05-swiper .swiper-slide {
  padding: 0 min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .adlp-wrapper .sec05-swiper .swiper-slide {
    padding: 0 calc(60 / 750 * 100vw);
  }
}
.adlp-wrapper .sec05-swiper .swiper-slide picture,
.adlp-wrapper .sec05-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}
.adlp-wrapper .sec05-swiper .swiper-button-next,
.adlp-wrapper .sec05-swiper .swiper-button-prev {
  width: min(calc(66 / 1080 * 100vw), 66px);
  height: min(calc(66 / 1080 * 100vw), 66px);
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .adlp-wrapper .sec05-swiper .swiper-button-next,
  .adlp-wrapper .sec05-swiper .swiper-button-prev {
    width: calc(66 / 750 * 100vw);
    height: calc(66 / 750 * 100vw);
    top: 46%;
  }
}
.adlp-wrapper .sec05-swiper .swiper-button-next::after,
.adlp-wrapper .sec05-swiper .swiper-button-prev::after {
  display: none;
}
.adlp-wrapper .sec05-swiper .swiper-button-prev {
  background-image: url("../img/common/icon_sli_arrow.svg");
  left: min(calc(80 / 1080 * 100vw), 80px);
}
@media screen and (max-width: 767px) {
  .adlp-wrapper .sec05-swiper .swiper-button-prev {
    left: calc(30 / 750 * 100vw);
  }
}
.adlp-wrapper .sec05-swiper .swiper-button-next {
  background-image: url("../img/common/icon_sli_arrow.svg");
  transform: translateY(-50%) rotate(180deg);
  right: min(calc(80 / 1080 * 100vw), 80px);
}
@media screen and (max-width: 767px) {
  .adlp-wrapper .sec05-swiper .swiper-button-next {
    right: calc(30 / 750 * 100vw);
  }
}
.adlp-wrapper .sec05-swiper .swiper-pagination {
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(calc(24 / 1080 * 100vw), 24px);
}
@media screen and (max-width: 767px) {
  .adlp-wrapper .sec05-swiper .swiper-pagination {
    gap: calc(30 / 750 * 100vw);
  }
}
.adlp-wrapper .sec05-swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.adlp-wrapper .sec05-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}
.adlp-wrapper .sec05-swiper .swiper-pagination-bullet {
  width: min(calc(40 / 1080 * 100vw), 40px);
  height: min(calc(4 / 1080 * 100vw), 4px);
  border-radius: 0;
  background-color: #999;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .adlp-wrapper .sec05-swiper .swiper-pagination-bullet {
    width: calc(135 / 750 * 100vw);
    height: calc(7 / 750 * 100vw);
  }
}
.adlp-wrapper .sec05-swiper .swiper-pagination-bullet-active {
  background-color: #db993a;
}
.adlp-wrapper .adlp-btn:hover {
  filter: brightness(130%);
}
.adlp-wrapper .adlp-btn {
  transition: filter 0.3s;
}
.adlp-wrapper .adlp-btn.-anime01:hover,
.adlp-wrapper .adlp-btn.-anime02:hover,
.adlp-wrapper .adlp-btn.-anime03:hover {
  filter: none;
}
.adlp-wrapper .adlp-btn.-anime01,
.adlp-wrapper .adlp-btn.-anime02,
.adlp-wrapper .adlp-btn.-anime03 {
  transition: none;
}
.adlp-wrapper .adlp-btn.-anime01 a,
.adlp-wrapper .adlp-btn.-anime02 a,
.adlp-wrapper .adlp-btn.-anime03 a {
  transition: transform 0.3s;
  display: block;
}
.adlp-wrapper .adlp-btn.-anime01:hover a {
  transform: scale(1.1);
}
.adlp-wrapper .adlp-btn.-anime02:hover a {
  transform: translateY(-5px);
}
.adlp-wrapper .adlp-btn.-anime03:hover a {
  animation: adlpHoverShake 0.15s linear 3;
}

@keyframes adlpHoverShake {
  0% {
    transform: skew(0deg, 0deg);
  }
  25% {
    transform: skew(1deg, 1deg);
  }
  75% {
    transform: skew(-1deg, -1deg);
  }
  100% {
    transform: skew(0deg, 0deg);
  }
}
/*# sourceMappingURL=lp.css.map */
