@charset "UTF-8";
/* CSS Document */

/*============================================================================================
↓サムネール一覧 =============================================================================
============================================================================================*/

/* 画像拡大 */

<style type="text/css" media="screen">
.c {
    text-align: center;
}
.overlay { /* グレーの背景 */
  position: fixed;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.5s 0s ease;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#pop-up {
  display: none;
}
#pop-up:checked + .overlay {
  visibility: visible;
  opacity: 1;
  z-index: 100000;
  background-color: #000000D0;
  width: 100%;
}
.popWindow {
  border-radius: 5px;
  overflow: auto; /* スクロールバー用 */
  max-height: 95%; /* すき間 */
  min-width: fit-content; /* 横幅が広い時に白の部分が大きくならないため */
  max-width: 95%; /* すき間 */
  position: fixed;
  top: 50%; /* 中央に */
  left: 50%; /* 中央に */
  transform: translate(-50%, -50%); /* 中央に */
  z-index: 100010;
  font-size: 13px;
  line-height: 18px;
  margin: 10px auto;
  padding: 4px 10px;
  background: #FFFD; /* 枠の色 */
  text-align: center; /* 文字を中央寄せ */
  transition: all 500ms ease-in-out;
}
.popWindow .ptitle {
  font-size: 15px;
  margin: 8px;
  color: #333;
}
.popWindow .close {
  position: absolute;
  top: 8px;
  right: 10px;
  transition: all 300ms;
  font-size: 24px;
  line-height: inherit;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  padding: 2px;
}
.popWindow .close:hover {
  color: #06D85F;
}
.popWindow::-webkit-scrollbar-track {
  background: none;
}
.popWindow::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.popWindow::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 5px;
}
.clickable:hover {
  cursor: pointer;
}
@media screen and (max-width: 700px){
  #pop-up:checked + .overlay {
    visibility: hidden;
    opacity: 0;
  }
}
</style>



/*works画像3つパターン------------------------*/

.works-thumb {
    overflow: hidden;
    margin-right: -2%;
}

.works-thumb li {
    width: 32.3%;
    margin: 0 1% 2em 0;
    float: left;
    text-align: center;
}

.works-thumb li .img-box {
    width: 100%;
    /*height:138px;*/
    overflow: hidden;
    position: relative;
}

.works-thumb li .img-box img {
    width: 100%;
    height: 100%;
}

.works-thumb .post-meta {
    margin: 0.5em auto;
    line-height: 1.8em;
    overflow: hidden;
}

.works-thumb .post-ttl {
    font-size: 1.2em;
}

.works-thumb li a:link,
.works-thumb li a:visited {
    text-decoration: none;
}

.works-thumb li a:hover {
    text-decoration: underline;
}

/*works画像の動きの速さ------------------------*/
.img-box img {
    transition: 0.5s;
}

.img-box:hover img {
    -moz-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    opacity: 0.7;
}

@media screen and (max-width: 480px) {
.works-thumb li {
    width: 48%;
    margin: 0 2% 2em 0;
    text-align: center;
}

	
	
	
}

/* 作品写真 */


#works-single .post-img {
    width: 100%;
    margin-bottom: 2em;
}

#works-single .post-img img {
    max-width: 740px;
    height: auto;
    margin: 0 auto;
}

@media screen and (max-width: 480px) {
	.post-img {
    max-width: 340px;
    margin-bottom: 2em;
}
    #works-single .post-img img {
        width: 100%;
        height: auto;
    }
	
	
}



#works-single .post-meta {
    margin: 0.5em auto;
    line-height: 1.8em;
}

#works-single .post-date {
    font-size: 1.2em;
    text-align: right;
}

#works-single .post-ttl {
    font-size: 1.2em;
    border-top: dotted 1px #ccc;
    border-bottom: dotted 1px #ccc;
    padding: 1em 0;
    margin: 0.5em auto 2em;
    text-align: center;
}

#works-single .post-body {
    font-size: 1.2em;
    line-height: 1.8em;
    overflow: hidden;
}

/*============================================================================================
↓ページネーション============================================================================
============================================================================================*/
#pagenavi {
    border-top: solid 1px #666;
    border-bottom: solid 1px #666;
    margin: 2em auto;
    text-align: center;
    overflow: hidden;
}

#pagenavi-single {
    border-top: solid 1px #666;
    border-bottom: solid 1px #666;
    padding: 1em 0;
    margin: 2em auto;
    text-align: center;
    overflow: hidden;
}

/*============================================================================================
↓Like buttun=================================================================================
============================================================================================*/
.fb-share-button {
    float: right;
}


