@charset "EUC-JP";

.light-customize-section {
  display: grid;
  grid-template-columns: 1fr auto; /* 左:テキスト、右:画像 */
  align-items: center;
  gap: 40px;
  margin-bottom: -60px;
}

.image-area img {
  display: block;
  max-width: 100%;
  height: auto;
}

.btn-text-wrap {
  margin-top: 32px;
}
.btn-blue {
  background: var(--basic-main-color);
}

.two-columns {
  gap: 80px;
  position: relative;
}

.set-plan {
  position: relative;
}
.set-plan:not(:last-child)::after {
  content: 'or';
  position: absolute;
  top: 38%;
  left: 100%;
  transform: translateX(50%) translateY(-50%);
  padding: 5px 10px;
  background-color: var(--basic-main-color);
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  z-index: 1;
}
.mg-none {
  margin: 0;
}
.set-plan-option {
  gap: 40px;
  position: relative;
  margin-top: 100px;
}
.set-plan-option::before {
  content: '+';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--basic-main-color);
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  z-index: 1;
}

@media (max-width: 768px) {
  .light-customize-section {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .image-area {
    text-align: center;
    margin-top: 20px;
  }

  .set-plan:not(:last-child)::after {
    top: 110%;
    left: 40%;
  }
  .set-plan-option::before {
    top: -80px;
  }
}
