:root {
    --main-theme-color: #4B6ADA;
    --gray: #F0F0F0;
    --bg: #D9E6FF;
    --accent-color: #F5DA4A;
    --red: #D71717;
    --ft-bebas: "Bebas Neue", sans-serif;
    --bk: #252525;
}
* {
    box-sizing: border-box;
    color: var(--bk);
    font-family: "Noto Sans JP", sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    padding: 0;
}
.content-wrapper {
    background: var(--main-theme-color);
    position: relative;
}
.left-content,
.right-content {
    height: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: calc((100% - 390px) / 2);
}
.left-content {
    left: 0;
}
.right-content {
    right: 0;
}
.center-content {
    background: #fff;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0 0;
    position: relative;
    width: 100%;
}
@media screen and (min-width: 390px) {
    .center-content {
        width: 390px;
    }
}
@media screen and (max-width: 1250px) {
    .left-content,
    .right-content {
        display: none;
    }
    .center-content {
        width: 100%;
        max-width: 390px;
    }
}

.left-main,
.right-main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
    width: 100%;
}
.left-main__inner {
    margin: 0 auto;
    width: 100%;
    max-width: 315px;
}
.left-main__line {
    margin: 100px 0 0;
}
.left-main__line p {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}
.left-main__line p::before,
.left-main__line p::after {
    background: #fff;
    content: "";
    height: 24px;
    position: relative;
    width: 2px;
}
.left-main__line p::before {
    left: -10px;
    transform: rotate(-15deg);
}
.left-main__line p span {
    color: #fff;
    font-family: var(--ft-bebas);
    font-size: 36px;
    font-weight: 700;
}
.left-main__line p::after {
    right: -10px;
    transform: rotate(15deg);
}
.left-main__cta {
    margin: 10px 0 0;
}
.left-main__cta a {
    background: #06C755;
    border-radius: 50px;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 25px;
}
.left-main__cta a::before {
    background: url(../../images/lp2601/icon-line.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 44px;
    margin-right: 6px;
    width: 44px;
}
.left-main__cta a span {
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    width: calc(100% - 50px);
    max-width: max-content;
}
.right-main__inner {
    margin: 0 auto;
    width: 90%;
    max-width: 335px;
}
.right-main__inner h2 {
    color: var(--accent-color);
    font-family: var(--ft-bebas);
    font-size: 20px;
    font-weight: 700;
}
.right-main__list {
    margin: 0;
    padding: 0;
}
.right-main__list li {
    list-style: none;
    padding: 0 50px 0 0;
    position: relative;
}
.right-main__list li a {
    border-bottom: 1px dashed #fff;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 400;
    padding: 15px 0;
}
.right-main__list li:first-child a {
    font-weight: 700;
}
.right-main__list li a::after {
    background: url(../../images/lp2601/icon-arrow-d.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 6px;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 10px;
}