@charset "utf-8";

html{
    font-size: 100%;
}


body{
    color: #333;
    font-size: 16px;
    font-family: "ヒラギノ角ゴ Pro-600 W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
    line-height: 1.6;
    letter-spacing: 1.5px;
    box-sizing: border-box;
}

.sp-only{
    display: none;
}

li{
    list-style: none;
}

a{
    text-decoration: none;   
}

img{
    vertical-align: bottom;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}


/* header */
.header{
    width: 100%;
    height: 75px;
    background-color: #fff;
    position: fixed;
    z-index: 100;
    display: flex;    
}

.header .inner{
    width: 1170px;
    margin: 0 auto;
    display: flex;
    padding-left: 2%;
}

.inner img {
    width: 130px;
    height: 45px;
    position: relative;
    top: 25px;
}

.header .logo{
    position: relative;
    top: 45px;
}

.btn-pc{
    background-color: #da6b64;
    border-radius: 30px;
    margin: 10px;
    line-height: 55px;
    width: 410px;
    text-align: center;
}

.btn-pc a{
    display: block;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.btn-sp{
    display: none;
}


.btn-pc:hover{
    background-color: #d84940;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .inner img {
        top: 23px;
    }

    .header .logo {
        font-size: 12px;
        top: 47px;
    }

    .btn-pc a {
        font-size: 12px;
        letter-spacing: 0;
    }

    .btn-pc p{
        text-align: center;
    }
    
    
}


@media screen and (max-width:768px){
    .sp-only{
        display: block;
    }

    .pc-only{
        display: none;
    }

    .header{
        height: 60px;
    }

    .header .inner{
        height: 100%;
        padding: 1.3%;
        flex-direction: column-reverse;

    }
    
    .inner img {
        width: 80px;
        height: 28px;
        top: 2px;
    }
    
    .header .logo {
        top: 0;
        font-size: 10px;
    }

    .btn-pc{
        display: none;
    }

    .btn-sp{
        display: block;
        width: 75px;
        height: 60px;
        background-color: #da6b64;
        text-align: center;
        position: absolute;
        top: 0;
        right: 0;
    }

    .btn-sp img{
        width: 20px;
        vertical-align: bottom;
    }

    .btn-sp a{
        box-sizing: border-box;
        display: block;
        height: 100%;
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        padding: 6px;
    }

    .btn-sp a:hover{
        text-decoration: underline;
    }  
}

@media screen and (max-width:375px){
    .btn-sp a {
        font-size: 11px;
        padding: 9px;
    }
}





/* key-visual */
.key-visual{
    background-image: url(../image/main.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    width: 100%;
    text-align: center;
    display: table;
    
}

.key-visual_ttl{
     display: table-cell;
    vertical-align: middle;
}

.key-visual_ttl h2 p{
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 2em;
}

.key-visual_ttl img{
    width: 310px;
    margin-bottom: 20px;
}

.key-visual_ttl .key-text{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .key-visual_ttl h2 p {
        font-size: 24px;
    }
    
    .key-visual_ttl .key-text {
        font-size: 18px;
    }
    
    .key-visual_ttl img {
        width: 290px;
    }
}

@media screen and (max-width:768px){
    .key-visual_ttl h2 p{
        font-size: 18px;
    }

    .key-visual_ttl .key-text{
        font-size: 15px;
    }

    .key-visual{
        height: 312px;
        background-image: url(../image/mainsp.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .key-visual_ttl h2 p{
        margin-bottom: 0;
    }

    .key-visual_ttl img{
        margin: 10px 0 20px;
        width: 220px;
    }

    .key-visual_ttl .key-text{
        line-height: 1.2;
    }

}

@media screen and (max-width:375px){
    .key-visual {
        height: auto;
        padding: 30px 0;
    }

    .key-visual_ttl h2 p {
        font-size: 16px;
    }
    
    .key-visual_ttl img {
        width: 200px;
    }
    
    .key-visual_ttl .key-text {
        font-size: 13px;
    }
}



/* main */
.main{
    padding-top: 75px;
}


/* sec01 */
.sec01 {
    background-color: #ebb94d;
    color: #fff;
    text-align: center;
    height: 610px;
    padding: 30px 15px;
    box-sizing: border-box;
}

.sec01 h3{
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 18px;
}

.sec01 .sec01-red{
    background-color: #f9f2f4;
    color: #c7254e;
    font-size: 18px;
    font-weight: bold;
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
    padding: 2px 4px;
    border-radius: 4px;
    margin: 12px 0;
    
}

.sec-btn{
    background-color: #da6b64;
    border-radius: 50px;
    cursor: pointer;
    margin: 45px auto;
    max-width: 1028px;

}

.sec01 .sec-btn a{
    display: block;
    padding: 30px 120px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.sec01 .sec-btn:hover{
    background-color: #d84940;
}


.sec01 ul li{
    font-size: 21px;
    font-weight: bold;
    margin-top: 40px;
}

@media screen and (max-width:1170px) and (min-width:768px){    
.sec-btn {
    width: 85%;
    margin: 30px auto;
}

.sec01{
    height: auto;
    padding-bottom: 60px;
}


.sec01 .sec-btn a {
    font-size: 22px;
    padding: 25px 0;

    }   

    .sec01 ul li {
        font-size: 20px;
    }
}


@media screen and (max-width:768px){
    .main{
        padding-top: 60px;
    }
    
    .sec-btn{
        margin: 20px auto 15px;
    }

    .sec01{
        height: auto;
        padding-bottom: 50px;
    }

    .sec01 .sec-btn a{
        padding: 15px 22px;
        font-size: 20px;
    }

    .sec01 h3{
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 10px;
    }
    
    .sec01 .sec01-red{
        font-size: 80%;
    }

    .sec01 ul li{
        font-size: 12.6px;
        margin-top: 30px;
    }
}

@media screen and (max-width:375px){
    .sec01 .sec01-red {
        font-size: 60%;
    }
    
    .sec01 .sec-btn a {
        font-size: 17px;
    }
    
    .sec01 ul li {
        font-size: 10px;
    }
}

/* sec02 */
.sec02{
    background-image: url(../image/introbottom.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 588px;
    padding-top: 40px;
    text-align: center;
}

/* ----------------------------- */
.section-title{
    padding: 15px 0;
    display: inline-block;
    width: 860px;
    position: relative;
}

.section-title::before{
    border-top: solid 4px #ebb94d;
    border-left: solid 4px #ebb94d;
    top: 0;
    left: 0;
}

.section-title ::after{
    border-bottom: solid 4px #ebb94d;
    border-right: solid 4px #ebb94d;
    bottom: 0;
    right: 0;
}

.section-title::before,
.section-title ::after{
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;

}

.section-title .title{
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0 10px;
    line-height: 40px;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .section-title {
        width: 90%;
        padding: 10px 0;
    }

    .section-title .title {
        font-size: 24px;
    }
}

@media screen and (max-width:768px){
    .sec02{
        height: inherit;
        padding: 30px 0;
        background-size: contain;
        background-position: center bottom;
    }

    .section-title{
        width: 95%;
        padding:0;
    } 
    
    .section-title::before,
    .section-title ::after{
        width: 30px;
        height: 30px;
    
    }
    
    .section-title .title{
        font-size: 18px;
        margin: 10px;
        line-height: 35px;
    }
    
}

@media screen and (max-width:375px){
    .section-title .title {
        font-size: 16px;
        line-height: 30px;
    }
}


/* ------------------------------ */

.sec02-text{
    padding: 40px 0;
}

.sec02-text p{
    font-size: 20px;
    margin-bottom: 28px;
}

.sec02-text p .under{
    font-weight: bold;
    background: linear-gradient(transparent 70%, #ebb94d 70%);
}

@media screen and (max-width:1170px) and (min-width:768px){
    .sec02-text p {
        font-size: 18px;
    }
}

@media screen and (max-width:768px){
    .sec02-text p{
        font-size: 15px;
    }

}

@media screen and (max-width:375px){
    .sec02-text p {
        font-size: 13px;
    }
}




/* sec03 */
.sec03{
    background-color: #fef5e0;
    text-align: center;
    padding-bottom: 40px;

}

.sec03 .about-title{
    position: relative;
    top: -40px;
}

.sec03 .maru{
    display: inline-block;
    color: #fff;
    background-color: #ebb94d;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;    
}

.sec03 .text{
    font-size: 20px;
    font-weight: bold;
    margin: 40px 0 10px;
}

.about-skill{
    max-width: calc(100% - 40px);
    width: 1170px;
    margin:30px auto;
    padding: 30px;
    background-color: #fff;
    border: solid 2px #ebb94d;
    border-radius: 5px;
}

.about-skill p{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;

}


.box{
    display: inline-block;
    padding: 10px;
}

.box .box-text{
    font-size: 12px;
    font-weight: normal;
    margin: 10px 0;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .sec03 .maru {
        font-size: 14px;
    }
    
    .sec03 .text {
        font-size: 18px;
        margin-top: 30px;
    }
    
    .about-skill p {
        font-size: 18px;
    }
}


@media screen and (max-width:768px){
    .sec03 .about-title {
        top: -30px;
    }

    .sec03 .maru{
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 12px;   
    }

    .sec03 .text{
        font-size: 15px;
        margin: 20px 0;
    }

    .about-skill{
        padding: 10px;
    }
    
    .about-skill p{
        font-size: 15px;
        }
     
    .box{
        padding: 5px;
    }

    .box img{
        height: 30px;
    }
    
    .box .box-text{
        font-size: 10px;
    }
}

@media screen and (max-width:375px){
    .sec03 .maru {
        font-size: 10px;
    }

    .sec03 .text {
        font-size: 13px;
    }
    
    .about-skill p {
        font-size: 13px;
    }}



/* sec04 */
.sec04{
    background-image: url(../image/aboutsecondbg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 443px;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.section-title2{
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0;
}

.sec04 .sec04-tx{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.sec04 .sec04-tx span{
    color: #ebb94d;
}
/*  */
.step{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 30px;
}

.step-box{
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    margin: 10px;
    padding: 30px 30px;
    width: 33.333%;
}

.step-title{
    background-color: #ebb94d;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
}

.step-text1{
    font-size: 14px;
    font-weight: bold;
    margin-top: 33px;
}

.step-text2{
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}
/*  */

.blue{
    background-color: #016ea9;
    height: 140px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 40px 0;
}

.blue p span{
    color: #ebb94d;

}

@media screen and (max-width:1170px) and (min-width:768px){
    .sec04{
        background-image: url(../image/aboutsecondbgsp.jpg);
        height: auto;
        padding: 30px 10px;
    }

    .section-title2 {
        font-size: 24px;
        margin: 30px 0;
    }
    
    .sec04 .sec04-tx {
        font-size: 18px;
    }

    .step{
        flex-direction: column;
        margin: 35px 0;
        padding: 0 20px;
    }

    .step-box {
        width: 50%;
    }

}


@media screen and (max-width:768px){
    .sec04{
        background-image: url(../image/aboutsecondbgsp.jpg);
        height: auto;
        padding: 20px 10px;
    }
    

    .section-title2{
        font-size: 18px;
    }
    
    .sec04 .sec04-tx{
        font-size: 13px;
        font-weight: normal;
    }
    
    .step{
        flex-direction: column;
        padding: 0 20px;
    }

    .step-box {
        width: 100%;
        margin: 7px;
        padding: 15px;
    }

    .step-title{
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .step-text{
        font-size: 12px;
    }

    .step-text1 {
        margin-top: 10px;
    }

    .step-text2 {
        margin-top: 10px;
    }
    

    .blue{
        height: 95px;
        font-size: 12px;
        padding: 20px 0;
    }    
}

@media screen and (max-width:375px){
    .sec04 .section-title2 {
        font-size: 16px;
    }
}




/* sec05 */
.sec05{
    margin: 0 auto;
    padding: 45px 0 60px ;
    text-align: center;
    background-color: #fff;
}

.section-title2 span{
    font-size: 16px;
}

.sec05 p{
    font-size: 20px;
    margin-top: 40px;
}

.sec05-list {
    width: 80%;
    margin: 0 auto;
}
.sec05-img{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.sec05-img img{
    width: 178px;
}

.sec05 .txt{
    font-size: 16px;
    font-weight: bold;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .sec05 p {
        font-size: 18px;
        margin-top: 35px;
    }
        
    .sec05-img img {
        width: 90%;
        padding: 0 5%;
    }

    .sec05 .txt {
        font-size: 14px;
    }

}

@media screen and (max-width:768px){
    .sec05{
        padding: 30px 0 ;
    }

    .sec05 p{
        font-size: 15px;
        margin-top: 0;
        margin-bottom: 10px;
    }  
    
    .sec05-img {
        margin-top: 20px;
    }

    .sec05-img img {
        width: 90%;
    }


    .sec05 .txt{
        margin-top: 15px;
        font-size: 12px;
    }
}

@media screen and (max-width:375px){
    .sec05 p {
        font-size: 13px;
    }
}


/* sec06 */
.sec06{
    background-color: #fef5e0;
    text-align: center;
    padding: 40px 0 55px;
}

.learn{
    display: flex;
    justify-content: space-evenly;
    margin-top: 35px;
}

.learn-box {
    width: 360px;
}

.learn-img1{
    background-image: url(../image/learnfromfreelancer.jpg);
    background-size: cover;
    background-position: center;
    width: 360px;
    height: 180px;
}

.learn-img2{
    background-image: url(../image/learnfromprojects.jpg);
    background-size: cover;
    background-position: center;
    width: 360px;
    height: 180px;
}

.learn-img3{
    background-image: url(../image/actuallyfree.jpg);
    background-size: cover;
    background-position: center;
    width: 360px;
    height: 180px;
}


.learn h3{
    color: #ebb94d;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    margin: 15px 0;
}

.learn p{
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    text-align: left;
}

.support{
    background-color: #fff;
    border: solid 2px #ebb94d;
    border-radius: 5px;
    width: 1170px;
    margin: 53px auto 40px;
    padding: 47px 0 55px;
}

.support h2{
    color: #ebb94d;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.support #support-1{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.support .support-2{
    font-size: 16px;
    font-weight: 600;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .learn {
        flex-direction: column;
        align-items: center;

    }
    
    .learn-box {
        width: 90%;
    }

    .learn-img1 {
        width: 100%;
        height: 220px;
    }

    .learn-img2 {
        width: 100%;
        height: 220px;
    }
    
    .learn-img3 {
        width: 100%;
        height: 220px;
    }

    .learn h3 {
        font-size: 18px;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .learn p {
        font-size: 15px;
        margin-bottom: 50px;
        text-align: center;

    }

    .support {
        width: 90%;
    }

    .support h2 {
        font-size: 24px;
    }
    
    .support #support-1 {
        font-size: 18px;
    }
    
    .support .support-2 {
        font-size: 14px;
    }
    
    .under-spt {
        font-size: 14px;
    }
}

@media screen and (max-width:768px){
    .sec06 .section-title .title{
        line-height: 30px;
    }

    .learn {
        flex-direction: column;
        align-items: center;
    }
    
    .learn-box {
        width: 90%;
    }
    
    .learn-img1 {
        width: 100%;
    }

    .learn-img2 {
        width: 100%;
    }
    
    .learn-img3 {
        width: 100%;
    }

    .learn h3 {
        font-size: 16px;
    }    

    .learn p {
        margin-bottom: 30px;
        font-size: 14px;
        line-height: 22px;

    }

    .support {
        width: 95%;
        margin: 20px auto 40px;
        padding: 40px 0;
    }

    .support h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .support #support-1 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .support .support-2 {
        font-size: 13px;
    }

    .under-spt {
        font-size: 14px;
    }
    
}

@media screen and (max-width:375px){
    .learn h3 {
        font-size: 14px;
        margin: 15px 0 10px;
    }
    
    .learn p {
        font-size: 12px;
        line-height: 18px;
    }
    
    .support h2 {
        font-size: 16px;
    }
    
    .support #support-1 {
        font-size: 14px;
    }
    
    .support .support-2 {
        font-size: 11px;
    }
    
    .under-spt {
        font-size: 12px;
    }
}

/* sec07 */
.sec07{
    background-image: url(../image/teacherbg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 827px;
    color: #fff;
    text-align: center;
    padding: 88px 0 0 0;
}

.sec07 h3 i{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

.sec07  .sec07-p{
    font-weight: 600;

}

/*  */
.member {
    display: flex;
    justify-content: center;
}

.member-box {
    width: 356px;
    border: solid 3px #fff;
    margin: 0 15px;
    padding: 35px 30px;
}

.member-box .name{
    margin-top: 10px;
}

.member-box .text{
    text-align: left;
    margin-top: 20px;
}

.member-box .text2{
    text-align: left;
    margin: 20px 0;
}

.member-list img {
    border-radius: 50%;
    position: relative;
    top: 30px;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .sec07 {
        height: auto;
        padding-bottom: 70px;
    }
    
    .sec07 h3 i {
        font-size: 24px;
    }

    .sec07 .sec07-p {
        font-size: 14px;
    }
    
    .member {
        flex-direction: column;
    }

    .member-list img {
        width: 180px;
    }
    
    .member-box {
        width: 65%;
        margin: 15px auto;
    }
    
    .member-box p {
        font-size: 14px;
    }
}

@media screen and (max-width:768px){
    .sec07{
        height: auto;
        padding: 65px 0 20px;
    }

    .sec07 h3 i{
        font-size: 18px;
        margin-bottom: 20px;
    }

    .sec07  .sec07-p{
        font-size: 12px;
    }

    .member {
        flex-direction: column;
    }

    .member-list {
        font-size: 12px;
    }
    
    .member-box {
        width: 95%;
        margin: 0 2%;
        padding: 40px 10px 15px;
    }

    .member-box .text {
        margin-top: 10px;
    }
    
    .member-list img {
        width: 120px;
    }
}




/* sec08 */
.sec08{
    text-align: center;
    position: relative;
}

.sec08 .qa{
    background-color: #ebb94d;
    color: #fff;
    height: 270px;
    font-size: 14px;
    
}

.sec08 .qa-btn{
    display: inline-block;
    background-color: #fff;
    color: #ebb94d;
    padding: 30px 23px;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.sec08 .section-title{
    top: 35%;
}

.sec08 .section-title::before{
    border-top: solid 4px #fff;
    border-left: solid 4px #fff;
    top: 0;
    left: 0;
}

.sec08 .section-title ::after{
    border-bottom: solid 4px #fff;
    border-right: solid 4px #fff;
    bottom: 0;
    right: 0;
}

.qa::after{
    content: "";
    position: absolute;
    /* top: 355px; */
    top: 270px;
    left: 50%;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #ebb94d transparent;
    border-width: 25px 25px 0 25px;
    margin-left: -25px;
}


.vois{
    margin: 47px 0 30px;
}

.vois h3{
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 22px;
}

.vois-p{
    font-weight: bold;
}

.vois-pp{
    font-size: 14px;
    margin-top: 22px;
}

.vois-list{
    width: 768px;
    margin: 30px auto;
}

.vois-v{
    display: flex;
    justify-content: center;
    margin-bottom: 43px;
}

.vois-v img{
    width: 245px;
    height: 245px;
    border: solid 2px #ebb94d;
}

.vois-o{
    color: #777;
    font-size: 18px;
    font-family: "Hiragino Kaku Gothic Pro" - 400 italic;
    font-style: italic;
    text-align: left;
    padding: 15px 0 0 30px;
}

.vois-o p{
    padding-bottom: 15px;
}

.vois-o a{
    color: #777;
    text-decoration: underline;
    font-size: 14px;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .vois h3 {
        font-size: 24px;
    }
    
    .vois-p {
        font-size: 14px;
    }
    
    .vois-v img {
        width: 200px;
        height: 200px;
        margin-left: 3%;
    }


}


@media screen and (max-width:768px){    
    .sec08 .qa {
        height: 210px;
    }

    .sec08 .qa-btn {
        padding: 20px 13px;
        font-size: 12px;
        top: 10px;
    }
    
    .qa::after {
        top: 210px;
    }

    .sec08 .section-title {
        top: 30%;
    }


    .vois h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .vois-p {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .vois-pp {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .vois-list {
        width: 100%;
        padding: 0 8px;
    }
    
    .vois-v img {
        width: 100px;
        height: 100px;
    }
    
    .vois-o {
        font-size: 14px;
        padding: 5px 0 0 10px;
        } 
        
    .vois-o p a{
        font-size: 14px;
    }
}

@media screen and (max-width:375px){
    .sec08 .qa-btn {
        font-size: 5px;
        padding: 17px 10px;
    }
    
    .vois h3 {
        font-size: 16px;
    }
    
    .vois-p {
        font-size: 13px;
    }
    
    .vois-pp {
        font-size: 10px;
    }
    
    .vois-o p {
        font-size: 12px;
    }
    
    .vois-o a {
        font-size: 13px;
    }
}



/* sec09 */
.sec09{
    background-image: url(../image/classbg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 807px;
    text-align: center;
    padding: 65px 0 82px;
}

.sec09 h2{
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.sec09 .title-p{
    color: #fff;
}

.sec09-content{
    display: flex;
    justify-content: center;
}

.sec09-list{
    background-color: #fff;
    border: solid 3px #016ea9;
    border-radius: 5px;
    margin: 50px 15px 0;
    width: 374px;
}

.sec09-2{
    height: 355px;
}

.sec09-list p{
    background-color: #016ea9;
    color: #fff;
    font-size: 20px;
    padding: 15px 0;
}

.sec09-list .txst li{
    padding: 10px 0;
    border-bottom: dotted 1px #e5e5e5;
    font-weight: bold;
}

.sec09-list .txst li:first-child{
    padding-top: 20px;
}

.sec09-list .txst li:last-child{
    border: none;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .sec09 h2 {
        font-size: 24px;
    }
    
    .sec09 .title-p {
        font-size: 14px;
    }
    
    .sec09-list p {
        font-size: 18px;
    }
    
    .sec09-list .txst li {
        font-size: 14px;
    }
        
    .blue {
        font-size: 18px;
    }  
}


@media screen and (max-width:768px){
    .sec09 {
        height: auto;
        padding: 50px 12%;
    }
    
    .sec09 h2 {
        font-size: 20px;
    }
    
    p.title-p {
        font-size: 12px;
        margin-bottom: 15px;
    }
    .sec09-content {
        flex-direction: column;
    }

    .sec09-list {
        width: 100%;
        margin: 20px 0;
    }
    
    .sec09-list p {
        font-size: 16px;
    }
    
    .sec09-list .txst li {
        font-size: 14px;
        padding: 8px 0;
    }

    .sec09-list.sec09-2 {
        height: 320px;
    }

    .blue {
        height: auto;
    }
}

@media screen and (max-width:375px){
    .sec09 h2 {
        font-size: 16px;
    }
    
    .sec09-list p {
        font-size: 14px;
    }
    
    .sec09-list .txst li {
        font-size: 12px;
    }
}

/* sec10 */
.sec10{
    padding: 65px 0 40px;
    text-align: center;
}

.sec10 h2{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}

.sec10 h2 .fas{
    font-size: inherit;
    text-rendering: auto;
    font-size: 23px;
}


.sec10 .flow{
    margin: 40px auto;
}

/* pc */

.flow-list{
    background-color: #fef5e0;
    border-radius: 10px;
    width: 1170px;
    margin: 0 auto;
    padding: 10px 35px;
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
}

.flow-left{
    width: 200px;
    padding: 20px;
    
}

.flow-left p{
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
}

.flow-right{
    text-align: left;
    width: 80%;
}

.flow-right .flow-lg{
    font-size: 16px;
    font-weight: 600;
    margin: 20px;
}

.flow-right .flow-sm{
    font-size: 14px;
    font-weight: 300;
    margin: 20px;
}

.flowline{
    margin: 0 auto;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .sec10 .flow {
        width: 90%;
    }

    .flow-list {
        width: 90%;
    }

    .sec10 h2 {
        font-size: 24px;
    }
    
    .flow-left p {
        font-size: 16px;
    }
    
    .flow-right .flow-lg {
        font-size: 14px;
    }
    
    .flow-right .flow-sm {
        font-size: 12px;
    }

    .flowline {
        width: 500px;
    }
}

@media screen and (max-width:768px){
    .sec10 {
        padding: 40px 2%;
    }

    .sec10 h2 {
        font-size: 20px;
    }

    .fa-laptop:before {
        font-size: 20px;
    }

    .sp-flow {
        margin: 30px 0;
    }

    .sp-flow img {
        width: 35px;
        height: 35px;
    }

    .sp-flow .sp-p{
        padding-left: 10px;
    }

    .accordion-button:focus {
        border: none;
    }
    
    button.accordion-button.collapsed {
        background-color: #fef5e0;
        font-weight: bold;
    }

     .accordion-button:not(.collapsed) {
         color: #333;
         font-weight: bold;
         background-color: #fef5e0;
   }

   .accordion-button::after{
        background: none;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f107";
        float: right;
        color: #e5e5e5;

   }

   .accordion-button:not(.collapsed)::after {
       background-image: none;
       transform:none;
        content: "\f106";
    }

    .accordion-body {
        background-color: #fef5e0;
        padding: 10px;
    }
    
    .flow-right {
        width: 100%;
    }
    
    .flow-right .flow-lg {
        font-size: 14px;
        margin: 20px 15px;
    }
    
    .flow-right .flow-sm {
        font-size: 12px;
        margin: 20px 15px;
    }
}

@media screen and (max-width:375px){
    .sec10 {
        padding-bottom: 5px;
    }
    
    .sec10 h2 {
        font-size: 16px;
    }
    
    .fa-laptop:before {
        font-size: 16px;
    }
    
    button.accordion-button.collapsed {
        font-size: 14px;
    }
    
    .sp-flow img {
        width: 25px;
        height: 25px;
    }
        
    button.accordion-button {
        font-size: 14px;
    }
    
    .flow-right .flow-lg {
        font-size: 12px;
    }
    
    .flow-right .flow-sm {
        font-size: 10px;
    }
    
    
}



/* sec11 */
.sec11{
    background-image: url(../image/bangkokbg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 498px;
    color: #fff;
    padding: 105px 0 95px 98px;
}

.bangkok h3{
    font-size: 24px;
    font-weight: 600;
    /* margin: 32px 0; */
}

.bangkok .p-sm{
    margin: 32px 0 25px;
    font-size: 14px;
    font-weight: 300;
}

.bangkok .p-li{
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.bangkok .last{
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .sec11 {
        padding-left: 80px;
    }
}


@media screen and (max-width:768px){
    .sec11{
        background-image: url(../image/bangkokbgsp.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin-top: 30px;
        padding: 40px 5%;
        height: auto;
        text-align: center;

    }

    .bangkok h3 {
        font-size: 20px;
    }
    
    .bangkok .p-sm {
        font-size: 12px;
        text-align: left;
    }
    
    .bangkok .p-li {
        font-size: 14px;
        margin-bottom: 15px;
        text-align: left;

    }
    
    .bangkok .last {
        font-size: 18px;
        text-align: left;

    }
}

@media screen and (max-width:375px){
    .bangkok h3 {
        font-size: 16px;
    }
    
    .bangkok .p-sm {
        font-size: 10px;
    }
    
    .bangkok .p-li {
        font-size: 12px;
    }
    
    .bangkok .last {
        font-size: 16px;
    }
}



/* sec12 */
.sec12{
    background-color: #f7c23c;
    text-align: center;
    padding: 65px 0 42px 0 ;
    position: relative;

}

.sec12 h2{
    font-size: 28px;
    font-weight: 600;
}


.sec12 .sec12-p{
    font-size: 16px;
    font-weight: bold;
    padding: 45px 0;
}

.sec12-title{
    width: 560px;
    margin: 0 auto;
    background-color: #f7c23c;
    line-height: 45px;
    position: absolute;
    top: 245px;
    left: 360px;
    
}


.sec12 .sec12-p span{
    color: #fff;
}

.tokuten-content{
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: solid 2px #fff;
    margin: 100px auto 0;
    padding: 50px 20px;
    width: 1170px;
}

.tokuten-content .tokuten-box{
    background-color: #fff;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    padding: 50px 0;
}

.tokuten-content .tokuten-box h3{
    font-size: 24px;
    color: #ebb94d;
    margin-bottom: 15px;
}

.tokuten-content .tokuten-box p{
    font-size: 14px;
    font-weight: bold;
    padding: 0 15px;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .sec12{
        padding-right: 3%;
        padding-left: 3%;
    }
    .sec12 h2 {
        font-size: 24px;
    }
    
    .sec12 .sec12-p {
        font-size: 14px;
    }
    
    .sec12 .sec12-title {
        font-size: 16px;
    }

    .sec12 .sec12-title {
        display: inline-block;
        font-size: 24px;
        width: 60%;
        line-height: 35px;
        position: absolute;
        top: 230px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

   .tokuten-content .tokuten-box {
        width: 210px;
        height: 210px;
        padding: 30px 0;
   }


    .tokuten-content {
        width: 100%;
        margin-top: 50px;
    }
}


@media screen and (max-width:768px){
    .sec12{
        padding: 40px 2.5%;
    }
    .sec12 h2 {
        font-size: 20px;
    }
    
    .sec12 .sec12-p {
        font-size: 14px;
        padding: 30px 0;
    }

    .sec12 .sec12-title {
        display: inline;
        font-size: 18px;
        width: 60%;
        line-height: 25px;
        position: absolute;
        top: 190px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        
    }

    .tokuten-content {
        flex-direction: column;
        width: 100%;
        margin-top: 35px;
        padding: 20px 10px;
    }
    .tokuten-content .tokuten-box {
        display: flex;
        align-items: center;
        background-color: #f7c23c;
        width: 100%;
        height: auto;
        padding: 20px 0 ;
    }


    .tokuten-content .tokuten-box .tokuten-width {
        background-color: #fff;
        border-radius: 50%;
        width: 25%;
        flex: 1;
    }

    .tokuten-content .tokuten-box .tokuten-heigh{
        position: relative;
        padding-top: 100%;
        height: 0;
    }

    .tokuten-content .tokuten-box h3{
        position: absolute;
        top: calc((100% - 1em)/2);
        right: 0;
        left: 0;
        font-size: 16px;
        margin:0;
        text-align: center;
    }

    .tokuten-content .tokuten-box p {
        display: block;
        color: #fff;
        padding-right: 0;
        text-align: left;
        flex: 4;
    }
    
}

@media screen and (max-width:375px){
    .sec12 h2 {
        font-size: 16px;
    }
        
    .sec12 .sec12-p {
        font-size: 11.5px;
    }
    
    .sec12 .sec12-title {
        font-size: 14px;
        top: 180px;
    }
    
    .tokuten-content .tokuten-box h3 {
        font-size: 12px;
    }
    
    .tokuten-content .tokuten-box p {
        font-size: 12px;
    }
}



/* sec13 */
.sec13{
    background-image: url(../image/specialdetail.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 528px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    padding: 60px 0 0 0;
}

.sec13 .p-1{
    font-size: 28px;
    /* margin-bottom: 5px; */

}

.sec13 .p-2,
.sec13 .p-3{
    font-size: 20px;
}

.sec13 .p-2{
    margin: 10px 0 20px;
}

.sec13 .p-3{
    margin: 18px 0 ;
}



.sec13 .section-title{
    padding: 0;
}

.sec13 .section-title::before{
    border-top: solid 4px #fff;
    border-left: solid 4px #fff;
    top: 0;
    left: 0;
}

.sec13 .section-title ::after{
    border-bottom: solid 4px #fff;
    border-right: solid 4px #fff;
    bottom: 0;
    right: 0;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .sec13 .p-1 {
        font-size: 24px;
    }
    
    .sec13 .p-2 {
        font-size: 18px;
    }
    
    .sec13 .p-3 {
        font-size: 18px;
    }
}


@media screen and (max-width:768px){
    .sec13{
        background-image: url(../image/specialdetailsp.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: auto;
        padding-bottom: 30px;
    }
    .sec13 .p-1 {
        font-size: 18px;
    }
    
    .sec13 .section-title .title {
        line-height: 30px;
        margin: 20px 0;
    }
    
    .sec13 .p-2, .sec13 .p-3 {
        font-size: 14px;
        margin: 12px 0;
    }
}

@media screen and (max-width:375px){
    .sec13 .p-1 {
        font-size: 16px;
    }
    
    .sec13 .p-2, .sec13 .p-3 {
        font-size: 12px;
    }
    
    .sec13 .section-title .title {
        margin: 5px 0;
    }
}



/* sec14 */
.sec14{
    text-align: center;
    padding: 65px 0 0 0;
}

.sec14 h2{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 45px;
}

.sec14 .noma{
    font-size: 20px;
    font-weight: 600;
}

.message{
    display: flex;
    justify-content: space-between;
    width: 859px;
    margin: 40px auto 80px;
}

.message .message-text{
    text-align: left;
    padding-left: 28px;
    font-size: 14px;
}

.message-text p{
    margin-bottom: 15px;
}

.message-text .message-list{
    margin: 30px 0;
}

.message-text .message-list p{
    margin: 0;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .sec14 {
        padding: 65px 3% 0;
    }

    .sec14 h2 {
        font-size: 24px;
    }
    
    .sec14 .noma {
        font-size: 18px;
    }

    .message {
        width: 100%;
    }

    .message-img {
        width: 500px;
    }
    
}

@media screen and (max-width:768px){
    .sec14 h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .sec14 .noma {
        font-size: 16px;
    }

    .message {
        flex-direction: column;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .message .message-img img {
        width: 100%;
        padding: 0 3%;
    }
    
    .message .message-text {
        padding: 30px 3%;
        font-size: 12px;
    }
}

@media screen and (max-width:375px){
    .sec14{
        padding: 50px 0 0;
    }

    .sec14 h2 {
        font-size: 16px;
    }
    
    .sec14 .noma {
        font-size: 14px;
    }

    .message {
        margin: 20px 0;
    }
}


/* sec15 */
.sec15{
    background-color: #ebb94d;
    text-align: center;
    font-weight: bold;
    padding: 60px 0;
}

.sec15 h2{
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
}

.sec15 h2::before{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f15c";

}

.sec15-p{
    font-size: 16px;
    margin-bottom: 20px;
}

input.name {
    border: none;
    border-radius: 5px;
    margin: 15px 0;
    padding-left: 10px;
    height: 50px;
    width: 750px;
    font-size: 14px;
}

input.name2 {
    border: none;
    border-radius: 5px;
    margin: 15px 0;
    padding-left: 10px;
    height: 50px;
    width: 750px;
    font-size: 14px;

}

input.email {
    border: none;
    border-radius: 5px;
    margin: 15px 0;
    padding-left: 10px;
    height: 50px;
    width: 750px;
    font-size: 14px;

}

textarea#textarea {
    border: none;
    border-radius: 5px;
    margin: 30px 0;
    padding:8px 0 0 10px;
    height: 120px;
    width: 750px;
    font-size: 14px;

}

input.submit {
    background-color: #da6b64;
    color: #fff;
    font-size: 20px;
    width: 750px;
    height: 50px;
    border: none;
    border-radius: 40px;
}

input.submit:hover{
    background-color: #d84940;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .sec15 h2 {
        font-size: 24px;
    }
    
    .sec15-p {
        font-size: 14px;
    }
}


@media screen and (max-width:768px){
    .sec15 h2 {
        font-size: 20px;
    }
    
    .sec15-p {
        font-size: 14px;
    }

    label {
        width: 90%;
    }

    input.name {
        width: 100%;
    }
    
    input.name2 {
        width: 100%;
    }
    
    input.email {
        width: 100%;
    }
    
    textarea#textarea {
        width: 100%;
    }
    
    input.submit {
        width: 90%;
        font-size: 18px;
    }
}

@media screen and (max-width:375px){
    .sec15 h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .sec15-p {
        font-size: 14px;
    }
    
    input.name {
        margin: 8px 0;
        font-size: 12px;
    }
    
    input.name2 {
        margin: 10px 0;
        font-size: 12px;
    }
    
    input.email {
        margin: 10px 0;
        font-size: 12px;
    }
    
    textarea#textarea {
        margin: 20px 0;
    }
    
    input.submit {
        font-size: 16px;
    }
}

/* sec16 */
.sec16{
    padding: 60px 3%;
}

.sec16 .title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}

.accordion dl{
    margin-top: 40px;
}

.accordion  dt{
    margin: 0 auto 10px;
    padding: 20px;
    background-color: #fff;
    color: #333;
    border: solid 1px #eee;
    border-radius: 3px;
    width: 80%;
    cursor: pointer;
}

.accordion  dt::before{
    font-family: "Font Awesome 5 Free";
    content: "\f059";
    float: left;
    color: #016ea9;

}



.accordion dt::after{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f107";
    float: right;
    color: #e5e5e5;
}

.accordion dt.open::after{
    content: "\f106";
}

.accordion dd{
    display: none;
    padding: 5px 20px 20px;
    margin: 0 auto 10px;
    width: 80%;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .sec16 .title {
        font-size: 24px;
    }

    .accordion dt {
        width: 100%;
    }

    .accordion dd {
        width: 100%;
    }
}

@media screen and (max-width:768px){
    .sec16 .title {
        font-size: 20px;
    }
    
    .accordion dt {
        font-size: 14px;
        padding: 15px 20px;
        width: 100%;
    }
    
    .accordion dd {
        font-size: 14px;
        padding-bottom: 10px;
        width: 100%;
    }

}

@media screen and (max-width:375px){
    .sec16 {
        padding: 40px 3%;
    }
    
    .sec16 .title {
        font-size: 16px;
    }
    
    .accordion dl {
        margin-top: 20px;
    }
    
    .accordion dt {
        font-size: 12px;
        width: 90%;
        margin-bottom: 5px;
    }
    
    .accordion dd {
        font-size: 12px;
        width: 90%;
    }

    .accordion dt::after{
        display: none;
    }
    
    .accordion dt.open::after{
        display: none;
    }
    
}


/* footer */
.footer{
    background-color: #ececec;
    font-size: 10px;
    text-align: center;
    padding: 42px 0 27px;
}

.footer .text{
    margin-bottom: 40px;
}

.footer p a{
    color: #337ab7;
}

@media screen and (max-width:1170px) and (min-width:768px){
    .footer {
        padding: 30px 0 20px;
    }

    .footer .text {
        margin-bottom: 30px;
    }
}

@media screen and (max-width:768px){    
    .footer {
        padding: 25px 0 15px;
    }

    .footer .text {
        margin-bottom: 15px;
    }

}

#page_top{
    width: 60px;
    height: 60px;
    position: fixed;
    right: 40px;
    bottom: 40px;
    background: #e3e3e3;
    /* opacity: 0.6; */
    /* border-radius: 50%; */
    z-index: 90;
  }
  #page_top a{
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }
  #page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f106';
    font-size: 25px;
    color: #333;
    position: absolute;
    width: 7px;
    height: 16px;
    top: -15px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }

  @media screen and (max-width:1170px) and (min-width:768px){
    #page_top{
        width: 55px;
        height: 55px;
        right: 25px;
        bottom: 25px;
    }

    #page_top a::before{
        width: 10px;
        height: 20px;
    }
  }

  @media screen and (max-width:768px){ 
    #page_top{
        width: 50px;
        height: 50px;
        right: 25px;
        bottom: 25px;
    }

    #page_top a::before{
        width: 16px;
        height: 25px;
    }
  }


  @media screen and (max-width:375px){    
    #page_top{
        width: 40px;
        height: 40px;
        right: 20px;
        bottom: 20px;
    }

    #page_top a {
        width: 40px;
        height: 40px;
    }
  }
