@charset "UTF-8";
/* sax104特集ビギナー特集2 中山拓海がレクチャーする 初心者に役立つ練習法 */



/*見出し　レイアウト*/
.grid{
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: 100px;
  gap: 10px;
  place-items: center;
}

/*Part見出し 　演出*/
.circle {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  text-align:center;
  line-height: 50px;
  border-radius: 50%;
  border: solid 8px #84db5e;
}

.circle span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width :90px;
  text-align:center;
  font-size: 1.6rem;
}

.grid .title{
  font-size: 1.4rem;
  font-weight: bold;
}

/*lessonX見出し*/
.grid .item h3{
  text-decoration: none; 
  border-bottom: 3px solid #84db5e; 
  text-decoration-color: #84db5e;
}



/*本文*/
.subtitile {
 text-decoration-color: #84db5e;
 text-decoration: none;
 border-bottom: 3px solid #84db5e;
 padding-bottom: 3px;
}

.tags {
  background: #84db5e;
  border-radius: 0 0 0 0;
  color: #fff;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 0.5em 0 1em;
  position: relative;
}

.tags::before {
  border: 20px solid transparent;
  border-left-color: #84db5e;
  border-right-width: 0;
  content: '';
  display: block;
  height: 0;
  position: absolute;
  right: -20px;
  top: 0;
  width: 0;
}


/* 譜例scroll */
/*対sax用　.scroll 強制margin除け */
#main_left #magazine_main .scroll img{
  margin: 0;
}

/* PC */
@media (min-width:1000px){ 
  .scroll {
    width: 100%;
    margin:0.5em 0;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }
  
  .scroll img{
    width: 100%;
    }
}

/* SP */
@media (max-width:999px){
  .scroll {
    height: auto;
    margin:0.5em auto;
    padding: 5px;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }
  
  .scroll img{
    max-height: 400px;
    width: auto;
  }
}
