.item_title{
  padding-top: 100px;
}


/* モーダルウィンドウ */
.page1{ /* Item */
  color: #96bf00;
}
/* これが無いとモーダルウィンドウ表示の際に余白が出る */
*{
  margin: 0;
  padding: 0;
}

/* モーダル全体(背景＋本体) */
.modal{
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
}

/* モーダル背景 */
.modal-bg{
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* モーダル本体 */
.modal-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: scroll; /* はみ出た部分はスクロールさせる */
  height: 70%;/* これが無いと「overflow:scroll」が利かない */
  width: 70%;/* これが無いと「overflow:scroll」が利かない */
  background: white;
background-image: url(../img/logo/RM_logo.png);
background-size: 35%;
background-position: 20px 20px;
background-repeat: no-repeat;
  padding: 40px;
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}
/* モーダルアイコンサイズ */
.modal_open img{
max-width: 50%;
}
.modal_open{
  text-align: center;
  line-height: 1;
}
#balloon{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 50px 0 50px 0;
}
#hand{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 50px 0 50px 0;
}
#pouch{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 50px 0 50px 0;
}
#shoulder{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 50px 0 50px 0;
}
#tote{
  align-items: flex-end;
  padding: 50px 0 50px 0;
}
/* .js-modal-open{
  align-items: center;
} */
/* モーダルコンテンツ内のサイズ */
.modal-content .txt{
  font-size: 14px;
  line-height: 1.5;
text-align: right;
margin-bottom: 10px;
}
.modal-content img{
max-height: 100%;
}
.modal-content a{
  color: #96bf00;
}
.bag_pic{
  text-align: center;
}
.desc{
  line-height: 1.5;
font-size: 1rem;
  margin: 0 20px 20px 20px;
}
.coment{
  font-size: 13px;
  line-height: 1.5;
  margin-left: 20px;
  margin: 0 20px 20px 20px;
}
@media screen and (max-width:430px){
  .modal-content img{
max-width: 100%;
    }
}/* ---max-width:430px--- */