@charset "utf-8";

.fv-content {
    position: absolute;
    left: 2%;
    bottom: 30px;
    z-index: 1;
}

.fv-content .fv-sns {
    display: flex;
    flex-flow: column;
    gap: 15px;
    position: relative;
    top: -105px;
    left: -8px;
    z-index: 200;
}

.fv-content .fv-sns a {
    width: 20px;
}

.scrolldown1 {
    position: absolute;
    bottom: 40px;
}

.scrolldown1 span {
    position: absolute;
    left: -21px;
    top: -35px;
    color: #44AEE5;
    font-size: 12px;
    transform: rotate(90deg);
}

/* 線の描写 */
.scrolldown1::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 30px;
    background: #44AEE5;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 1.4s ease-in-out infinite;
    opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
    0%{
        height:0;
        top:0;
        opacity: 0;
    }
    30%{
        height:30px;
        opacity: 1;
    }
    100%{
        height:0;
        top:50px;
        opacity: 0;
    }
}

@media screen and (max-width: 1250px) {
    .fv-content {
        left: 20px;
    }
}

.mainVisual {
    position: relative;
    width: 100%;
    position: relative;
}

.mainVisual::after {
    content: "";
    position: absolute;
    left: 0;
    background-color: #FEFFDE;
    width: calc(100% + 100px);
    height: 70%;
    margin-left: -100px;
    bottom: 0;
    z-index: -1;
}

.mainVisual .mv-content {
    position: relative;
}

.mainVisual .mv-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.mainVisual p {
    margin: 70px auto 80px;
    text-align: center;
    font-size: clamp(1rem, 0.682rem + 1.59vw, 1.875rem);
    line-height: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -100px;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
}

.mainVisual .mv-copy {
    width: 41vw;
    position: absolute;
    left: 40px;
    top: 30px;
}

.mainVisual .mv-copy2 {
    width: 20vw;
    position: absolute;
    left: 40px;
    bottom: 50px;
}

.mainVisual .mv-bnr {
    position: absolute;
    bottom: -50px;
    right: 40px;
    background-color: white;
    padding: 15px 15px 20px;
    box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.16);
}

.mainVisual .mv-bnr::after {
    content: "";
    background-image: url(./../img/top/mv-bnr.svg);
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.mainVisual .mv-bnr p {
    margin: 0;
    font-size: 16px;
    color: #FF8000;
    font-family: "Noto Sans JP", sans-serif;
}

.mainVisual .mv-bnr p:nth-child(2) {
    border: 1px solid #FF8000;
    margin: 5px auto;
}

.mainVisual .mv-bnr p:nth-child(3) {
    color: #060606;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.mainVisual .mv-bnr p:nth-child(3) span {
    font-size: 30px;
    line-height: 1.3;
}

.mainVisual .mv-bnr .btn {
    font-size: 15px;
    height: auto;
    padding: 5px;
    margin: 10px auto 0;
    background-color: #FF8000;
}

.mainVisual .mv-bnr .btn:after {
    content: unset;
}

.mainVisual .top-mv-set {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 100px);
    display: flex;
    flex-flow: column;
    gap: 50px;
    padding: 0 50px;
    height: 100%;
    justify-content: center;
}

.mainVisual .mv-content .top-mv-set .top-mv {
    display: flex;
    width: 47vw;
    gap: 30px;
    max-width: 570px;
    padding-left: 30px;
}

.mainVisual .mv-content .top-mv-set .top-mv img:first-child {
    max-width: 100px;
    width: 100%;
}

.mainVisual .mv-content .top-mv-set .top-mv-copy {
    display: flex;
    gap: 20px;
}

.mainVisual .mv-content .top-mv-set .top-mv-copy a {
    display: block;
    max-width: 450px;
    width: 35vw;
}

.mainVisual .mv-content .top-mv-set .top-mv-copy a img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 1000px) {
    .mainVisual .top-mv-set {
        gap: 20px;
        padding: 0 20px;
    }

    .mainVisual .mv-content .top-mv-set .top-mv {
        gap: 15px;
        padding-left: 20px;
    }

    .mainVisual .mv-content .top-mv-set .top-mv img:first-child {
        max-width: 10vw;
    }

    .mainVisual .mv-content .top-mv-set .top-mv-copy {
        gap: 10px;
    }

    .mainVisual .mv-bnr p {
        font-size: 12px;
    }

    .mainVisual .mv-bnr {
        padding: 10px 10px 17px;
        right: 30px;
        bottom: -30px;
    }

    .mainVisual .mv-bnr p:nth-child(3) span {
        font-size: 23px;
    }

    .mainVisual .mv-bnr .btn {
        font-size: 12px;
    }

    .mainVisual .mv-bnr p:nth-child(2) {
        margin: 2px auto;
    }

    .mainVisual .mv-bnr .btn {
        margin: 5px auto 0;
    }
}

@media screen and (max-width: 1250px) {
    .mainVisual .mv-bnr .btn {
        max-width: calc(100% - 30px);
    }
}

@media screen and (max-width: 767px) {
    .mainVisual .top-mv-set {
        padding: 0 10px;
        width: calc(100% - 40px);
    }

    .mainVisual .mv-img {
        object-position: right;
    }

    .mainVisual .mv-content .top-mv-set .top-mv {
        width: 62vw;
    }

    .mainVisual .mv-content .top-mv-set .top-mv-copy a {
        width: 40vw;
    }

    .mainVisual .mv-copy {
        width: 270px;
        left: -30px;
        bottom: unset;
        top: 30px;
    }

    .mainVisual .mv-copy2 {
        width: 100%;
        max-width: 180px;
        left: unset;
        bottom: 30px;
        right: 20px;
    }

    .mainVisual .mv-content {
        height: 45vw;
        min-height: 300px;
    }

    .mainVisual p {
        margin-left: -40px;
    }
}

@media screen and (max-width: 500px) {
    .mainVisual .mv-img {
        object-position: -230px;
    }
}

/* 5つの魅力 */
.charm {
    margin: 50px auto;
}

.charm .charm-header {
    margin: 0 auto;
    max-width: 350px;
}

.charm .charm-content {
    margin-top: 60px;
}

.charm .charm-content ul {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 5vw 7vw;
}

.charm .charm-content ul li {
    max-width: 320px;
    width: 100%;
}

.charm .charm-content a {
    cursor: pointer;
}

.charm .charm-content .charm-title {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.charm .charm-content .charm-title span {
    color: #44AEE5;
    font-size: 85px;
    line-height: 1;
    position: absolute;
    right: 40px;
    z-index: 100;
}

.charm .charm-content .charm-title .charm-img {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
}

.charm .charm-content .charm-title .charm-img::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 35%);
}

.charm .charm-content .charm-title .charm-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.charm .charm-content .charm-title p {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 27px;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .charm .charm-header {
        max-width: 300px;
        padding: 0 30px;
    }

    .charm .charm-content ul {
        gap: 70px;
    }

    .charm .charm-content .charm-title .charm-img {
        width: 270px;
        height: 270px;
        margin: 0 auto;
    }
}

/* レッスン紹介 */
.classes-bg {
    position: relative;
    width: 100%;
}

.classes-bg::after {
    position: absolute;
    content: "";
    background-color: #FEFFDE;
    width: 100%;
    height: 80%;
    top: 0;
    z-index: -1;
}

.classes {
    width: calc(100% - 100px);
    padding: 50px 20px 80px;
}

.classes .classes-header h2 {
    color: #F8F9CD;
    margin-left: -90px;
    font-size: 140px;
}

.classes .classes-header {
    margin-bottom: 70px;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.classes .classes-header .btn {
    background-color: #F1B02E;
}

.classes .classes-header h2:after {
    left: 90px;
    margin: 0;
    font-size: 40px;
    top: 90px;
}

.classes .classes-header p {
    width: 100%;
    color: #E58200;
    line-height: 2;
    margin-top: 30px;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
    font-size: 25px;
}

.classes .classes-content ul {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    flex-flow: wrap;
}

.classes .classes-content ul li {
    max-width: calc((100% / 2) - 25px);
    width: 100%;
    display: flex;
    flex-flow: column;
    background-color: white;
    border-radius: 20px;
    /* overflow: hidden; */
    justify-content: space-between;
    box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.16);
}

.classes .classes-content ul li .classes-img {
    width: 100%;
    height: 400px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.classes .classes-content ul li .classes-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.classes .classes-content ul li .classes-item {
    padding: 40px;
}

.classes .classes-content ul li {
    position: relative;
}

.classes .classes-content ul li .classes-title {
    background-color: #f1b02f;
    color: white;
    position: absolute;
    top: 17px;
    left: -8px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 7px 0;
    max-width: 65%;
    width: 100%;
    text-align: center;
    gap: 3px;
    font-size: 22px;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
}

.classes .classes-content ul li .classes-title span {
    color: white;
    border-top: 1px solid white;
    display: inline-block;
    width: 100%;
    padding-top: 2px;
    font-size: 16px;
}

.classes .classes-content ul li .classes-copy {
    font-size: 17px;
    font-weight: 700;
    color: #44AEE5;
    margin-bottom: 15px;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
}

.classes .classes-content ul li .classes-text {
    font-weight: 400;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
}

.classes .classes-content ul li .btn {
    max-width: calc(100% - 20px);
    width: 100%;
    margin: 20px auto 0;
    color: white;
    background-color: #F1B02E;
    border-radius: 100px;
    font-weight: 400;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    font-size: 16px;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
}

@media screen and (max-width: 1250px) {
    .classes .classes-header {
        margin-bottom: 50px;
    }

    .classes .classes-header h2 {
        margin-left: 0;
        font-size: 85px;
        padding: 0;
    }

    .classes .classes-header h2:after {
        left: 20px;
        margin: 0;
        font-size: 29px;
        top: 20%;
    }

    .classes .classes-content ul {
        gap: 35px 25px;
    }

    .classes .classes-content ul li {
        max-width: calc((100% / 2) - 13px);
    }

    .classes .classes-content ul li .classes-img {
        height: 270px;
    }
}

@media screen and (max-width: 767px) {
    .classes-bg {
        margin-top: 70px;
    }

    .classes {
        width: calc(100% - 40px);
        padding: 50px 20px;
    }

    .classes .classes-content ul {
        flex-flow: column;
    }

    .classes .classes-content ul li {
        max-width: 100%;
    }

    .classes .classes-content ul li .btn2 {
        max-width: calc(100% - 20px);
        border-radius: 0;
    }

    .classes .classes-content ul li .classes-item {
        padding: 25px;
    }

    .classes .classes-content ul li .classes-title {
        font-size: 19px;
    }

    .classes .classes-content ul li .classes-title span {
        font-size: 13px;
    }

    .classes .classes-header {
        flex-flow: column;
    }

    .classes .classes-header p {
        font-size: 18px;
    }
}

@media screen and (max-width: 450px) {
    .classes .classes-content ul li {
        max-width: 100%;
    }
}


/* レッスン紹介 */
.interview-bg {
    position: relative;
    width: 100%;
}

.interview-bg::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    background-color: #D9EBF5;
    width: calc(100% - 50px);
    border-radius: 0 60px 60px 0;
    margin-right: 50px;
    z-index: -2;
}

.interview {
    width: calc(100% - 100px);
    padding: 50px 20px 70px;
}

.interview .interview-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 70px;
    align-items: center;
}

.interview .interview-header h2 {
    color: white;
    margin-left: -90px;
    font-size: 140px;
}

.interview .interview-header h2:after {
    left: 90px;
    margin: 0;
    font-size: 40px;
    top: 90px;
}

.interview .interview-content ul {
    display: flex;
    flex-flow: wrap;
    gap: 50px;
    justify-content: flex-start;
}

.interview .interview-content ul li {
    max-width: calc((100% / 2) - 25px);
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.interview .interview-content ul li span {
    background-color: white;
    border: 2px solid #44AEE5;
    color: #44AEE5;
    max-width: 150px;
    border-radius: 30px;
    text-align: center;
    font-weight: 400;
    padding: 3px 3px;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
}

.interview .interview-content ul li .interview-img {
    width: 100%;
    height: 400px;
    position: relative;
    margin-bottom: 10px;
}

.interview .interview-content ul li .interview-img img {
    border-radius: 10px;
}

.interview .interview-content ul li .interview-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #44AEE5;
    left: 0;
    top: 10px;
    border-radius: 10px;
    z-index: -1;
}

.interview .interview-content ul li .interview-img img {
    object-fit: cover;
    width: calc(100% - 10px);
    height: 100%;
}

.interview .interview-content ul li .interview-title {
    font-size: 25px;
    font-weight: 400;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
}

.interview .interview-content ul li .interview-text {
    font-weight: 400;
}

@media screen and (max-width: 1250px) {
    .interview .interview-header {
        margin-bottom: 50px;
    }

    .interview .interview-header h2 {
        margin-left: 0;
        font-size: 85px;
        padding: 0;
    }

    .interview .interview-header h2:after {
        left: 20px;
        margin: 0;
        font-size: 29px;
        top: 20%;
    }
}

@media screen and (max-width: 767px) {
    .interview-bg::after {
        width: 100%;
        margin-right: 30px;
    }

    .interview {
        width: calc(100% - 40px);
    }

    .interview .interview-content ul {
        flex-flow: column;
    }

    .interview .interview-content ul li {
        max-width: 100%;
    }

    .interview .interview-content .btn {
        margin: 50px auto 0;
        display: flex!important;
        max-width: 200px;
    }

    .interview .interview-content .btn::after {
        top: 0;
        bottom: 0;
        margin: auto;
    }
}

@media screen and (max-width: 450px) {
    .interview .interview-content ul li {
        width: 100%;
    }
    
    .interview .interview-header h2 {
        font-size: 72px;
    }
}


/* お知らせ */
.news {
    width: calc(100% - 100px);
    padding: 50px 20px 80px;
}

.news .news-header h2 {
    color: #D9EBF5;
    margin-left: -90px;
    font-size: 140px;
}

.news .news-header {
    margin-bottom: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news .news-header h2:after {
    left: 90px;
    margin: 0;
    font-size: 40px;
    top: 60px;
}

.news .news-header p {
    width: 100%;
    color: #E58200;
    line-height: 2;
    margin-top: 30px;
}

.news .news-content ul {
    display: flex;
    justify-content: flex-start;
    gap: 50px 20px;
    flex-flow: wrap;
}

.news .news-content ul li {
    max-width: calc((100% / 4) - 15px);
    width: 100%;
    display: flex;
    flex-flow: column;
}

.news .news-content ul li .news-img {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
}

.news .news-content ul li .news-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.news .news-content ul li .news-title {
    color: #44AEE5;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.news .news-content ul li .news-title span {
    color: white;
    border-top: 1px solid white;
    display: inline-block;
    width: 100%;
    padding-top: 3px;
    font-size: 16px;
}

.news .news-content ul li .news-date {
    margin-bottom: 5px;
    font-weight: 500;
}

.news .news-content ul li .news-copy {
    font-size: 17px;
    font-weight: 700;
    color: #44AEE5;
    margin-bottom: 15px;
}

.news .news-content ul li .news-text {
    font-weight: 400;
}

.news .news-content ul li .btn {
    max-width: calc(100% - 100px);
    width: 100%;
    margin: 20px auto 0;
    color: #44AEE5;
    border: 1.5px solid #44AEE5;
    background-color: white;
    border-radius: 100px;
    font-weight: 400;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    font-size: 16px;
}

.news .news-content ul li .btn::after {
    content: unset;
}

@media screen and (max-width: 1250px) {
    .news .news-header {
        margin-bottom: 50px;
    }

    .news .news-header h2 {
        margin-left: 0;
        font-size: 85px;
        padding: 0;
    }

    .news .news-header h2:after {
        left: 20px;
        margin: 0;
        font-size: 29px;
        top: 20%;
    }

    .news .news-content ul li {
        max-width: calc((100% / 2) - 10px);
    }

    .news .news-content ul li .news-img {
        height: 250px;
    }
}

@media screen and (max-width: 767px) {
    .news-bg {
        margin-top: 70px;
    }

    .news {
        width: calc(100% - 40px);
        padding: 50px 20px;
    }

    .news .news-content ul {
        flex-flow: column;
    }

    .news .news-content ul li {
        max-width: 100%;
    }

    .news .news-content ul li .btn2 {
        max-width: calc(100% - 20px);
        border-radius: 0;
    }

    .news .news-content ul li .news-title {
        font-size: 19px;
    }

    .news .news-content ul li .news-title span {
        font-size: 13px;
    }

    .news .news-content ul li .news-img {
        height: auto;
    }

    .news .news-content .sp.btn {
        margin: 40px auto 0;
        display: flex !important;
        max-width: calc(100% - 40px);
    }    
}



/* プロフィール */
.profile-bg {
    position: relative;
    width: 100%;
}

.profile-bg::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    background-color: #f1b02f;
    width: 100%;
    z-index: -1;
}

.profile {
    width: calc(100% - 100px);
    padding: 50px 20px 70px;
}

.profile .profile-content {
    position: relative;
    padding: 70px 0;
}

.profile .profile-content::before, .profile .profile-content::after {
    position: absolute;
    content: "";
    width: 350px;
    height: 330px;
    background-size: contain;
    background-repeat: no-repeat;
}

.profile .profile-content::before {
    background-image: url(./../img/top/profile-bg01.svg);
    right: -70px;
    top: -30px;
}

.profile .profile-content::after {
    background-image: url(./../img/top/profile-bg02.svg);
    bottom: -70px;
    left: -150px;
}

.profile .profile-content .profile-head {
    display: flex;
    gap: 20px;
    position: relative;
    flex-flow: wrap;
    justify-content: center;
}

.profile .profile-content .profile-head .profile-teacher {
    display: flex;
    gap: 70px;
}

.profile .profile-content .profile-head img {
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
}

.profile .profile-content .profile-head .profile-name, .profile .profile-content .profile-head p {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
    line-height: 2;
    text-align: center;
}

.profile .profile-content .profile-head .profile-name {
    font-size: 30px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.profile .profile-content .profile-career {
    width: calc(100% - 80px);
    background-color: white;
    margin-top: 40px;
    padding: 40px;
}

.profile .profile-content .profile-career table tr th {
    font-weight: 700;
    width: 250px;
    text-align: left;
}

.profile .profile-content .profile-career table tr th, .profile .profile-content .profile-career table tr td {
    padding: 20px;
}

@media screen and (max-width: 767px) {
    .profile {
        width: calc(100% - 40px);
    }

    .profile .profile-content {
        padding: 50px 0;
    }

    .profile .profile-content .profile-head {
        position: relative;
        flex-flow: column;
        gap: 20px;
    }

    .profile .profile-content::before, .profile .profile-content::after {
        width: 240px;
        height: 220px;
    }

    .profile .profile-content::before {
        top: -90px;
    }

    .profile .profile-content::after {
        left: -70px;
    }

    .profile .profile-content .profile-head div {
        text-align: center;
    }

    .profile .profile-content .profile-head div img {
        width: 100%;
    }

    .profile .profile-content .profile-career {
        width: calc(100% - 40px);
        padding: 20px;
    }

    .profile .profile-content .profile-career table tr th, .profile .profile-content .profile-career table tr td {
        display: block;
        padding: 10px;
        width: calc(100% - 20px);
    }

    .profile .profile-content .profile-career table tr th {
        padding-bottom: 0;
    }

    .profile .profile-content .profile-head .profile-name {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .profile .profile-content .profile-head .profile-teacher {
        gap: 20px;
    }    
}

@media screen and (max-width: 450px) {
    .profile .profile-content ul li {
        width: 100%;
    }
}


/* コラム */
.column {
    width: calc(100% - 100px);
    padding: 50px 20px 80px;
}

.column .column-header h2 {
    color: #fbfadb;
    margin-left: -90px;
    font-size: 140px;
}

.column .column-header {
    margin-bottom: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.column .column-header h2:after {
    left: 90px;
    margin: 0;
    font-size: 40px;
    top: 60px;
}

.column .column-header p {
    width: 100%;
    color: #E58200;
    line-height: 2;
    margin-top: 30px;
}

.column .column-header .btn {
    background-color: #e5b23d;
}

.column .column-content ul {
    display: flex;
    gap: 10px;
    flex-flow: column;
}

.column .column-content ul li {
    border-bottom: 1px dotted #9d9d9e;
    padding: 0px 20px 10px;
}

.column .column-content ul li a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 3vw;
}

.column .column-content ul li .column-title {
    font-size: 18px;
    max-width: 160px;
    width: 100%;
}

.column .column-content ul li .column-date {
    font-weight: 500;
    color: #44AEE5;
}

.column .column-content ul li .title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 15px;
}

.column .column-content ul li .column-text {
    font-weight: 400;
}

@media screen and (max-width: 1250px) {
    .column .column-header {
        margin-bottom: 50px;
    }

    .column .column-header h2 {
        margin-left: 0;
        font-size: 85px;
        padding: 0;
    }

    .column .column-header h2:after {
        left: 20px;
        margin: 0;
        font-size: 29px;
        top: 20%;
    }

    .column .column-content ul li {
        padding: 10px 10px 20px;
        gap: 0;
    }
}

@media screen and (max-width: 767px) {
    .column {
        width: calc(100% - 40px);
        padding: 50px 20px;
    }

    .column .column-content ul li a {
        flex-flow: column;
        align-items: baseline;
        gap: 5px;
    }

    .column .column-content ul li .column-title {
        font-size: 19px;
        max-width: 100%;
    }

    .column .column-content .btn {
        margin: 50px auto 10px;
        text-align: center;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background-color: #e5b23d;
    }
}

.sp-price {
    width: 367px;
}

@media screen and (max-width: 767px) {
    .sp-price {
        width: 100%;
    }
}