@charset "UTF-8";
.redTXT{
	color: #FF0004;
}
sup{
	font-size: 50%;
}
/* グリッドレイアウト用スタイル */
.imgGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    width: 100%;
    height: auto;
}

.imgGrid .imgBox.left {
    grid-column: 1;
    grid-row: 1 / 3;
}

.imgGrid .imgBox.right {
    grid-column: 2;
}

.imgGrid .imgBox.right:first-of-type {
    grid-row: 1;
}

.imgGrid .imgBox.right:last-of-type {
    grid-row: 2;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .imgGrid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 15px;
    }
    
    .imgGrid .imgBox.left {
        grid-column: 1;
        grid-row: 1;
    }
    
    .imgGrid .imgBox.right {
        grid-column: 1;
    }
    
    .imgGrid .imgBox.right:first-of-type {
        grid-row: 2;
    }
    
    .imgGrid .imgBox.right:last-of-type {
        grid-row: 3;
    }
	
	
  #top .wrap .content section#zeh {
  padding: 10% 0;
  }
  
  #outline .wrap .content .outline h2 {
    line-height: 1.8;
  }
} 

/* PC
------------------------------------------------------- */
@media only screen and (min-width: 961px) {
  #top .wrap .content section#zeh {
    padding: 150px 0 50px;
  }
  #outline .wrap .content .outline h2 {
    font-size: 2vw;
  }
  #outline .wrap .content .outline h3 {
    font-size: 16px;
    font-size: 1rem;
  }
  
} 



