body{
    background-color:#B3D2E4;
    margin: 0;
}

.main-content{
    width:100%;
    min-width:375px;
    max-width:430px;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0px 0px 18px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.side-content,
.pc-header{
  display: none;
}

.kari{
    width:100%;
}

@media (min-width: 1024px) {
  .lp-container {
    display: grid;
    grid-template-columns: 1fr 430px 1fr;
    align-items: stretch;
    gap: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }

  .main-content {
    width: 100%;
  }

  .side-content {
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    display: block;
    z-index: 1;
    width: 100%;
  }

  .pc-header {
    display: block;
    position: sticky;
    z-index: 1000;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 80px;
    top: 0;
  }

  .pc-header header {
    width: 95%;
    display: block;
    margin: 0 auto;
  }

  .pc-header img {
    width: 150px;
  }

  .left-side {
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    height:100vh;
    max-height:1100px;
  }

  .side-image {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    height: 100vh;
    max-height:1100px;
    flex-direction: column;
    justify-content: space-around;
  }

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

  .side-woman-container {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    padding-right: 40px;
  }

  .side-woman-text {
    position: absolute;
    display: block;
    right: 10px;
    top: 0;
    text-align: center;
    z-index: 1;
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
  }

  .side-woman-text::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 9999px;
    display: block;
    z-index: -1;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 40px 20px rgba(255, 255, 255, 0.9);
  }

  .right-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 0;
  }

    .right-side ul{
        padding-left:40px;
        width:350px;
    }

  .right-side li {
    list-style: none;
    padding-bottom: 5px;
  }

  .toc a {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    color: #007DCA;
    font-size: 21px;
  }

  .right-cta {
    display: block;
    width: 95%;
    margin: 20px auto;
    padding: 20px 0;
    font-size: 26px !important;
    text-align: center;
    background-color: #007DCA;
    color: #fff !important;
    border-radius: 9999px;
    position: relative;
    text-decoration: none;
  }

  .right-cta i {
    opacity: 0.7;
    font-size: 24px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px;
    transform: rotate(15deg);
    margin: auto;
    width: fit-content;
    height: fit-content;
  }
}