@charset "utf-8";
/* CSS Document */
.plan_lead p {
  letter-spacing: 0.08em;
}
.monthly_wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.monthly_wrap .monthly_block {
  margin-bottom: clamp(70px, 6vw, 80px);
}

.monthly_wrap .monthly_block:last-of-type {
  margin-bottom: 0;
}

.monthly_wrap .monthly_head {
  align-items: center;
    justify-content: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.monthly_wrap .monthly_head .entitle3 {
  letter-spacing: 0.12em;
  line-height: 1;
}

.monthly_wrap .monthly_head h3 {
  letter-spacing: 0.08em;
  font-weight: 500;
}

.monthly_wrap .price_wrap {
  gap: clamp(20px, 3vw, 30px);
    align-items: stretch;
}

.monthly_wrap .price_box {
  position: relative;
  width: calc((100% - clamp(20px, 3vw, 30px) * 3) / 4);
  border: 1px solid #d8b6d8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.45);
  padding: 32px 20px;
  text-align: center;
}

.monthly_wrap .price_box > p:first-of-type {
  margin-bottom: 22px;
  letter-spacing: 0.08em;
}

.monthly_wrap .price_box .price {
  padding-bottom: 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(216, 182, 216, 0.55);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0.08em;
  line-height: 1;
}

.monthly_wrap .price_box > p:last-child {
  letter-spacing: 0.08em;
  font-weight: 400;
}

.monthly_wrap .price_box .label {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 120px;
  padding: 6px 20px;
  border-radius: 999px;
  background: #B2935D;
}

.monthly_wrap .price_box .label p {
  color: #fff;
  line-height: 1;
}

.monthly_wrap .monthly_block .txtbox p {
  letter-spacing: 0.08em;
}

@media screen and (max-width: 1080px) {
  .monthly_wrap .price_wrap {
    flex-wrap: wrap;
  }

  .monthly_wrap .price_box {
    width: calc((100% - clamp(20px, 3vw, 30px)) / 2);
  }
}

@media screen and (max-width: 576px) {
  .monthly_wrap .monthly_head {
    flex-direction: column;
    align-items: flex-start;
  }

  .monthly_wrap .price_box {
    width: 100%;
  }
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

