@charset "utf-8";
/* CSS Document */

/*********************************************** 
　　始めたい方、始めたばかりの方
*******************************************************/

@media screen and (max-width: 767px) {
    #beginners #page-head.cruve_top::before {
        /*background: #01A15E;*/
        /*background: linear-gradient(to bottom, #FFF 0, #4BD27D 100%);*/
    }    
    #beginners .intro {
        /*background: linear-gradient(to bottom, #FFF 0, rgba(1,161,94,.6) 60%);*/
        background: #01A15E;
        height: auto;
        position: relative;
    }    
    #beginners .intro::before {
        content: "";
        display: block;
        padding-top: 130%;
    }    
    #beginners .intro .img-block {        
        position: absolute;
        bottom: 0;
        left: 0;
    }    
    #beginners .intro .img-block img {
        mix-blend-mode: multiply;
    }    
    #beginners .intro .txt-block {
        background: linear-gradient(to bottom, #FFF 0, rgba(255,255,255,.5) 100%);
        width: 100%;
        height: 100%;
        padding: 2em 1em!important;
        position: absolute;
        top: 0;
        left: 0;
    }    
    #beginners .intro .txt-block p {
        /*color: #FFF;*/
        text-shadow: 1px 1px 3px #FFF, -1px 1px 3px #FFF, 1px -1px 3px #FFF, -1px -1px 3px #FFF;
    }
}
@media screen and (min-width: 768px) {
    #beginners .intro {
        display: flex;
        justify-content: space-between;
        max-width: 1200px;
        margin: auto;
    }
}
#beginners .intro .txt-block {
    padding: 1em;
}   
@media screen and (min-width: 768px) {
    #beginners .intro .img-block {        
        width: 50%;
    }    
    #beginners .intro .img-block img {
        border-radius: 30px;
    }    
    #beginners .intro .txt-block {
        width: 50%;
    }
}
@media screen and (max-width: 959px) {
    #beginners .intro .txt-block .s-lead {
        font-size: initial;
    }
}
@media screen and (min-width: 1200px) {
    #beginners .intro .img-block {        
        width: 60%;
    }    
    #beginners .intro .txt-block {
        width: 40%;
        display: flex;
        align-items: center;
    }
}
.bns-reason-list {
    display: grid;
    grid-row-gap: 2em;
}
@media screen and (min-width: 768px) {
    .bns-reason-list {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 2em;
        grid-row-gap: 3em;
    }
}
.bns-reason-list li {
    border-radius: 10px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    grid-row-gap: 0;
    box-shadow: 2px 2px 2px 3px rgba(0,0,0,.1);
}
@media screen and (min-width: 768px) {
    .bns-reason-list li {
    }
}
.bns-reason-list h3 {
    background: #23C35F;
    border-radius: 10px 10px 0 0;
    border: none;
    color: #FFF;    
    text-align: center;
    padding: 1em 10px;
    margin-bottom: 0;
}
@media screen and (min-width: 768px) {
    .bns-reason-list h3 {
        padding: 1em .5em;
    }
}
.bns-reason-list .ab-btm::before {
    display: none;
}
.bns-reason-list .ab-btm::after {
    background: #23C35F;
}
.bns-reason-list .txt-block {
    padding: 1em;
}


/*** レッスンのすすめ
**********************************************/

#lets-lesson {
    background: linear-gradient(rgba(1,160,95,.05), rgba(1,160,95,0.2));
}
#lets-lesson .box {
    background: #FFF;
    border-radius: 30px;    
    overflow: hidden;
    margin-bottom: 3em;
}
@media screen and (min-width: 768px) {
    #lets-lesson .box {
        position: relative;
    }    
    #lets-lesson .box.left {
        padding: 0 300px 0 1em;
    }    
    #lets-lesson .box.right {
        padding: 0 1em 0 300px;
    }
}
@media screen and (min-width: 960px) {
    #lets-lesson .box.left {
        padding: 0 600px 0 1em;
    }    
    #lets-lesson .box.right {
        padding: 0 1em 0 600px;
    }
}
#lets-lesson .box .txt-block {
    padding: 1em;
}
@media screen and (min-width: 768px) {
    #lets-lesson .box .txt-block {
        padding: 3em 0;
    }
}
#lets-lesson h3 {
    color: #01A15E;
}
#lets-lesson .box .img-block {    
    overflow: hidden;   
}
@media screen and (min-width: 768px) {
    #lets-lesson .box .img-block {
        clip-path: circle(50% at 50% 50%);
        height: 300px;
        width: 300px;
        position: absolute;
        top: -1.5rem;
    }    
    #lets-lesson .box.right .img-block {
        left: -2rem;
    }    
    #lets-lesson .box.left  .img-block {
        right: -2rem;
    }
}
@media screen and (min-width: 960px) {
    #lets-lesson .box .img-block {
        height: 600px;
        width: 600px;
        top: 50%;        
        transform: translateY(-50%);
    }    
    #lets-lesson .box.right  .img-block {
        left: -100px;
    }    
    #lets-lesson .box.left  .img-block {
        right: -100px;
    }
}
.lesson-school {
    padding: 3em 1em;
}
@media screen and (min-width: 768px) {
    .lesson-school {
        display: flex;
        align-items: center;
        max-width: 1000px;
        padding: 2em;
        margin: auto;
        position: relative;
    }
}
.lesson-school .img-block {    
    position: relative;
}
.lesson-school .img-block img {
    clip-path: circle(50% at 50% 50%);
}
.lesson-school .img-block::after {
    content: "";
    background: #23C35F;
    clip-path: circle(50% at 50% 50%);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 10px;
    z-index: -1;
}
.lesson-school .txt-block {
    padding-top: 1em;
}
@media screen and (min-width: 768px) {
    .lesson-school .img-block {
        width: 40%;
    }
    .lesson-school .txt-block {
        width: 60%;
        padding: 2em;
    }
    .lesson-school .txt-block p {
        font-size: 1.1em;
    }
}


/**********************************************
    スコアアップを目指したい方
***********************************************/

@media screen and (max-width: 767px) {
    #scoreup .intro {
        background: url("../images/scoreup/intro-img_sp.jpg") no-repeat bottom right;
        background-size: contain;
        padding-bottom: 2em;
        flex-direction: column-reverse;
    }
}
@media screen and (min-width: 768px) {
    #scoreup .intro {
        display: flex;
        justify-content: space-between;
        max-width: 1200px;
        margin: auto;
    }
}
@media screen and (max-width: 767px) {
    #scoreup .intro .txt-block {
        padding: 0 1em 1em 1em;
    }
}
@media screen and (min-width: 768px) {
    #scoreup .intro .txt-block {
        width: 50%;
        position: relative;        
    }
}
#scoreup .intro p.catch {
    color: #FFFD00;
    font-size: clamp(21px, calc(12.727272727272727px + 2.272727272727273vw), 40px);
    font-weight: bold;
    font-style: italic;
    text-shadow: 2px 2px 2px #006532, -2px 2px 2px #006532, 2px -2px 2px #006532, -1px -1px 2px #006532;
    margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
    #scoreup .intro p.catch {
        position: absolute;
        top: 10%;
        left: 10%;
        width: 200%;
        z-index: 2;
    }
}
@media screen and (max-width: 767px) {
    #scoreup .intro .txt-block p.sub {
        padding-left: 1em;
    }
}
#scoreup .intro .txt-block p.sub span {
    background: rgba(255,255,255,.7);
}
@media screen and (min-width: 768px) {
    #scoreup .intro .txt-block p.sub {
        position: absolute;
        top: 30%;
        left: 15%;
        width: 100%;
    }
}
@media screen and (max-width: 767px) {        
    #scoreup .intro .img-block {
        display: none;
    }
}
@media screen and (min-width: 768px) {
    #scoreup .intro .img-block {
        width:70%;        
    }
	#scoreup .intro .img-block img {
         border-radius: 30px;
    }
}
.su-reason-list {
    background: linear-gradient(to bottom, rgba(1,160,95,0.5), rgba(1,160,95,.1));
    padding: 2em 1em;
    position: relative;
}
@media screen and (min-width: 768px) {
    .su-reason-list {
        margin-bottom: 5em;
        padding: 4em 1em;
    }   
    .su-reason-list:nth-of-type(even) {
    background: linear-gradient(to left, rgba(1,160,95,.1), rgba(1,160,95,0.5));
	}
    .su-reason-list:nth-of-type(odd) {
        background: linear-gradient(to right, rgba(1,160,95,.1), rgba(1,160,95,0.5));
    }
}
.su-reason-list .cont-wrap {
    max-width: 1200px;
    margin: auto;
}
@media screen and (min-width: 768px) {
    .su-reason-list .cont-wrap {
        display: flex;
        justify-content: space-between;
        position: relative;
    }
}    
.su-reason-list .right-wrap {
    background: #FFF;
    border-radius: 30px;
    padding: 1em;
    margin-top: 1em;
}    
@media screen and (min-width: 768px) {
    .su-reason-list .left-wrap {
        width: 40%;
    }
    .su-reason-list .right-wrap {
        width: 58%;
        padding: 3em;
    }
}
@media screen and (min-width: 768px) {
    .su-reason-list .sticky {
        padding-top: 2em;
        position: sticky;
        top: 0;
    }
}
.su-reason-list h3 {
    color: #006532;
}
@media screen and (max-width: 767px) {
    .su-reason-list h3 {
        text-align: center;
    }
}
.su-reason-list .sticky img {
    border-radius: 30px;
}
.thumb-group {
    display: flex;
    justify-content: space-between;
    padding: 2em 0;
}
.thumb-group figure {
    width: 48%;
}
.thumb-group figcaption {
    font-size: .9em;
    padding-top: .5em;
    text-align: center;
}
.su-reason-list .point {
    background:#F4FFDF;
    border-radius: 30px;
    padding: 1em;
    margin-top: 2em;
}
.su-reason-list .point dt {
    color:#01A15E;
    font-weight: bold;
    font-size: 1.1em;
}
.su-reason-list .point dt::before {
    content: "";
    background: url("../images/common/hand.png") no-repeat center;
    background-size: contain;
    display: inline-block;
    width: 50px;
    height:50px;
    vertical-align: middle;
}
.su-reason-list .point dd {
    padding-left: 1em;
}
.su-reason-list .point li {
    padding: 0 0 1em 1em;
    text-indent: -1em;
}
.su-reason-list .point li::before {
    content: "★ ";
    color: #01A15E;
    font-weight: bold;
}
.simulator {
    display: flex;
    padding: 1em 0;
}
@media screen and (max-width: 767px) {
    .simulator {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
}
.simulator li {
    width: 50%;
    padding: 1em;
}
@media screen and (min-width: 768px) {
    .simulator li {
		width: 25%;
		padding: 5px;
	}
}
.simulator li a {
    display: block;
    font-size: .75em;
    text-align: center;
}
.simulator li img {
    clip-path: circle(50% at 50% 50%);
    display: block;
}

