@charset "utf-8";

:root {
    --white: #fff;
    --black: #121212;
    --gray: #dedede;
    --blue: #3BBBD9;
    --green: #36BCAB;
    --orange: #EF9844;
    --pink: #EC7793;
    --palegreen: #69BA59;
    --purple: #A587C7;
    --red: #EF7474;
    --brown:#6C3D18;

    --font-normal: "Noto Sans JP", sans-serif;
}

.c-reverse {
    flex-direction: column-reverse!important;
}
.reverse {
    flex-direction: row-reverse;
}



.mv {
    width: 100%;
    height: auto;
    background: var(--blue) url(../images/mv-bg.png) center bottom / auto repeat;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 40px;
}
.mv-inner {
    width: 100%;
    max-width: 1000px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 70px;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.mv-inner::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 22px solid transparent;
    border-left: 22px solid transparent;
    border-bottom: 0;
    position: absolute;
    bottom: -25px;
    border-top: 30px solid var(--white);
}
.mv-inner-top {
    width: 85%;
    display: flex;
    align-items: center;
}
.mv-text {
    width: 100%;
    background: var(--blue) url(../images/mv-text-bg.png) right 70% / 160px no-repeat;
    border-radius: 45px;
    padding: 30px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 24px;
}
.mv-text p {
    position: relative;
}
.mv-text p:first-child {
    padding-left: 20px;
}
.mv-text p:first-child::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 57px;
    top: -20px;
    left: -75px;
    background: url(../images/mv-check.svg) top center / contain no-repeat;
}
.mv-text p:last-of-type {
    font-size: 18px;
}
.mv-text span {
    background: var(--white);
    color: #299ebc;
    display: inline-block;
    padding: 0 5px 0 8px;
    font-size: 22px;
}
@media screen and (max-width: 768px) {
    .mv {
        padding: 0 12px;
        max-height: inherit;
    }
    .mv::after {
        width: 90%;
        bottom: -20px;
    }
    .mv-inner {
        margin: 16px 0 50px;
        flex-direction: column;
        padding: 20px;
        border-radius: 34px;
        gap: 10px;
    }
    .mv-inner-top {
        width: 100%;
    }
    .mv-inner::before {
        width: 20vw;
        height: 20vw;
        top: 45%;
        left: 9px;
    }    
    .mv-inner-book {
        width: 100%;
        min-width: 160px;
        display: flex;
        justify-content: center;
    }
    .mv-text {
        font-size: 18px;
    }
    .mv-text p:first-child::before {
        height: 41px;
        left: -45px;
        top: -17px;
    }
    .mv-text p:first-child {
        padding-left: 37px;
    }
    .mv-text p:last-of-type {
        font-size: 16px;
    }
    .mv-text span {
        font-size: 18px;   
    }
    .mv-text {
        text-align: center;
        border-radius: 30px;
        background: var(--blue) url(../images/mv-text-bg.png) 110% 10% / 160px no-repeat;
        padding: 24px;
    }
}

.l-content {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px;
}
.l-content.step {
    background: var(--green) url(../images/mv-bg.png) center bottom / auto repeat;
}
.l-content.type {
    background: var(--purple) url(../images/mv-bg.png) center bottom / auto repeat;
}
.l-content.prepare {
    background: var(--orange) url(../images/mv-bg.png) center bottom / auto repeat;
}
.l-content.purchase {
    flex-direction: column;
    align-items: center;
    padding-top: 70px;
    font-size: 16px;
    background: var(--pink) url(../images/mv-bg.png) center bottom / auto repeat;
}
.l-content.recommend {
    background: #FAF0B8 url(../images/mv-bg.png) center bottom / auto repeat;
}

.l-content-inner {
    width: 100%;
    max-width: 1000px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 70px;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
}
.step .l-content-inner::after {
    width: 100%;
    height: 96%;
    position: absolute;
    content: '';
    top: 80px;
    background: url(../images/step-bg.svg) bottom 100px center / auto 100% no-repeat;
    z-index: 0;
}
.l-content-inner-step {
    width: 100%;
    height: 140px;
    background: var(--orange) url(../images/step-title-bg.png) center / 100% no-repeat;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    text-align: center;
    position: relative;
    z-index: 10;
}
.l-content-inner-step.start::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 22px solid transparent;
    border-left: 22px solid transparent;
    border-top: 30px solid #f2a445;
    border-bottom: 0;
    position: absolute;
    bottom: -25px;
}
.l-content-inner-step p {
    position: relative;
}
.l-content-inner-step.start p::after {
    position: absolute;
    content: '';
    width: 155px;
    height: 192px;
    top: -55px;
    background: url(../images/step-title-img.png) top center / 155px no-repeat;
}
.l-content-inner-step.test::after {
    position: absolute;
    content: '';
    width: 260px;
    height: 150px;
    right: -30px;
    bottom: -30px;
    background: url(../images/test-img.png) top center / contain no-repeat;
}
.l-content-inner-step span {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    padding: 0 5px;
    margin-right: 5px;
}
.l-content-inner-step strong {
    font-size: 36px;
}
.l-content-inner-contents {
    width: 100%;
    display: flex;
    gap: 40px;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}
.l-content-inner-contents h3 {
    width: 100%;
    padding: 13px 0 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    text-align: center;
    position: relative;
    background: var(--pink);
}
.l-content-inner-contents h3 span {
    margin-right: 1em;
}
.l-content-inner-contents h3::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 22px solid transparent;
    border-left: 22px solid transparent;
    border-bottom: 0;
    position: absolute;
    bottom: -25px;
    border-top: 30px solid var(--pink);
}
.l-content-inner-contents.step1 h3 {
    background: var(--pink);
}
.l-content-inner-contents.step2 h3 {
    background: var(--blue);
}
.l-content-inner-contents.step3 h3 {
    background: var(--palegreen);
}
.l-content-inner-contents.step4 h3 {
    background: var(--purple);
}
.l-content-inner-contents.step5 h3 {
    background: var(--green);
}
.l-content-inner-contents.step6 h3 {
    background: var(--red);
}
.l-content-inner-contents.step1 h3::after {
    border-top: 30px solid var(--pink);
}
.l-content-inner-contents.step2 h3::after {
    border-top: 30px solid var(--blue);
}
.l-content-inner-contents.step3 h3::after {
    border-top: 30px solid var(--palegreen);
}
.l-content-inner-contents.step4 h3::after {
    border-top: 30px solid var(--purple);
}
.l-content-inner-contents.step5 h3::after {
    border-top: 30px solid var(--green);
}
.l-content-inner-contents.step6 h3::after {
    border-top: 30px solid var(--red);
}
.l-content-inner-contents img {
    max-width: 400px;
    width: 30vw;
}
.l-content-inner-contents.step1 img {
    max-width: 500px;
    min-width: 330px;
    width: 35vw;
}
.l-content-inner-text {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 18px;
    position: relative;
    gap: 20px;
}
.step1 .l-content-inner-text,
.step6 .l-content-inner-text {
    width: 100%;
    align-items: flex-start;
}
.step4 .l-content-inner-text {
    width: 90%;
    justify-content: space-around;
    align-items: flex-start;
}
.l-content-inner-memo {
    width: 360px;
    display: flex;
    flex-direction: column;
    padding: 25px 50px 25px 10px;
    border: 1px solid var(--gray);
    position: relative;
    background: var(--white) url(../images/step-text-bg02.svg) left 16px center / auto no-repeat;
}
.step1 .l-content-inner-memo {
    margin-left: -100px;
    background: var(--white) url(../images/step-text-bg01.svg) left 16px center / auto no-repeat;
    max-width: 330px;
    padding-right: 20px;
}
.l-content-inner-memo::before {
    position: absolute;
    content: '';
    width: 90px;
    height: 57px;
    top: -18px;
    left: -35px;
    background: url(../images/step1-check.svg) top center / contain no-repeat;
}
.step4 .l-content-inner-memo::after {
    position: absolute;
    content: '';
    width: 130px;
    height: 93px;
    bottom: -18px;
    right: -35px;
    background: url(../images/step4-up.png) top center / contain no-repeat;
}
.step6 .l-content-inner-memo::after {
    position: absolute;
    content: '';
    width: 130px;
    height: 90px;
    bottom: -74px;
    right: -35px;
    background: url(../images/step6-arrow.png) bottom center / 100% no-repeat;
}
.l-content-inner-memo::before {
    right: -20px;
    left: inherit;
}
.step1 .l-content-inner-memo::before {
    left: -45px;
}
.step2 .l-content-inner-memo::before {
    background: url(../images/step2-check.svg) top center / contain no-repeat;
}
.step3 .l-content-inner-memo::before {
    background: url(../images/step3-check.svg) top center / contain no-repeat;
}
.step4 .l-content-inner-memo::before {
    background: url(../images/step4-check.svg) top center / contain no-repeat;
}
.step5 .l-content-inner-memo::before {
    background: url(../images/step5-check.svg) top center / contain no-repeat;
}
.step6 .l-content-inner-memo::before {
    background: url(../images/step6-check.svg) top center / contain no-repeat;
}
.l-content-inner-memo h4 {
    margin: 0 0 0 30px;
    padding: 0 20px 0 0;
    color: var(--blue);
    font-size: 24px;
    border-bottom: 1px solid var(--gray);
}
.step1 .l-content-inner-memo h4 {
    padding-left: 1em;
}
.step3 .l-content-inner-memo h4 {
    color: var(--palegreen);
}
.step4 .l-content-inner-memo h4 {
    color: var(--purple);
}
.step5 .l-content-inner-memo h4 {
    color: var(--green);
}
.step6 .l-content-inner-memo h4 {
    color: var(--red);
}
.l-content-inner-memo p {
    margin: 0 0 0 30px;
    line-height: 1.7;
    font-size: 1rem;
    background: url(../images/note.svg) top 4px center / 100% no-repeat;
}
.step1 .l-content-inner-memo p {
    margin-left: 40px;
}
.step5 .l-content-inner-memo p {
    border-bottom: 1px solid var(--gray);
}
.l-content-inner-memo span {
    padding-bottom: 3px;
}

@media screen and (max-width: 768px) {
    .l-content {
        padding: 30px 12px;
        max-height: inherit;
    }
    .l-content-inner {
        margin: 16px 0;
        flex-direction: column;
        padding: 20px;
        border-radius: 34px;
        gap: 35px;
    }
    .l-content-inner-step {
        font-size: 18px;
        border-radius: 30px;
        padding: 20px;
        height: 130px;
        justify-content: flex-start;
        background: var(--orange) url(../images/step-title-bg.png) top 55px center / 130% repeat;
    }
    .l-content-inner-step strong {
        font-size: 24px;
    }
    .l-content-inner-step.start::after {
        left: 0;
        right: 0;
        margin: auto;
    }
    .l-content-inner-step p {
        width: 100%;
        text-align: left;
    }
    .l-content-inner-step.start p::after {
        width: 20vw;
        height: 20vh;
        top: 0;
        bottom: 0;
        right: -30px;
        margin: auto;
        background: url(../images/step-title-img.png) center / contain no-repeat;
    }
    .l-content-inner-contents h3 {
        font-size: 18px;
        display: flex;
        align-items: flex-start;
        text-align: left;
    }
    .step1 .l-content-inner-memo {
        margin: 0;
        background: var(--white) url(../images/sp-step-text-bg01.svg) left 16px center / auto no-repeat;
    }
    .step1 .l-content-inner-memo::before {
        left: -25px;
    }
    .step5 .l-content-inner-memo {
        background: var(--white) url(../images/sp-step-text-bg03.svg) left 16px center / auto no-repeat;
    }
    .l-content-inner-memo p {
        font-size: 14px;
    }
    .l-content-inner-memo::before {
        width: 76px;
        height: 48px;
    }
    .l-content-inner-text {
        width: 100%;
        flex-direction: column-reverse;
        align-items: center!important;
        font-size: 16px;
    }
    .l-content-inner-memo {
        width: 300px;
        padding: 10px 30px 15px 10px;
        background: var(--white) url(../images/sp-step-text-bg02.svg) left 16px center / auto no-repeat;
    }
    .l-content-inner-contents img {
        width: 100%;
    }
    
    .l-content-inner-contents.step1 img {
        width: 100%!important;
    }
    .l-content-inner-memo h4 {
        font-size: 18px;
        line-height: 2;
    }
    .step6 .l-content-inner-memo::after {
        width: 75px;
        height: 85px;
        bottom: -55px;
        right: 0;
        background: url(../images/sp-step6-arrow.png) bottom center / 100% no-repeat;
    }
    .l-content-inner-step.test::after {
        width: 150px;
        height: 80px;
        right: -10px;
        bottom: -10px;
    }
    .step .l-content-inner::after {
        background: url(../images/sp-step-bg.svg) bottom 100px center / auto 100% no-repeat;
    }
    .step4 .l-content-inner-text {
        width: 100%;
    }
    .step4 .l-content-inner-memo::after {
        width: 100px;
        height: 73px;
        bottom: -15px;
        right: 3px;
    }
}
@media screen and (max-width: 400px) {
    .l-content-inner-step.start p::after {
        width: 60px;
        height: 80px;
        top: 0;
        bottom: 0;
        right: -30px;
        margin: auto;
        background: url(../images/step-title-img.png) top center / contain no-repeat;
    }
}


.type h3 {
    color: var(--purple);
    position: relative;
    border-bottom: 3px solid var(--purple);
    padding-bottom: 5px;
}
.type h3::before {
    content: '';
    position: absolute;
    width: 111px;
    height: 70px;
    top: -18px;
    left: -120px;
    background: url(../images/type-check.svg) top left / contain no-repeat;
}
.type ul {
    display: flex;
    gap: 1.5rem;
}
.type ul li {
    width: calc(100% / 3);
    max-width: 300px;
    background: #F3EEF7;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 10px;
    font-size: 16px;
    font-family: var(--font-normal);
    font-weight: 500;
}
.type ul li p {
    text-align: center;
}
.type ul li img {
    max-width: 190px;
}
@media screen and (max-width: 768px) {
    .type ul {
        flex-direction: column;
    }
    .type ul li {
        width: 100%;
        max-width: 260px;
    }
    .type h3 {
        font-size: 20px;
        padding-left: 80px;
    }
    .type h3::before {
        width: 75px;
        height: 48px;
        top: 0;
        left: 0;
        background: url(../images/type-check.svg) top left / contain no-repeat;
    }
}


.prepare h3 {
    color: var(--black);
    position: relative;
    border-bottom: 3px solid var(--black);
    padding-bottom: 5px;
}
.prepare .l-content-inner {
    border-radius: 0;
    background: #EDEAE1 url(../images/prepare-bg.png) top center / 100% no-repeat;
    gap: 40px;
    position: relative;
    box-shadow: rgba(165, 124, 76, 0.35) 7px 7px 0;
}
.prepare .l-content-inner::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 70px;
    top: -18px;
    left: 0;
    right: 0;
    margin: auto;
    background: url(../images/prepare-icon.png) top center / contain no-repeat;
}
.prepare-text {
    max-width: 640px;
    padding: 30px;
    border-radius: 25px;
    background: var(--white);
    font-size: 16px;
    font-family: var(--font-normal);
    font-weight: 500;
    position: relative;
}
.prepare-text::after {
    position: absolute;
    content: '';
    left: -70px;
    right: 0;
    margin: auto;
    bottom: -30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 17px solid transparent;
    border-left: 17px solid transparent;
    border-bottom: 52px solid #ffffff;
    border-top: 0;
    transform: rotate(220deg);
}
.prepare-column-box {
    display: flex;
    gap: 20px;
}
.prepare-column-box img {
    max-width: 220px;
}
.prepare-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
}
.prepare-column h4 {
    font-size: 24px;
}
.prepare-column a button {
    width: 100%;
    background: var(--black);
    border-radius: 30px;
    padding: 12px 0;
    color: var(--white);
}
@media screen and (max-width: 768px) {
    .prepare h3 {
        font-size: 20px;
    }
    .prepare .l-content-inner {
        padding-top: 40px;
    }
    .prepare .l-content-inner::before {
        width: 36px;
        height: 50px;
    }
    .prepare-column-box {
        flex-direction: column;
        align-items: center;
    }
    .prepare-column {
        gap: 8px;
    }
}


.purchase h2 {
    color: var(--white);
    position: relative;
    font-size: 30px;
    margin-bottom: 50px;
}
.purchase h2::before {
    content: '';
    position: absolute;
    width: 38px;
    height: 34px;
    left: -10px;
    right: 0;
    margin: auto;
    top: -34px;
    background: url(../images/icon-cart.svg) top center / contain no-repeat;
}
.purchase h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 6px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -16px;
    background: var(--white);
}
.purchase p {
    font-family: var(--font-normal);
    font-weight: 500;
}
.purchase-book,
.purchase-book li {
    display: flex;
}
.purchase-book {
    gap: 60px;
}
.purchase-book li {
    flex-direction: column;
    align-items: center;
}
.purchase-book li img {
    max-width: 192px;
}
.js-scrollable table {
    margin-left: -1px;
}
.purchase table {
    width: 100%;
    font-size: 14px;
    font-family: var(--font-normal);
    font-weight: 500;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #C9C9C9;
}
.purchase table th {
    width: calc(100% / 6);
    min-width: 70px;
    color: var(--white);
    border: 1px solid #C9C9C9;
    white-space: nowrap;
    font-weight: 500;
}
.purchase table th.table-title {
    height: 50px;
}
.purchase table th span {
    font-size: 12px;
    line-height: 0.8;
}
.purchase table td {
    height: 38px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #C9C9C9;
    white-space: nowrap;
}
.purchase table th.textbook-title {
    background: #F2F2F2;
    color: var(--black);
}
.japanese-title {
    background: var(--pink);
}
.social-title {
    background: var(--orange);
}
.math-title {
    background: var(--blue);
}
.science-title {
    background: var(--palegreen);
}
.english-title {
    background: var(--purple);
}
.practical-title {
    background: var(--green);
}
.japanese {
    color: var(--pink);
}
.math {
    color: var(--blue);
}
.social {
    color: var(--orange);
}
.science {
    color: var(--palegreen);
}
.english {
    color: var(--purple);
}
.practical {
    color: var(--green);
}

.bg-arrow .l-content::before {
	content: '';
    position: absolute;
	width: 20vw;
	max-width: 74px;
    height: 100vh;
    top: 50px;
    left: 15%;
    background: url(../images/arrow-no.svg) top right / contain no-repeat;
	z-index: 50;
}
.bg-arrow .l-content::after {
	content: '';
    position: absolute;
	width: 20vw;
	max-width: 74px;
    height: 100vh;
    top: 50px;
    left: 5%;
    background: url(../images/arrow-yes.svg) top right / contain no-repeat;
	z-index: 20;
}
.bg-arrow {
    width: 100%;
    padding: 30px 12px;
    display: flex;
}
.bg-arrow > div {
	position: relative;
	z-index: 2;
	min-height: 500px;
}

.bg-arrow .l-content {
	display: flex;
	flex-direction: column;
	gap: 110px;
    padding: 0;
}
@media screen and (max-width: 768px) {
	.bg-arrow .l-content {
        width: 100%;
		gap: 80px;
        padding: 0;
        overflow: hidden;
	}
    .bg-arrow {
        padding: 30px 0;
    }
    .bg-arrow .l-content::before {
        width: 15vw;
        top: 60px;
        left: 13%;
    }
    .bg-arrow .l-content::after {
        width: 15vw;
        top: -45%;
        bottom: 0;
        margin: auto;
        height: 100%;
        left: 0;
        background: url(../images/sp-arrow-yes.svg) center / contain no-repeat;
    }
}
@media screen and (min-width: 450px) and (max-width: 768px) {
    .bg-arrow .l-content::before {
        top: 30px;
    }
}
.chart-title {
	background: #6D3D18;
	padding: 25px;
	font-size: 24px;
	color: var(--white);
	border-radius: 25px;
	position: relative;
	z-index: 100;
    text-align: center;
}
.l-chart {
	background: #e9f2f7;
	border-radius: 26px;
	padding: 25px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
    font-size: 16px;
    font-family: var(--font-normal);
    font-weight: 500;
    align-items: center;
}
.l-chart img {
    max-width: 100%;
    width: 100%;
}
.chart-no::before {
	content: '';
    position: absolute;
	width: 20vw;
    height: 20vh;
    max-width: 80px;
    max-height: 100px;
    top: -80px;
    right: 8%;
    background: url(../images/chart-no-img.png) top right / contain no-repeat;
}
.chart-yes::before {
	content: '';
    position: absolute;
	width: 15vw;
    height: 15vh;
    max-width: 70px;
    max-height: 90px;
    top: -80px;
    left: 18%;
    background: url(../images/chart-yes-img.png) top right / contain no-repeat;
}
@media screen and (max-width: 768px) {
    .chart-title {
        font-size: 20px;
    }
	.chart-no::before {
		content: none;
	}
    .chart-yes::before {
		content: none;
	}
	.l-chart.chart-yes {
        padding: 25px 0;
    }
}
.chart-no {
	z-index: 40;
}
.chart-no p:first-child,
.chart-yes p:first-child {
	content: '';
    display: flex;
    position: absolute;
    width: 300px;
    height: 105px;
    top: -30px;
    left: 50%;
    padding: 0 0 15px 60px;
    transform: translate(-40%, -50%);
    background: url(../images/chart-no.png) top left / contain no-repeat;
    align-items: center;
    color: var(--white);
    font-family: var(--font-point);
    font-size: 24px;
	font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 768px) {
	.chart-no p:first-child, .chart-yes p:first-child {
		width: 225px;
		height: 105px;
		top: -20px;
		left: 60%;
		padding: 0 0 34px 47px;
		font-size: 20px;
	}
}
.chart-yes p:first-child {
	padding: 0 0 0 70px;
    background: url(../images/chart-yes.png) top left / contain no-repeat;
}
.chart-text {
	color: var(--brown);
    font-weight: 700!important;
    font-family: inherit!important;
    font-size: 20px;
}
.c-contents__text-red {
	margin-bottom: 20px;
    color: #d43737;
}
.l-content-purchase__buttons ul {
	padding: 10px 0 10px;
}
.bnr {
	width: 60%;
}
@media screen and (max-width: 768px) {
	.chart-yes p:first-child {
		padding: 0 0 20px 60px;
	}
	.bnr {
		width: 90%;
	}
}
@media screen and (max-width: 768px) {
    .l-content-purchase-book {
		display: flex;
        flex-direction: column;
        align-items: center;
	}
}
.l-content-purchase p {
	margin-bottom: 20px;
}
.l-content-purchase img {
	margin: 0 auto;
}
.l-content-purchase__buttons {
	max-width: 600px;
	margin:  0 auto;
    display: flex;
    justify-content: center;
    font-size: 16px;
    gap: 20px;
}

	.l-content-purchase__buttons ul {
		display: flex;
		justify-content: space-evenly;
		align-items: center;
		font-size: 0.875rem;
		padding: 30px 0 10px;
        gap: 15px;
	}
	.l-content-purchase__buttons a {
		background-color: #5a2800;
		border-radius: 0.375rem;
		color: #fff;
		display: inline-block;
		font-size: 1rem;
		font-weight: 600;
		line-height: 1;
		padding: 0.75rem 0;
		text-align: center;
		width: 13rem;
		position: relative;
		box-shadow: 0 4px #BA7A4F ;
	}
	.l-content-purchase__buttons .c-contents__link a {
		background-color: #FF6754;
		border-radius: 0.375rem;
		color: #fff;
		display: inline-block;
		font-size: 12px;
		font-weight: 600;
		line-height: 1;
		padding: 0.75rem 0;
		text-align: center;
		width: 13rem;
		position: relative;
		box-shadow: 0 4px #FFAFAB;
	}
	.l-content-purchase__buttons a::after {
		content: '';
		width: 8px;
		height: 8px;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		position: absolute;
		right: 12px;
		top:0;
		bottom:0;
		margin: auto 0;
		transform: rotate(45deg);
	}
	.l-content-purchase__buttons ul li span {
		background: #ffffff;
        border-radius: 30px;
        font-size: 0.8rem;
        padding: 6px 8px;
        position: relative;
        display: flex;
        margin-bottom: 12px;
        line-height: 1.3;
        justify-content: center;
        align-items: center;
	}
	.l-content-purchase__buttons ul li span::after {
		content: '▲';
		color: #ffffff ;
		position: absolute;
		rotate: 60deg;
		bottom: -8px;
	}
	.l-content-purchase__buttons p {
		display: block;
	}
	.l-content-purchase-book {
		width: 100%;
        text-align: center;
	}
@media screen and (max-width: 768px) {
    .l-content-purchase__buttons {
        width: 95%;
        height: auto;
        flex-direction: column;
        gap: 0;
    }
    .l-content-purchase__buttons img {
        width: 120px;
    }
    .l-content-purchase__buttons ul {
        gap: 10px!important;
        padding: 0;
        margin-bottom: 10px;
    }
    .l-content-purchase__buttons ul li {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .l-content-purchase__buttons li a {
        background-color: #5a2800;
        border-radius: 0.375rem;
        color: #fff;
        display: inline-block;
        font-size: 12px;
        font-weight: 600;
        line-height: 1;
        padding: 1rem 0;
        text-align: center;
        width: 100%;
        position: relative;
        box-shadow: 0 4px #BA7A4F ;
    }
    .l-content-purchase__buttons a::after {
        right: 8px;
    }
    .l-content-purchase__buttons ul li span {
        text-align: center;
    }
}

.c-contents__link {
    display: flex;
    justify-content: center;
}


.recommend h2 {
    color: var(--brown);
    position: relative;
    font-size: 30px;
    margin-bottom: 50px;
}
.recommend h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 6px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -16px;
    background: var(--brown);
}
.recommend .l-content-inner {
    background: transparent;
    padding: 0;
}
.recommend-book-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; 
    overflow: hidden;
}
.recommend-book-title {
    font-size: 18px;
}
@media screen and (max-width: 1000px) {
    .recommend ul {
        width: 100%;
    }
    .recommend ul li {
        min-width: 280px;
        width: 100%;
    }
}




/* ---------
purchase
--------- */
.purchase {
    background: url(../images/cta-bg.png) top center / auto repeat;
    position: relative;
}
.lineup__cta-head {
    width: 100%;
    max-width: 450px;
    font-family: var(--font-point);
    color: var(--white);
    background: url(../images/title-bg.png) left top 50% / auto no-repeat, #E6605A;
    border-radius: 15px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 0 7px;
    position: relative;
    margin-top: 30px;
}
.lineup__cta-head::after {
    content: '';
    position: absolute;
    bottom: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    border-top: 15px solid #E6605A;
    border-bottom: 0;
}
.lineup__cta-head::before {
    content: '';
    position: absolute;
    width: 38px;
    height: 34px;
    top: -40px;
    background: url(../images/icon-cart.svg) top center / contain no-repeat;
}
.lineup__cta-body {
    position: relative;
}
.lineup__cta-body::before {
    content: '';
    position: absolute;
    width: 114px;
    height: 114px;
    top: 0;
    left: -40px;
    background: url(../images/cta-img01.png) top center / contain no-repeat;
}
.lineup__cta-body::after {
    content: '';
    position: absolute;
    width: 234px;
    height: 166px;
    bottom: -46px;
    right: -131px;
    background: url(../images/cta-img02.png) top center / contain no-repeat;
}
@media screen and (max-width: 768px) {
    .lineup__cta-block {
        padding: 70px 13px;
    }
    .lineup__cta-body {
        padding: 30px 15px 50px;
        border-radius: 34px;
    }
    .lineup__cta-buttons {
        margin-top: 2rem;
    }
    .lineup__cta-head {
        font-size: 20px;
    }
    .lineup__cta-body::before {
        width: 70px;
        height: 70px;
        top: -30px;
        right: 0;
        left: inherit;
    }
    .lineup__cta-body::after {
        width: 127px;
        height: 90px;
        left: -10px;
        bottom: -50px;
    }
    .cta-button {
        font-size: 14px;
    }
}


@media screen and (max-width: 768px) {
    .purchase p {
        text-align: center;
    }
    .purchase-book {
        width: 100%;
        gap: 20px;
        justify-content: center;
    }
}
.l-content-inner-table {
    width: 100%;
    display: flex;
}
.l-content-inner-table table.text-book {
    max-width: 120px;
}
.js-scrollable {
    width: 100%;
}
.scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar::-webkit-scrollbar {
    display: none;
}