/*---------------------------------------------
 全般 
---------------------------------------------*/
body{
    min-width: 360px;
}

.container{
    width: 100%;
}

.content{
    max-width: 940px;
    margin: 0 auto;
}

@media screen and (max-width: 870px){
    .content{
        width: 90%;
    }
    
}


/* 横揃え */
.text-center{
    text-align: center;
}

.text-left{
    text-align: left;
}

.text-right{
    text-align: right;
}



/* フロート */
.clearfix:after {
    display: block;
    clear: both;
    content: "";
}

.float-left{
    float: left;
}

.float-right{
    float: right;
}






/*---------------------------------------------
 見出し・タイポグラフィ 
---------------------------------------------*/
/* 見出し */
.h1{
    font-size: 36px;
    color: #fff;
    text-shadow: 
    #16b 2px 0px,  #16b -2px 0px,
    #16b 0px -2px, #16b 0px 2px,
    #16b 2px 2px , #16b -2px 2px,
    #16b 2px -2px, #16b -2px -2px,
    #16b 1px 2px,  #16b -1px 2px,
    #16b 1px -2px, #16b -1px -2px,
    #16b 2px 1px,  #16b -2px 1px,
    #16b 2px -1px, #16b -2px -1px,
    0 0 10px rgba(0, 0, 0, 0.7);
}

.h2{
    font-size: 28px;
    color: #fff;
    text-shadow: 
    #16b 2px 0px,  #16b -2px 0px,
    #16b 0px -2px, #16b 0px 2px,
    #16b 2px 2px , #16b -2px 2px,
    #16b 2px -2px, #16b -2px -2px,
    #16b 1px 2px,  #16b -1px 2px,
    #16b 1px -2px, #16b -1px -2px,
    #16b 2px 1px,  #16b -2px 1px,
    #16b 2px -1px, #16b -2px -1px,
    0 0 10px rgba(0, 0, 0, 0.7);
}

.h3{
    font-size: 20px;
    color: #fff;
    text-shadow: 
    #16b 2px 0px,  #16b -2px 0px,
    #16b 0px -2px, #16b 0px 2px,
    #16b 2px 2px , #16b -2px 2px,
    #16b 2px -2px, #16b -2px -2px,
    #16b 1px 2px,  #16b -1px 2px,
    #16b 1px -2px, #16b -1px -2px,
    #16b 2px 1px,  #16b -2px 1px,
    #16b 2px -1px, #16b -2px -1px,
    0 0 10px rgba(0, 0, 0, 0.7);
}

.heading-wrap{
    padding: 15px;
}

@media screen and (max-width: 870px){
    .h1{
        font-size: 28px;
    }
    
    .h2{
        font-size: 24px;
    }
    
    .h3{
        font-size: 18px;
    }
}


/* 装飾 */
.text-shadow{
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.text-b{
    font-weight: bold;
}

.text-white{
    color: #fff;
}

.text-white:visited{
    color: #fff;
}

.text-blue{
    color: #2cd;
}

.text-blue:visited{
    color: #2cd;
}

.text-red{
    color: #d00;
}

.text-red:visited{
    color: #d00;
}

.text-pink{
    color: #f07;
}

.text-pink:visited{
    color: #f07;
}


/* フォントサイズ */
.font-size-14{
    font-size: 14px;
}

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

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

.font-size-30{
    font-size: 30px;
}

.font-size-36{
    font-size: 36px;
}


/* 文字折り返し制御 */
@media screen and (max-width: 870px){
    .line-feed{
        display: inline-block;
    }
}


/*---------------------------------------------
 背景 
---------------------------------------------*/
/* 色 */
.bg-white{
    background-color: #fff;
}

.bg-blue{
    background-color: #025;
}

.bg-gray{
    background-color: #eee;
}


/* 柄 */
.bg-sky{
    background-image: url("../images/rainbow.jpg");
    background-size: cover;
}

.bg-rainbow{
    background-image: url("../images/rainbow1.jpg");
    background-size: cover;
}

.bg-building{
    background-image: url("../images/building.jpg");
    background-size: cover;
}

.bg-newspaper{
    background-image: url("../images/newspaper.jpg");
    background-size: cover;
}

.bg-transparent-white{
    background-image: url("../images/transparent-white.png");
    background-repeat: repeat;
}

.bg-hatched{
    background-image: url("../images/hatched.png");
    background-size: cover;
}






/*---------------------------------------------
 アイコン 
---------------------------------------------*/
.icon-check{
    width: 20px;
    height: 20px;
}






/*---------------------------------------------
 ボタン 
---------------------------------------------*/
.btn-red{
    padding: 12px 40px 18px 40px;
    background-color: #e50;
    border-radius: 6px;
    box-shadow: 0 -5px 0 0 rgba(0, 0, 0, 0.2) inset;
    transition: opacity .3s ease;
}

.btn-round{
    display: inline-block;
    width: 100%;
    padding: 15px 0;
    border-radius: 50px;
    transition: opacity .3s ease;
}

.btn-square{
    padding: 15px 30px;
    transition: opacity .3s ease;
}

.btn-hover:hover{
    opacity: 0.7;
}




/*---------------------------------------------
 ヘッダー 
---------------------------------------------*/
.header{
    width: 100%;
}

.header-container{
    max-width: 1260px;
    margin: 0 auto;
    position: relative;
}

.rogo-wrap{
    position: absolute;
    left: 1rem;
    z-index: 1000;
    width: 130px;
    height: 130px;
    overflow: hidden;
    text-align: center;
}

.rogo{
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
}

.header-content{
    padding: 20px 10px 20px 0;
    text-align: right;
}

.header-btn,
.header-text{
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
}

.header .header-container .header-btn a{
    color: #025;
}

.header .header-container .header-btn a:visited{
    color: #025;
}


@media screen and (max-width: 870px){
    .rogo-wrap{
        position: static;
        float: left;
        width: 80px;
        height: 80px;
        margin: 25px 0 25px 15px;
        padding: 0;
        overflow: visible;
        text-align: center;
    }
    
    .rogo{
        position: static;
        border: solid 10px #fff;
    }
    
    .header-content{
        float: right;
        max-width: 70%;
    }
    
    .header-text{
        display: block;
        margin: 0;
    }
    
    .header-btn{
        display: block;
        margin: 20px 0 0 0;
    }
}







/*---------------------------------------------
 フッター 
---------------------------------------------*/
.fotter{
    width: 100%;
}

.fotter-content{
    padding: 80px 0;
    text-align: center;
    font-size: 14px;
}




/*---------------------------------------------
 section1・人間の～講座 
---------------------------------------------*/
.section1 .content{
    position: relative;
    min-height: 400px;
    padding: 60px 0 40px 0;

}

.section1 .title-wrap{
    margin-bottom: 20px;
}

/* 写真 */
.mainphoto1{
    position: absolute;
    top: 60px;
    right: 40px;
    border: 5px solid white;
    box-shadow: 0 0 8.1px 0.9px rgba(0, 0, 0, 0.42);
    background-color: #fff;
    width: 214px;
    height: 170px;
    line-height: 170px;
    text-align: center;
}

.mainphoto2{
    position: absolute;
    top: 240px;
    right: 12px;
    border: 5px solid white;
    box-shadow: 0 0 8.1px 0.9px rgba(0, 0, 0, 0.42);
    background-color: #fff;
    width: 214px;
    height: 170px;
    line-height: 170px; 
    text-align: center;
    transform: rotate(10deg);
}

.mainphoto1 img,
.mainphoto2 img{
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}




/* 説明文 */
.section1-text{
    max-width: 490px;
    padding: 20px;
    margin: 0 0 30px 0;
    background: -webkit-linear-gradient(left, rgba(35, 115, 198, 0.6) 0, rgba(35, 115, 198, 0.6) 80%, rgba(125, 185, 232, 0) 100%);
    background: linear-gradient(to right, rgba(35, 115, 198, 0.6) 0, rgba(35, 115, 198, 0.6) 80%, rgba(125, 185, 232, 0) 100%);
}

/* アイキャッチ */
.eyecatchi-wrap{
    position: relative;
}

.eyecatchi{
    position: absolute;
    top: -110px;
    right: 193px;
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
    overflow: hidden;
    z-index: 10;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    background: -webkit-linear-gradient(top, #fcdd92 0, #d49d16 50%, #d2a53a 100%);
    background: linear-gradient(to bottom, #fcdd92 0, #d49d16 50%, #d2a53a 100%);
    background-size: cover;
    box-shadow: inset 0 0 2px 2px rgba(255, 229, 167, 0.8);
}

.eyecatchi-content{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 1.1;
}

.section1-btn-wrap{
    display: inline-block;
}


@media screen and (max-width: 870px){
    .section1{
        text-align: center;
    }

    /* 写真 */
    .mainphoto1{
        position: relative;
        top: unset;
        right: 0;
        left: 0;
        margin: 0 auto;
    }
    
    .mainphoto2{
        position: relative;
        top: unset;
        right: 0;
        left: 0;
        margin: 0 auto;
    }

    /* アイキャッチ */
    .eyecatchi-wrap{
        position: relative;
    }
    
    .eyecatchi{
        position: relative;
        display: inline-block;
        top: 0;
        right: 0;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .section1-btn-wrap{
        padding: 20px 0;
    }

}





/*---------------------------------------------
 section2・こんなお悩みありませんか 
---------------------------------------------*/
.section2{
    background-color: #6ce;
}

.section2 .content{
    padding: 0 0 50px 0;
}

.section2 ul li{
    display: inline-block;
    box-sizing: border-box;
    padding: 0 10px 6px 0;
    width: 47%;
    margin: 1%;
    background-image: url("../images/hatched.png");
    background-size: cover;
}

.section2 ul li .list-content{
    padding: 20px;
    background-color: #369;
    background:linear-gradient(-60deg, transparent 40px, #369 0);
} 

.section2 ul li .list-content span{
    padding-left: 10px; 
}

.d-inline{
    display: inline;
}


@media screen and (max-width: 870px){
    .section2 ul li{
        display: block;
        width: 96%;
        margin: 2%;
    }

}





/*---------------------------------------------
 section3・そのお悩みは解決できます 
---------------------------------------------*/
.section3-text{
    padding: 0 0 30px 0;
}


/* 吹き出し */
.balloon-down{
    position: relative;
	display: inline-block;
 	width: 100%;
	background: #fe8;
}

.balloon-down:before{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
 	margin-left: -180px;
	border: 180px solid transparent;
	border-top: 30px solid #fe8;
}

.balloon-down p {
	margin: 0;
	padding: 0;
}





/*---------------------------------------------
section4・こんな方におすすめ 
---------------------------------------------*/
.section4-content-wrap{
    margin: 0 auto;
    max-width: 940px;
}

.section4-content{
    margin: 0 auto;
    padding: 30px 0;
    max-width: 500px; 
}

.section4-list-container{
    padding: 0 30px;
}

.section4-list-content{
    padding: 0 0 20px 0;
}

/* 
@media screen and (max-width: 870px){
    .section4-content-wrap{
        margin: 0;
    }
}
 */




/*---------------------------------------------
 section5・エニアグラムとは 
---------------------------------------------*/
.section5 .content{
    padding: 0 0 50px 0;
}

.section5-text{
    padding: 0 0 30px 0;
    max-width: 700px;
    margin: 0 auto;
}





/*---------------------------------------------
 section6・セミナー動画ダイジェスト版 
---------------------------------------------*/
.movie-wrap{
    width: 70%;
    margin: 0 auto 50px auto;
}

.movie{
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.movie iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}





/*---------------------------------------------
 section7・受講生の声 
---------------------------------------------*/
.section7-container{
    padding: 10px 0 40px 0;
}

.section7-content{
    padding: 20px 0;
}

.section7-content > div{
    display: inline-block;
    vertical-align: top;
}

.icon-students-wrap{
    margin: 0px;
    padding: 10px;
}

.icon-students-wrap img{
    border-radius:50%;
    border: solid 2px #ccc; 
}

.icon-students{
    width: 100px;
    height: 100px;
}



/* 吹き出し */
.section7 .balloon{
    position: relative;
    display: inline-block;
    margin: 0 0 0 15px;
    padding: 25px;
    min-width: 120px;
    max-width: 60%;
    background: #eee;
    border-radius: 20px;
}

.section7 .balloon:before{
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #eee;
}

.section7 .balloon p {
    margin: 0;
    padding: 0;
}


@media screen and (max-width: 870px){
    .section7-content > div{
        display: block;
    }

    .section7 .balloon{
        margin: 15px 0 0 0;
    }
    
    .section7 .balloon:before{
        top: -30px;
        left: 47%;
        margin-top: 0;
        border: 15px solid transparent;
        border-bottom: 15px solid #eee;
    }
    
    
}




/*---------------------------------------------
 section8・画像 
---------------------------------------------*/
.section8 .img-container{
    display: table;
    width: 100%;
    table-layout: fixed;
    font-size: 0;
}

.section8 .img-content{
    display: table-cell;
    width: 33%;
}

.section8 .img-content img{
    width: 100%;
    height: auto;
}







/*---------------------------------------------
 section9・受講の流れ 
---------------------------------------------*/
.section9 dl{
    padding: 30px 20px;
}

.section9 dl dt{
    float: left;
    clear: left;
    padding: 10px 0;
}

.section9 dl dd{
    float: left;
    margin: 0 0 40px 40px;
    padding: 10px 0 10px 20px;
    border-left: solid 1px #2cd; 
}

@media screen and (max-width: 870px){
    .section9 dl dt,
    .section9 dl dd{
        float: none;
    }
}





/*---------------------------------------------
 section10・配信スケジュール 
---------------------------------------------*/
.section10 .table-wrap{
    float: left;
    width: 47%;
    margin: 0 1%;
}

.section10 table thead tr th{
    background-color: #c2dcf2;
    padding: 10px;
}

.section10 table tr th,
.section10 table tr td{
    border: solid 1px #ddd;
    padding: 10px;
}

.section10 table tr th{
    background-color: #f7f7f7;
}

.section10 .content{
    padding: 0 0 50px 0;
}

@media screen and (max-width: 870px){
    .section10 .table-wrap{
        float: none;
        width: 80%;
        margin: 0 auto 20px auto;
    }
    .section10 table tr th,
    .section10 table tr td{
        display: block;
        text-align: center;
    }    
}





/*---------------------------------------------
 section11・価格表 
---------------------------------------------*/
.section11 .card-wrap{
    margin: 0 0 50px 0;
}

.section11 .card{
    width: 70%;
    margin: 0 auto 30px auto;
    padding: 25px;
    border: solid 1px #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 6px 0 #eee;
}

.section11 .card .card-content{
    display: inline-block;
    vertical-align: top;
}

.section11 .card .img-wrap{
    padding: 0 40px;
}

.section11 .card .img-wrap img{
    width: 100px;
    height: 100px;
    border: solid 10px #fff;
    box-shadow: 0 0 4px 0 #ddd;
}

.section11 .card .card-content span{
    display: block;
}

@media screen and (max-width: 870px){
    .section11 .card .img-wrap{
        padding: 10px 0;
    }

    .section11 .card .card-content{
        display: block;
        text-align: center;
    }
        
}






/*---------------------------------------------
 section12・ボタン 
---------------------------------------------*/
.section12 .content{
    padding: 40px 0;
}

.section12-btn-wrap{
    padding: 15px 0;
}





/*---------------------------------------------
 section13・講師紹介 
---------------------------------------------*/
.section13 .content{
    padding: 0 0 50px 0;
}

.section13 .teacher{
    padding: 10px 0 30px 0;
}

.section13 .img-wrap{
    float: left;
    width: 150px;
    height: 150px;
    line-height: 150px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 4px 0 #ddd;
}

.section13 .profile{
    float: right;
    width: 80%;
}

.section13 .img-wrap img{
    max-width: 94%;
    height: auto;
    vertical-align: middle;
}

.section13 .profile ul li{
    list-style-type: disc
}

.section13 .profile p span{
    display: block;
    padding: 20px 0;
}

.section13 .btn-wrap{
    margin: 30px 0;
}

@media screen and (max-width: 870px){
    .section13 .img-wrap{
        float: none;
        margin : 0 auto;
    }

    .section13 .profile{
        float: none;
        width: auto;
    }

    .section13 .profile ul{
        padding: 0 15px;
    }

    .section13 .btn-wrap{
        text-align: center;
    }

}







/*---------------------------------------------
 section14・私たちの思い 
---------------------------------------------*/
.section14 .content{
    padding: 0 0 50px 0;
}

.section14-text{
    padding: 0 0 30px 0;
    max-width: 700px;
    margin: 0 auto;
}





/*---------------------------------------------
 ついてくるボタン 
---------------------------------------------*/
.btn-fixed{
    position: fixed;
    bottom: 10px; 
    left: 10px;
    z-index: 999;
    transition: opacity .3s ease;
}

.btn-fixed a{
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(to bottom, #fcdd92 0, #d49d16 50%, #d2a53a 100%);
    box-shadow: inset 0 0 2px 2px rgba(255, 229, 167, 0.8);
    border-radius: 10px;
    font-size: 30px;
}

@media screen and (max-width: 870px){
    .btn-fixed{
        width: 100%;
        bottom: 0;
        left: 0;
    }
    
    .btn-fixed a{
        display: block;
        width: 100%;
        padding: 10px 0;
        border-radius: 0;
        font-size: 20px;
    }
    
}