

.instagram-list{
   display: flex;
   justify-content: space-evenly;
   font-family: "felix-titling", "YuMincho", /* Mac用 */ 'Yu Mincho', /* Windows用 */ serif;
   padding: 1%;
   z-index: 0;
}

.instaCard{
   border-radius: 1.5%; 
   width: 25%;
   background: #ffffff;
   box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.10);
   z-index: 100;
}

.card{
   width: fit-content;
   margin: 20px;
}

.insta_pic{
   width: 100%;
}

.card-img-top{
   width: 100%; 
   border-radius: 1% 1% 1% 1%;
}

.card-body{
   height: 10rem;
}

.card-title{
   font-family: "YuGothic", ui-sans-serif;
   padding-left: 6%;
   padding-top: 1%;
   padding-bottom: 1%;
}

.card-text{
   font-family: "YuGothic", ui-sans-serif;
   padding: 3%;
}

.modalArea {
   display: none;
   position: fixed;
   z-index: 1001; /*サイトによってここの数値は調整 */
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

.modalBg {
   width: 100%;
   height: 100%;
   background-color: rgba(30,30,30,0.9);
}
.modalWrapper {
   position: absolute;
   display: flex;
   top: 50%;
   left: 50%;
   transform:translate(-50%,-50%);
   width: 70%;
   height: 80%;
   padding: 10px 30px;
   background-color: #fff;
}
    
.closeModal {
   position: absolute;
   top: 0.5rem;
   right: 1rem;
   cursor: pointer;
}

#openModal {
   position: absolute;
   top: 50%;
   left: 50%;
   transform:translate(-50%,-50%);
}

.modal-card-img-top{
   width: 50%;
   height: 50%;
}

/* タイトル用CSS */
.instagram_section{
   display: none;
   margin-bottom: 2%;
}

.instagram_title{
   display: flex;
   align-items: flex-end;
   margin-bottom: 2%;
   margin-left: 7%;
   font-family: "YuMincho";
   justify-content: flex-start;
}

@media screen and (max-width: 833px) {
   /* 820px以下に適用されるCSS（スマホ用） */
   .instagram-list {
      display: flex;
      justify-content: space-evenly;
      font-family: "felix-titling", "YuMincho", /* Mac用 */ 'Yu Mincho', /* Windows用 */ serif;
      padding: 1%;
      flex-direction: column;
      align-items: center;
      z-index: 0;
   }

   .instaCard{
      border-radius: 1.5%; 
      width: 62%;
      margin-top: 0px;
      margin-bottom: 10px;
      background: #ffffff;
      box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.10);
      z-index: 100;
   }

   .card{
      width: fit-content;
      margin: 20px;
   }

   .insta_pic{
      width: 100%;
   }

   .card-img-top{
      width: 100%; 
      border-radius: 1% 1% 1% 1%;
   }

   .card-body{
      height: 12rem;
   }
   
   .card-title{
      font-family: "YuGothic", ui-sans-serif;
      padding-left: 6%;
      padding-top: 1%;
      padding-bottom: 1%;
   }

   .card-text{
      font-family: "YuGothic", ui-sans-serif;
      padding: 3%;
   }
}


 