@charset "UTF-8";

/*==========================================================================
  COMMON
  ========================================================================*/

  /*メインカラー（緑）　#009b72 */
  /*メインカラー（明るい緑）　#02b582 */
  /* テキストカラー（茶）　#48230a */

*{
    margin:0;
    padding:0;
}

html {
  scroll-behavior: smooth;
}


html {
  scroll-padding-top: 120px;
}

@import url('https://fonts.googleapis.com/css?family=Sacramento');
@import url('https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c');
@import url('https://fonts.googleapis.com/css?family=M+PLUS+1p');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');

body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color:#48230a;
    font-size: 15px;
    line-height: 1.7;
    /* background-color: #eee; */
    /* padding-top:130px;  */
}


/*文字囲み*/

.sample-box{
  padding: 0.1em 5em;
  margin: 1em 0;
  background: #f4f4f4;
  border-left: solid 6px #5bb7ae;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.33);
  width:240px;
  height: 30px;
}
.sample-box p {
  margin: 0; 
  padding: 0;
}



.inner{
    /* position:relative;  */
    overflow:hidden;
    margin: 0 auto; 
    width:1100px; 
}

    h1 {
        color: #009b72;
        font-size: 32px;
        font-family: 'Noto Sans JP', sans-serif;
        font-family: 'Sacramento', cursive;
    }
    h2 {
        color: #fff;
        font-size: 40px;
        font: bold;

    }
    
    h3 {
        /* color: #009b72 */
        color: #fff
        font: bold;
        text-align: center;
        
    }

}





/*==========================================================================
  HEADER
  ========================================================================*/

#header {
    background-color: #03462f;
    height: 100px;
    padding: 5px;
    color:#531685;
    font-size: large;

    overflow:hidden;
    margin: 0 auto; 
    width:1300px;  


}

 #header .fixed{
  position:fixed;
  background-color: #eee;

  /* overflow:hidden;
  margin: 0 auto;   */

  /* margin-left:0px; */
  /* width:1300px;  */

  overflow:hidden;
  margin: 0 auto; 
  width:1300px;  
} 



#header .logo{
    width:680px;
    float:left;
    margin-bottom: 30px;
    /* padding:12px 0;
    position:fixed;
    top:20px; */
}

#header .header-info{
    width:340px;
    float:right;
    margin-right: 80px;
    /* padding-top: 33px;
    position:fixed;
    top:33px;  */
}

#header .header-info ul{
    float:right;
    list-style: none;
    overflow:hidden;
}

#header .header-info li{
    float:left;
    margin:15px;
    color:#009b72;
}

/*==========================================================================
  NAV
  ========================================================================*/
#nav {
    background-color: #009b72;
    border-bottom: 1px solid #bef;
    /* position:fixed;
    top:90px; */

}  

#nav ul{
    list-style: none;
    overflow:hidden;

}

 #nav li {
    float:left;
    width:274px;
    border-left: 1px solid #bef;

 }

 #nav li:last-child{
    width:273px;
    border-right: 1px solid #bef;
 }

 #nav li a {
    display:block;
    height:40px;
    text-align: center;
    line-height: 40px;
    color:#fff;
    font-size: 22px;
    text-decoration: none;
 }


/*==========================================================================
  KEY-VISUAL
  ========================================================================*/


#key-visual {
    background-image: url(../images/key-visual.jpg);
    background-repeat: no-repeat; 
    /* background-position: center top; */
    color:#fff;
    text-align: left;
    padding-top:140px; 

    overflow:hidden;
    margin: 0 auto; 
    width:1300px; 
}

#key-visual .key-visual-box {
    height:5px;
    /* background-color: #009b72; */
    /* background-color: rgba(0,155,114,0.7);  */
}

#key-visual h2{
    margin-bottom: 30px;
    padding-top: 10px;
    line-height: 1.2;
    font-style: italic;
    font-family: 'Sacramento', cursive;
}

#key-visual p{
    margin-bottom: 20px;
    padding-top: 4px;
    font-size: 20px;
    font-weight: bold;
    color:#e9faf9
}

/*==========================================================================
  CONTENT
  ========================================================================*/

.home #content {
    background-color: #ddd; 
    margin-bottom: 50px;
    padding-top: 0px;
}  

@media only screen and (max-width:1100px) {
 
  .home #content {
    background-color: #fff; 
    margin-bottom: 50px;
    padding-top: 0px;
}  
 
}

.home #content section {
    /* background-color: #888; */
    margin-bottom: 30px;
    padding-top: 10px;
} 

#content h3 {
    font-weight: bold;
    font-size: 18px;
    color:#03462f;
    margin-bottom: 10px;
}
 .class1 {
  text-align: center;
}



#content .access-box{
  background:#e9faf9;
  padding:25px;
  border:1px solid #dea;
  border-radius: 10px;
  width:75%;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);/*影*/

  /* overflow:hidden; */
}

#content .access-box img{
  float:right;
  margin-right: 10px; 
}



/*テーブルの装飾（レッスン料金）*/

#content .fee table {
    width: 100%;
    /* border-collapse:separate; */
    border-spacing: 0;
}
#content .fee table th:first-child{
    border-radius: 5px 0 0 0;
  }
  
  #content .fee table th:last-child{
    border-radius: 0 5px 0 0;
    border-right: 1px solid #02b582;
  }
  #content .fee table th{
    text-align: center;
    color:white;
    background: linear-gradient(#67f5cd,#009b72);
    border-left: 1px solid #02b582;
    border-top: 1px solid #02b582;
    border-bottom: 1px solid #02b582;
    box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
    width: 14%;
    padding: 10px 0;
  }
  #content .fee table td{
    /* background-color:#fff ; */
    text-align: center;
    border-left: 1px solid #02b582;
    border-bottom: 1px solid #02b582;
    border-top:none;
    box-shadow: 0px -3px 5px 1px #eee inset;
    width: 14.2%;
    padding: 10px 0;
  }
  
  #content .fee table td:first-child {
    /* background: #e9faf9; */
    background: #009b72;
    color:#fff;
    font-weight: bold;
  }

  #content .fee table td:last-child{
    border-right: 1px solid #02b582;
  }
  
  #content .fee table tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
  }
  #content .fee table tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
  }
  #content .fee table tr:nth-child(odd){
    background-color: #eee
  }
  #content .fee table tr:nth-child(2){
    background-color: #e9faf9
  } 
  #content .fee table tr:nth-child(3){
    background-color: #e9faf9
  } 
  #content .fee table tr:nth-child(4){
    background-color: #aaa
  } 

/*テーブルの装飾（開講日）*/

#content .hours table{
    width: 60%;
    /* border-collapse: collapse; */
    border-collapse: separate;  /* 表の線と線の間を空ける */
    border-spacing:  5px;       /* 表の線と線の間の幅 */
  }
  
  /* #content .hours table tr{
    border-bottom: solid 2px white;
  }
  
  #content .hours table tr:last-child{
    border-bottom: none;
  } */
  /* #content .hours table th{
    position: relative;
    text-align: left;
    width: 15%;
    background-color: #009b72;
    color: white;
    text-align: center;
    padding: 10px 0;
  } */
  
  #content .hours table th,td:{
    padding: 5px 10px;          /* 余白指定 */
    /* display: block; */
    /* content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top:calc(50% - 10px);
    right:-10px; */
    /* border-left: 10px solid #009b72;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent; */
  }
  
  #content .hours table th {
    background-color:  #009b72; /* 背景色指定 */
    color:  #fff;               /* 文字色指定 */
    font-weight:bold;       /* 文字の太さ指定 */
  }
  
  #content .hours table td {
    background-color:  #e9faf9; /* 背景色指定 */
    text-align:center;
  }
/* 
  #content .hours table td{
    text-align: left;
    width: 35%;
    text-align: center;
    background-color: #e9faf9;
    padding: 10px 0;
  }   */

/*テーブルの装飾（項目）*/

#content .item table {
  border-collapse: separate;  /* 表の線と線の間を空ける */
  border-spacing:  5px;       /* 表の線と線の間の幅 */
}

#content .item table th,td {
  padding: 5px 10px;          /* 余白指定 */
}

#content .item table th {
  background-color:  #009b72; /* 背景色指定 */
  color:  #fff;               /* 文字色指定 */
  font-weight:  bold;       /* 文字の太さ指定 */
}

#content .item table td {
  background-color:  #e9faf9; /* 背景色指定 */
}

/*テーブルの装飾（プロフィール）*/

#content .profile table th {
  background-color:  #e9faf9; /*背景色指定*/ 
  font-weight:  bold;       /* 文字の太さ指定 */
  text-align: center;
  width:18%;
}

#content .profile table td {
  background-color:  #e9faf9; /*背景色指定 */
  font-weight:  normal;       /* 文字の太さ指定 */
  text-align: left;
}

th,td {
  padding: 5px 10px;          /* 余白指定 */
}


#content .message p{
  /* 基本的なサイズの設定 */
  /* background-color: #bbedce; */
  background-color: #e9faf9;
  width: 50%;
  height: 390px;
  padding-top: 10px;
  padding-left:20px;
 
  /* borderに関する設定 */
  border: 4px solid; /* 線の太さと可視化 */
  border-color: #009b72;
  border-radius:16px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.32);/*影*/
 
  /* メイン表示エリアの線の太さだけ下にずらす */
  margin-bottom: -1px;
 
  /* その他の設定 */
  position: relative;
  text-align: left;
  font-weight: bold;


}




/* #content h3 small {
    display:block;
    font-weight: normal;
    font-size: 16x;
    padding-top: 2px;
} */
  /*==========================================================================
  FOOTER
  ========================================================================*/
  /* #footer {
    background-color: #dfe;
  } */