/* ヘッダーとナビゲーション */
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  margin: auto;
}
.l-header__nav {
  width: 20%;
}
.l-header__logo {
  width: 45%;
}
/* 背景色 */
.bg_f {
  background: #ffffff;
}
.bg_g {
  background: #848484;
}
.bg_lb {
  background: #61c0ed;
}
.bg_bk {
  background: #110f0d;
}
.bg_b {
  background: #0068b7;
}
.bg_y {
  background: #ffffff;
}
.bg_r {
  background: #e62318;
}

/* レイアウト */
.warp {
  max-width: 1320px;
  margin: 0 auto;
}
img {
  max-width: 100%;
}
.p-section__item img {
  display: block;
  margin: auto;
}
/* フッター */
footer {
  padding: 50px 5px 90px;
}
footer img {
  margin: auto;
  width: 30%;
}
/* CVボタンセクション */
.cv_section-btn {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 5px;
  margin: 10px;
}
.cv_section-btn a {
  display: inline-block;
  transition: transform 0.3s ease;
}
.cv_section-btn img {
  display: block;
  width: 100%;
  height: auto;
}
.cv_section-btn a:hover {
  transform: scale(1.05);
}
/* SPのCVボタン */
.sp-cv {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1000;
  transition: opacity 0.3s ease;
  gap: 10px;
}
.sp-cv a {
  flex: 1;
  margin: 0 5px;
}
.sp-cv img {
  width: 100%;
  height: auto;
}
/* PCのCVボタン */
.pc-cv {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
}
.cv_section-btn2.floatingBnr {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.cv_section-btn2.floatingBnr a {
  display: block;
  transition: opacity 0.3s ease;
}
.cv_section-btn2.floatingBnr a:hover {
  opacity: 0.8;
}
.cv_section-btn2.floatingBnr img {
  display: block;
}
/* 画像コンテナとオーバーレイ */
.image-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-bottom: -10px;
}
.image-container img {
  display: block;
  width: 100%;
  height: auto;
}

.image-container img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}

.image-container img:nth-child(3) {
  position: absolute;
  top: 24%;
  left: 0;
  opacity: 1;
}

.shine img:not(:nth-child(1)) {
  position: absolute;
  left: 0;
  opacity: 1;
}

.shine img:nth-child(2) {
  top: 0%;
}

.shine img:nth-child(3) {
  top: 10.25%;
}

.shine img:nth-child(4) {
  top: 23.6%;
}

.shine img:nth-child(5) {
  top: 37.25%;
}

.shine img:nth-child(6) {
  top: 50.8%;
}

.shine img:nth-child(7) {
  top: 64.2%;
}

.shine img:nth-child(8) {
  top: 78.05%;
}

/* オリジナルCP - ボタン */
/* 購入支援CP - ボタン */
.image-container .btn-2CP,
.image-container .btn-3CP {
  position: absolute;
  top: 78%;
  left: 0;
  opacity: 1;
  transform: scale(0.95);
}

.campaign-area {
  text-align: center;
  max-width: 1320px;
  margin: 0 auto;
}

[class*="campaign0"] {
  padding: 20px 10px;
  max-width: 1240px;
}

.campaign01 {
  padding-top: 40px;
}

.campaign04 {
  padding-bottom: 40px;
}

/* アニメーション */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  70% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes popIn3 {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  70% {
    opacity: 1;
    transform: scale(1.06);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  @keyframes popIn3 {
    0% {
      opacity: 0;
      transform: scale(0.9);
    }
    70% {
      opacity: 1;
      transform: scale(1.1);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
}

.pop-animation-2 {
  animation: popIn 1.5s ease-in-out forwards;
}
.pop-animation-2 {
  animation: popIn 1s ease-out forwards;
}

.pop-animation-3 {
  animation: popIn3 2s ease-in-out forwards;
}
.pop-animation-3 {
  animation: popIn3 1s ease-out forwards;
}

/* メディアクエリ */
@media screen and (max-width: 767px) {
  [class*="campaign0"] {
    padding: 10px;
  }
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp-cv,
  .is-sp {
    display: none;
  }
  .pc-cv,
  .is-pc {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .l-header__logo {
    width: 20%;
  }
  .cv_section-btn {
    padding: 10px 50px;
  }
  footer {
    padding: 50px 5px;
  }
  footer img {
    width: 10%;
  }
}
