@charset "UTF-8";

/* 基本設定 */

* {
   margin: 0;
}


/* ページ全体の設定 */
body {
   display: grid;
   grid-template-columns: 20px 1fr 20px;
   grid-template-rows: 
              [head] 100px
              [read] auto
              [foot] 50px;
   grid-row-gap: 20px;
   row-gap: 20px;
   color: #757577;
   font-family: ' 游ゴシック ', YuGothic, sans-serif;
   font-size: 13px;
   text-align: center;
   background-color:#f6f8f8;
}

img.work {
   width:auto;
   height:175px;
}

p {
   font-size: 12px;
   margin-bottom: 1em;
   text-align: left;
}

h2 {
   justify-self: center;
   font-size: 18px;
   color: #889696;
   font-family: ' 游ゴシック ', YuGothic, sans-serif;
   padding: 20px 0px 0px 0px;
   border-top: solid 3px #e1ebeb;
}
img.h2 {
   height:10px;
}
h3 {
   justify-self: left;
   text-align: left;
   font-size: 15px;
   font-weight: normal;
   color: #889696;
   font-family: ' 游ゴシック ', YuGothic, sans-serif;
   margin-bottom: 0.5em;
}
h4 {
   border: solid 2px #ffffff;
   padding: 20px 40px;
   justify-self: center;
   display:inline-block;
   background-color:#d7f5f5;
   margin: 10px 0px 10px 0px;
   border-radius:10px
}
img.h4 {
   height:7px;
}
a h4 {
   text-decoration: none;
}

h5 {
   justify-self: center;
   font-size: 18px;
   color: #889696;
   font-family: ' 游ゴシック ', YuGothic, sans-serif;
   padding: 0px 0px 20px 0px;
}


/* 作品 */
figure {
   padding: 20px 0px 20px 0px;
   border-bottom: solid 1px #e1ebeb;
}
 figure img {
   margin: 0px 5px 0px 5px;
}
 figcaption {
   font-size: 11px;
   margin: 5px 0px 0px 0px;
}

/* パーツの位置 */
body > * {
   grid-column: 2 / -2;
}

/* ヘッダー */
header {
   grid-row: head;
   width:80%;
   justify-self: center;
   align-self: center;
}

/* ヘッダーのバー*/
body::before {
   content: "";
   background-color:#d7f5f5;
   grid-column: 1 / -1;
   grid-row: head;
   z-index: -1;
}

/* フッター */
footer {
   grid-row: foot;
   justify-self: center;
   align-self: center;
   font-size: 7px;
}
/* フッターのバー*/
body::after {
   content: "";
   background-color:#d7f5f5;
   grid-column: 1 / -1;
   grid-row: foot;
   z-index: -1;
}


/* ===== PC版の設定 ===== */
@media (min-width: 768px) {

/* PC版：ページ全体の設定 */
body {
   grid-template-columns: 0.5fr repeat(4,1fr) 0.5fr;
   grid-column-gap: 5%;
   column-gap: 5%;
   grid-template-rows:
		[head] 140px
		[read] auto
		[works] auto
		[foot] 70px;
   grid-row-gap: 35px;
   row-gap: 35px;
   text-align: center;
}

img.work {
   width:auto;
   height:214px;
}

p {
   font-size: 12px;
   margin-bottom: 1em;
   text-align: center;
}

h2 {
   justify-self: center;
   font-size: 18px;
   color: #889696;
   font-family: ' 游ゴシック ', YuGothic, sans-serif;
   padding: 35px 0px 0px 0px;
   border-top: solid 3px #e1ebeb;
}
img.h2 {
   height:13px;
}
h3 {
   justify-self: center;
   text-align: center;
   font-size: 16px;
   font-weight: normal;
   color: #889696;
   font-family: ' 游ゴシック ', YuGothic, sans-serif;
   margin-bottom: 0.5em;
}
h4 {
   border: solid 2px #ffffff;
   padding: 25px 50px;
   justify-self: center;
   display:inline-block;
   background-color:#d7f5f5;
   margin: 30px 0px 10px 0px;
   border-radius:10px;
}
img.h4 {
   height:10px;
}


/* PC版：ヘッダー */
header {
   width:60%;
}

/* PC版：作品 */
figure {
   padding: 35px 0px 35px 0px;
   border-bottom: solid 1px #e1ebeb;
}
 figure img {
   margin: 0px 12px 17px 12px;
}


}
/* ===== PC版の設定ここまで ===== */
