/*ポートフォリオサイト用のcss*/
#inc {
  position: sticky;
  background-color: #9A1CB2;
  padding: 300px 0;
  width: 100%;
}

.over {
  height: 12%;
  width: 100%;
}  


html {
  font-family: "Kaisei Tokumin", serif;
  background-color: #4e041a;
  margin: 0;
}

/*--------------------------------------
PC専用タイル
 --------------------------------------*/
 @media screen and (min-width:750px) {


  /* メニュー */
  header {
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: -15%;
  }

  #menu {
    background-image: url(img/tareru.png);
    background-repeat: no-repeat;
    text-align: left;
    zoom: 1.3;
    width: 16%;
    padding: 4% 1%;
    margin: 0 1%;
  }

  #menu > h2 {
    text-align: right;
    margin-right: 30px;
    padding-top: 5px;
  }

  #menu > ul {
    list-style: none;
    color: #c59f46;
  }

  #menu > ul > li  {
    padding-top: 10px;
    font-size: 14px;
    line-height: 50px;
  }


  .t-tag {
    color: #c59f46;
    text-decoration: none;
  }


  /* メイン */
  #book {
    background-color: #ffffff;
    width: 70%;
    margin: -60px auto 60px auto;
    text-align: center;
    line-height: 100px;
  }


  .book-item {
    padding: 50px 100px;
  }

  .b-box {
    font-size: 20px;
    font-weight: bold;
  }

  span {
    text-align: center;
    font-size: 50px;
  }
  /* ページネーション */
  /* #pagination {
    display: flex;
    justify-content: space-around;
  } */

  .p-box {
    display: flex;
    justify-content: space-around;
    width: 100%;
    list-style-type: circle;
    text-decoration: none;
    font-weight: bold;
    font-size: 30px;
  }

  /* .g {
      color: #FFFFFF;
  }

  .g > a {
    color: #FFFFFF;
  } */
}


/*--------------------------------------
スマホ専用タイル
 --------------------------------------*/
 @media screen and (max-width:750px) {

  #inc {
    position: sticky;
    background-color: #9A1CB2;
    padding: 340px 0;
    width: 100%;
  }

  .over {
    height: 12%;
    width: 100%;
  }

  
   /* 
      メニュー
              */  

  header {
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: -15%;
    z-index: 30;
  }

  #menu {
    background-image: url(img/tareru.png);
    background-repeat: no-repeat;
    text-align: left;
    zoom: 0.6;
    width: 30%;
    padding: 12% 0%;
    margin: 0 2%;
  }

  #menu > h2 {
    text-align: right;
    margin-right: 45px;
  }

  #menu > ul {
    list-style: none;
    color: #c59f46;
  }

  #menu > ul > li  {
    padding-top: 10px;
    font-size: 14px;
  }


  .t-tag {
    color: #c59f46;
    text-decoration: none;
  }


    /* メイン */
  #book {
    background-color: #ffffff;
    margin: -60px auto 60px auto;
    width: 85%;
    text-align: center;
    line-height: 40px;
  }

  #book > h2 {
    font-size: 12px;
  }

  #book > p {
    font-size: 7px;
  }

  .book-item {
    padding: 30px;
  }

  .b-box {
    font-size: 14px;
    font-weight: bold;
  }

  span {
    text-align: center;
    font-size: 18px;
  }
  /* ページネーション */

  .p-box {
    display: flex;
    justify-content: space-around;
    width: 100%;
    list-style-type: circle;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
  }
}