@charset "utf-8";
/* CSS Document */
.pbox_wrap {
  background: #821126; /* セクション背景 */
}
.pbox_wrap .box-item {
  gap: clamp(20px, 6vw, 40px);
  padding-top: clamp(24px, 5vw, 56px);
  padding-bottom: clamp(24px, 5vw, 56px);
    max-width: 1440px;
}
.pbox_wrap .imgbox {
  position: relative;
  width: 45%;
}
.pbox_wrap .imgbox .item1 {
  width: 80%;
  aspect-ratio: 53 / 56;
  height: auto;
  object-fit: cover; /* 画像の縦横比を保ちつつ枠にフィット */
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}
.pbox_wrap .imgbox .item2 {
  position: absolute;
  left: -10%;
  bottom: -10%;
  width: auto;
  height: auto;
  max-height: 300px;
  filter: drop-shadow(0 14px 24px rgba(255, 255, 255, 0.50));
  transform: translateZ(0);
  pointer-events: none;
}

.pbox_wrap .imgbox .item2-1{
  left: -16%;
  bottom: -10%;
  max-height: 250px;
}

/* 右カラム：テキスト紙面 */
.pbox_wrap .txtbox {
  width: 50%;
  color: #ffffff; /* 文字色 */
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
  display: block;
}
.pbox_wrap .lead1 {
  letter-spacing: .08em;
}
.pbox_wrap .divider {
  margin: clamp(16px, 2.6vw, 28px) 0;
  border: 0;
  border-top: 1px solid #b85764; /* 区切り線 */
  opacity: .8;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
  .pbox_wrap .box-item {
    flex-direction: column; /* 縦並び */
    align-items: center; /* 中央寄せ */
    gap: clamp(16px, 4vw, 28px);
    padding-top: clamp(32px, 7vw, 80px);
    padding-bottom: clamp(32px, 7vw, 80px);
  }
  .pbox_wrap .imgbox, .pbox_wrap .txtbox {
    width: 100%;
  }
  .pbox_wrap .txtbox {
    padding-top: 50px;
  }
  .pbox_wrap .imgbox {
    align-items: center;
  }
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
    .pbox_wrap .imgbox .item2{
  left: -5%;
  bottom: -10%;
  max-height: 250px;
}
    .pbox_wrap .imgbox .item2-1 {
    left: -8%;
    bottom: -10%;
    max-height: 200px;
}
    
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}