@charset "utf-8";
/* CSS Document */

.pc_del{display: none;}


.practice1{
    width: 100%;
    padding: 40px 0 0;
    margin-top: 50px;
    margin-bottom: 40px;
    box-sizing: border-box;
    font-feature-settings : "palt";
   }

   .practice1 h2{
    color: #0095d9;
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding: 0 30px;
   }

   .practice1 h3{
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 10px;
}

.mov_con{
    margin-bottom: 80px;
    margin-left: 30px;
    margin-right: 30px;
}

.mov_main{
    margin-bottom: 40px;
    margin-left: 30px;
    margin-right: 30px;
}

.mov_ul{
    margin: 0 30px 40px;
}


    /* 動画サムネイルページの記述 */

       /* リストの区切り */ 
       .thm > li{border-top: 1px solid #ccc;}
       .thm > li:last-child{border-bottom: 1px solid #ccc; }
      
      
             /* リストの外枠 */ 
      .thm_area{ padding: 30px 0;}
          .thm_fr{display: block;}
      
      
                 /* 画像 */ 
          .thm_img {
              width: 100%;}
          .thm_img img{width: 100%;}
      
                     /* テキスト */ 
          .thm_txt{
              margin-left: 0;
              width: 100%;
          } 
          .thm_txt h4{
              font-weight: bold;
              margin-bottom: 20px;
              text-align: center;
          }
      
          .s_name {
              font-size: 1.1rem;
              line-height: 1.8;
          }
      
      
                     /* ボタン */ 
      
      .thm_btn{
          margin-top: 20px;
          margin-bottom: 20px;
    }
      
          .thm_btn a{
              background-color: #0095d9;
              border-radius: 6px;
              color: #fff;
              display: block;
              padding: 5px 20px;
              text-align: center;
              text-decoration-style: solid;
              margin: auto;
              width: 50%;
          }
      
           .icon_brank{
           background:url(../images/icon_brank.png) no-repeat;
           background-size: 100%;
          margin-right: 10px;
          padding-left: 16px;
          }
      
          .thm_btn a:hover{ opacity: .8;}

    /* ボタン */
    .index_ul{
        display: flex;
        flex-wrap: wrap;
        margin: 0 30px 0;
      }
  
      .index_ul li{
        width: 100%;
        position: relative;
        margin-bottom: 20px;
      }
  
      .index_ul a{
        display: block;
        background-color: #D7EAF4;
        padding:20px;
        border-radius: 4px;
        transition: all 0.3s;
      }
  
      .index_ul a:hover{
        background-color: #f4f8f9;
      }
    
      .index_ul li::after {
        content: '';
        display: inline-block;
        width: 10px;
        height: 10px;
        border-top: 2px solid #0095d9;
        border-right: 2px solid #0095d9;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        top:45%;
        right: 20px;
    }