/*デフォルトコード--------------------------*/
html{
  font-size:62.5%;
}
body{
	margin:auto;
	padding:0;
	width:auto;
  font-family: "メイリオ","Hiragino Kaku Gothic Pro",Meiryo,"ヒラギノ角ゴ Pro W3","MS PGothic","MS UI Gothic",Helvetica,Arial,sans-serif;
    -webkit-text-size-adjust: 100%;/*スマホを横にしてもテキスサイズをそのままに*/
  font-size: 1.2rem;
  color: #393436;
}

p, span{line-height:140%;}
p, span a{line-height:140%;}

html {overflow-y: scroll;}

li{list-style:none;}
a{color: #393436;}

a:link{text-decoration:none;}

img {border: 0;}

table{border-collapse: collapse;  border-spacing: 0;}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h2, h3, h4,h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td  {
	margin: 0;  padding: 0;
}
h1, h2, h2, h3, h4,h5, h6{word-break: break-all;}


header, article, footer, article, aside, time ,nav { display: block; }

/*iphoneのsafari用*/
input[type="text"],
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
}
a:hover img,
a:hover{
  -webkit-transition: all .9s;
	transition: all .9s;
}
.center{
  margin: auto;
  text-align: center;
}
.main-width{
  width: 980px;
  margin: auto;
  overflow: hidden;
}
@media screen and (max-width:650px){
  .main-width{
    width: 98%;
  }
}
/*--------------------------------

--------------------------------*/
header{
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

header h1{
  float: left;
  width: 200px;
  height: 72px;
  margin-right: 40px;
}
header h1 img{
  width: 100%;
  height: auto;
}
@media screen and (max-width:650px){
  header h1{
    float: left;
    width: 50%;
    height: auto;
    margin-right: 5%;
    margin-left: 5%;
    text-align: center;
  }
  header h1 img{
    max-width: 250px;
  }
}

nav.head-nav{
  width: 35%;
  float: left;
  margin-right: 60px;
}
@media screen and (max-width:650px){
  nav.head-nav{
    display: none;
  }
}
nav.head-nav ul{
  overflow: hidden;
  margin-top: 30px;
}
nav.head-nav ul li{
  float: left;
  width: 33.333%;
  float: left;
  background-color: #393436;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 1px;
  font-size: 1.3rem;
}
nav.head-nav ul li a{
  line-height: 25px;
  color: #fff;
  display: block;
}
nav.head-nav ul li a:hover{
	opacity:0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha( opacity=60 )";
}
nav.head-nav ul li:nth-child(2n){
  background-color: #fd284c;
}
ul.head-sns{
  overflow: hidden;
  float: left;
  margin-top: 20px;
  margin-right: 70px;
}
ul.head-sns li{
  width: 34px;
  height: 34px;
  float: left;
  margin-right: 15px;
}
ul.head-sns li img{
  width: 100%;
  height: auto;
}
ul.head-sns li:last-child{
  margin-right: 0;
}
@media screen and (max-width:650px){
  ul.head-sns{
    margin-top: 0;
    margin-right: 10px;
  }
  ul.head-sns li{
    width: 30px;
    height: 30px;
    float: none;
    margin-right: 0;
  }
  ul.head-sns li:last-child{
    margin-top: 10px;
  }
}

p.top-txt{
  border-bottom: 1px solid #ccc;
  font-size: 1.4rem;
  text-align: center;
  line-height: 55px;
}
@media screen and (max-width:650px){
  p.top-txt{
    font-size: 1.2rem;
    line-height: 140%;;
    padding: 10px;
  }
}


/*-----------------------------
メインコンテンツ
-----------------------------*/
section.main-entry{
  background: url(../img/back_pattern.jpg) repeat;
  padding-bottom: 80px;
}
.main-contents{
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  margin-bottom: 80px;
}
.under-content{
  overflow: hidden;
}
.under-content .code-memo{
  width: 545px;
  float: left;
  margin-right: 35px;
  min-height: 475px;
}
.under-content .category-link{
  float: right;
  width: 400px;
  min-height: 475px;
}
.under-content .category-link,
.under-content .code-memo{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 20px 30px 15px;
}


section.main-entry article{
  width : 33.33333% ; /* 未対応ブラウザ用フォールバック */
  width : -webkit-calc(100% / 3) ;
  width : calc(100% / 3) ;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 17px 20px 30px;
  position: relative;
}
section.main-entry article{
  border-right: 1px solid #ccc;
  border-bottom : 1px solid #ccc;
}
section.main-entry article:nth-child(3n){
  border-right: 0;
}

@media screen and (max-width:650px){
  .main-contents{
    background-color: transparent;
    border: none;
    margin-bottom: 40px;
  }
  section.main-entry article{
    border: 1px solid #ccc;
    width: 96%;
    margin: auto;
    float: none;
    margin-top: 15px;
    background-color: #fff;
  }
  section.main-entry article:nth-child(3n){
    border-right: 1px solid #ccc;
  }
  .under-content .category-link,
  .under-content .code-memo{
    width: 100%;
    padding: 15px 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 15px;
  }
  .under-content .category-link {
    min-height: auto;
  }
}
section.main-entry article img{
  width: 100%;
  height: auto;
  margin-bottom: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
}
section.main-entry article a:hover img{
	opacity:0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha( opacity=60 )";
	background: #fff;
}
section.main-entry article .inner{
  height: 120px;
}
@media screen and (max-width:650px){
  section.main-entry article .inner{
    height: auto;
  }
}
section.main-entry article h2{
  font-size: 1.5rem;
  line-height: 140%;
  margin-bottom: 10px;
}
@media screen and (max-width:650px){
  section.main-entry article h2{
    font-size: 1.4rem;
    line-height: 140%;
    margin-bottom: 5px;
  }
}

section.main-entry article h2 a:hover{
  color: #fd284c;
}
section.main-entry article .inner p{
  font-size: 1.1rem;
  color: #808080;
}
section.main-entry article .entry-info ul{
  overflow: hidden;
}
section.main-entry article .entry-info ul li{
  font-size: 1.1rem;
  float: left;
  margin-right: 15px;
}
section.main-entry article .entry-info{
  position: absolute;
  bottom: 5px;
  left: 17px;
}
section.main-entry article .entry-info ul li:last-child{
  margin-right: 0;
}
section.main-entry article .entry-info ul li a{
  color: #fd284c;
}
section.main-entry .paging-Box{
  clear: both;
  border-bottom: 1px solid #ccc;
  text-align: center;
  margin:auto;
  padding: 20px 0;
}
section.main-entry .paging-Box ul li{
  display: inline-block;
  margin-right: 10px;
  border: 1px solid #ccc;
  font-size: 1.4rem;
  width: 45px;
  height: 45px;
  line-height: 45px;
}
section.main-entry .paging-Box ul li a{
  line-height: 45px;
  display: block;
}
section.main-entry .paging-Box ul li.active{
  background-color: #ccc;
  color: #fff;
}
@media screen and (max-width:650px){
  section.main-entry .paging-Box{
    background-color: #fff;
    border: 1px solid #ccc;
    margin: 15px auto 0;
    width: 96%;
  }
  section.main-entry .paging-Box{
    padding: 20px 0 10px;
  }
  section.main-entry .paging-Box ul li{
    margin-bottom: 10px;
  }
}

.under-content .category-link h3,
.under-content .code-memo h3{
  font-size: 2.3rem;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}
.under-content .category-link h3:first-letter,
.under-content .code-memo h3:first-letter{
  color: #fd284c;
}
.under-content .code-memo ul{
  margin: 20px 0 30px;
}
.under-content .code-memo ul li{
  border-bottom: 1px dashed #808080;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  overflow: hidden;
}
.under-content .code-memo ul li p.category{
  background-color: #fd284c;
  color: #fff;
  font-size: 1.1rem;
  padding: 3px 10px;
  margin-right: 2%;
  border-radius: 5px;
  width: 16%;
  float: left;
  box-sizing: border-box;
  text-align: center;
}
.under-content .code-memo ul li a{
  color: #1ebeb4;
  display: block;
  width: 81%;
  float: right;
}
.under-content .code-memo ul li a:hover{
  text-decoration: underline;
}
.under-content .code-memo .read-more{
  width: 70%;
  border: 1px solid #fd284c;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  margin: auto;
  margin-bottom: 20px;
}
.under-content .code-memo .read-more a{
  color: #fff;
  display: block;
  line-height: 55px;
  color: #fd284c;
}
.under-content .code-memo .read-more a:hover{
  background-color: #fd284c;
  color: #fff;
}

@media screen and (max-width:650px){
  .under-content .code-memo ul li{
    font-size: 1.3rem;
  }
  .under-content .code-memo ul li p.category{
    margin-bottom: 5px;
    float: none;
    display: inline-block;
    width: auto;
    margin-bottom: 3px;
  }
  .under-content .code-memo ul li a{
    display: block;
    width: 100%;
  }
  .under-content .code-memo .read-more{
    width: 90%;
    font-size: 1.3rem;
  }

}

.under-content .category-link ul{
  margin-top: 15px;
}

.under-content .category-link ul li{
  font-size: 1.9rem;
  margin-bottom: 15px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  background-color: #333;
  position: relative;
}
.under-content .category-link ul li a{
  padding-left: 15px;
  color: #fff;
  line-height: 55px;
  display: block;
}
.under-content .category-link ul li a:hover{
  background-color: #fd284c;
}
.under-content .category-link ul li p.number{
  position: absolute;
  right: 10px;
  top:10px;
  display: inline-block;
  background-color: #fff;
  color: #ccc;
  font-size: 2.3rem;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  padding: 3px 15px;
  border-radius: 10px;
}

@media screen and (max-width:650px){
  .under-content .category-link ul li{
    font-size: 1.4rem;
  }
  .under-content .category-link ul li p.number{
    font-size: 1.7rem;
    top: 14px;
  }
}
/*--------------------------------
  footer
--------------------------------*/

footer{
  border-top: 4px solid #fd284c;
}
footer .foot-link{
  width: 90%;
  padding: 0 5%;
  margin: auto;
  text-align: center;
}
footer .foot-link ul{
  padding: 30px 10px 10px;
}
footer .foot-link ul li{
  display: inline-block;
  margin-right: 10px;
  font-size: 1.5rem;
  border: 1px solid #ccc;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  margin-bottom: 20px;
}
footer .foot-link ul li a{
  display: block;
  padding: 10px 30px;
}
footer .foot-link ul li a:hover{
  background-color: #333;
  color: #fff;
}
@media screen and (max-width:650px){
  footer .foot-link ul li {
    width: 45.5%;
    margin-right: 5%;
  }
  footer .foot-link ul li:nth-child(2n){
    margin-right: 0;
  }

}

footer .foot-prof{
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 30px 0 20px;
  margin-bottom: 80px;
}
footer .foot-prof .prof-Box{
  padding: 0 150px;
  overflow: hidden;
  margin-bottom: 15px;
}
footer .foot-prof .prof-Box .left{
  width: 12%;
  height: auto;
  float: left;
  margin-right: 3%;
}
footer .foot-prof .prof-Box .left img{
  width: 100%;
  height: auto;
  border: 3px solid #ccc;
  border-radius: 150px;
}
footer .foot-prof .prof-Box .right{
  width: 85%;
  float: right;
  padding: 15px 0 40px;
  position: relative;
}
footer .foot-prof .prof-Box .right .read-more{
  position: absolute;
  right: 0;
  border: 1px solid #ccc;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  display: inline-block;
}
footer .foot-prof .prof-Box .right .read-more a{
  color: #fd284c;
  display: block;
  padding: 10px 30px;
}
footer .foot-prof .prof-Box .right .read-more a:hover{
  color: #fff;
  background-color: #fd284c;
}
footer .foot-prof ul.foot-sns li{
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 20px;
}
footer .foot-prof ul.foot-sns li:last-child{
  margin-right: 0;
}
footer .foot-prof ul.foot-sns li img{
  width: 100%;
  height: auto;
}
footer .copyright,
footer .description,
footer .foot-logo{
  text-align: center;
  margin-bottom: 10px;
}
footer .foot-logo img{
  width: 200px;
  height: auto;
}
footer .copyright{
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: #666;
}

@media screen and (max-width:650px){
  footer .foot-prof{
    margin-bottom: 40px;
  }
  footer .foot-prof .prof-Box{
    padding: 0 2%;
    margin-bottom: 15px;
  }
  footer .foot-prof .prof-Box .left{
    width: 100%;
    float: none;
    margin-right: 0;
    text-align: center;
  }
  footer .foot-prof .prof-Box .left img{
    width: 100px;
    height: auto;
    border: 3px solid #ccc;
    border-radius: 150px;
  }
  footer .foot-prof .prof-Box .right{
    width: 100%;
    float: none;
    padding: 10px 0 40px;
  }
  footer .foot-logo img{
    width: 150px;
  }
  footer .description{
    padding: 0 3%;
  }
}

/*----------------------------------
  Category-page
----------------------------------*/
.category-name{
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
}
.category-name dl{
  width: 60%;
  float: left;
  font-family: 'Josefin Sans', sans-serif;
}
.category-name ul.pankuzu{
  width: 35%;
  float: right;
  margin-left: 5%;
  line-height: 50px;
}
.category-name dl dt{
  font-size: 1.4rem;
  font-weight:700;
  float: left;
  padding-top: 20px;
  padding-right: 40px;
  color: #fd284c;
  position: relative;
}
.category-name dl dt:after{
  content: '';
  position: absolute;
  top: 20px;;
  right: 20px;
  width: 10px;
  height: 10px;
  background: url(../img/icon_arrow-red.png) no-repeat;
  background-size: 100%;
}
.category-name dl dd{
  font-size: 3.3rem;
  font-weight: 600;
  display: inline-block;
  padding: 10px 10px 0;
  background: linear-gradient(transparent 60%, #ffff66 60%);
}
.category-name ul.pankuzu{
  overflow: hidden;
}
.category-name ul.pankuzu li{
  float: right;
  font-size: 1.1rem;
  margin-left: 5px;
}
.category-name ul.pankuzu li:after{
  content: '<';
  margin-left: 5px;
}
.category-name ul.pankuzu li:first-child:after{
  content: none;
}
.category-name ul.pankuzu li a{
  text-decoration: underline;
}
@media screen and (max-width:650px){
  .category-name dl{
    width: 98%;
    float: none;
    margin-left: 2%;
  }
  .category-name dl dt{
    font-size: 1.3rem;
    padding-top: 20px;
    padding-right: 30px;
  }
  .category-name dl dt:after{
    top: 20px;
    right: 10px;
    width: 10px;
    height: 10px;
  }
  .category-name dl dd{
    font-size: 2.7rem;
    padding: 10px 10px 0;
    background: linear-gradient(transparent 60%, #ffff66 60%);
  }
  .category-name ul.pankuzu{
    width: 98%;
    float: none;
    margin-left: 2%;
    margin-bottom: 5px;
    line-height: 140%;
  }
  .category-name ul.pankuzu li{
    float: left;
  }
  .category-name ul.pankuzu li:after{
    content: '>';
    margin-left: 5px;
    margin-right: 5px;
  }
  .category-name ul.pankuzu li:first-child:after{
    content: '>';
  }
  .category-name ul.pankuzu li:last-child:after{
    content: none;
  }
}

/*-----------------------------
  Single-page
-----------------------------*/
section.single-page{
  padding-bottom: 100px;
}
@media screen and (max-width: 640px) {
  section.single-page{
    padding-bottom: 50px;
  }
}

section.single-page .single-info{
  border-bottom: 1px solid #ccc;
}
section.single-page .single-info ul{
  width: 720px;
  margin: auto;
  padding: 10px 0;
  overflow: hidden;
}
section.single-page .single-info ul li{
  position: relative;
  padding-left: 25px;
  float: left;
  margin-right: 30px;
  font-size: 1.0rem;
}
section.single-page .single-info ul li:before{
  content: '';
  position: absolute;
  top:0;
  bottom: 0;
  margin: auto;
  left: 0;
}
section.single-page .single-info ul li.day:before{
  width: 15px;
  height: 17px;
  background: url(../img/icon_calendar.png) no-repeat;
  background-size: 100%;
}
section.single-page .single-info ul li.category:before{
  width: 13px;
  height: 17px;
  background: url(../img/icon_category.png) no-repeat;
  background-size: 100%;
}
section.single-page .single-info ul li.tag:before{
  width: 17px;
  height: 17px;
  background: url(../img/icon_tag.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 640px) {
  section.single-page .single-info ul{
    width: 98%;
  }
  section.single-page .single-info ul li{
    margin-bottom: 10px;
  }
  section.single-page .single-info ul li:last-child{
    margin-bottom: 0;
  }
}

section.single-page .title-back{
  background: url(../img/back_pattern.jpg) repeat;
  border-bottom: 1px solid #ccc;
}
section.single-page .title-back h1{
  width: 720px;
  margin: auto;
  padding: 45px 0;
  font-size: 2.5rem;
  font-weight: normal;
}
.single-main-width{
  width: 730px;
  margin: auto;
}
@media screen and (max-width: 640px) {
  section.single-page .title-back h1{
    width: 96%;
    padding: 20px 0;
    font-size: 1.8rem;
  }
  .single-main-width{
    width: 98%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.code-memo-Box ul.pankuzu,
.single-main-width ul.pankuzu{
  margin: 10px 0 20px;
}
.code-memo-Box ul.pankuzu li,
.single-main-width ul.pankuzu li{
  display: inline-block;
  margin-right: 10px;
  font-size: 1.0rem;
}
.code-memo-Box ul.pankuzu li:after,
.single-main-width ul.pankuzu li:after{
  content: '>';
  padding-left: 10px;
}
.code-memo-Box ul.pankuzu li:last-child:after,
.single-main-width ul.pankuzu li:last-child:after{
  content: none;
}
.code-memo-Box ul.pankuzu li a,
.single-main-width ul.pankuzu li a{
  text-decoration: underline;
  color: #3498db;
}
.single-main-width .main-icatch{
  text-align: center;
  margin-bottom: 40px;
}
.single-main-width .main-icatch img{
  max-width: 720px;
  max-height: auto;
}
@media screen and (max-width: 640px) {
  .single-main-width .main-icatch{
    margin-bottom: 30px;
    margin: 0 -1%;
  }
  .single-main-width .main-icatch img{
    max-width: 100%;
    height: auto;
  }
}

.single-main-width .the-content-Box{
  font-size: 1.4rem;
  font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN',Meiryo,メイリオ,'YuGothic','游ゴシック',Helvetica,Arial,sans-serif;
  padding-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .single-main-width .the-content-Box{
    padding: 0 10px 40px 10px;
    font-size: 1.4rem;
    padding-bottom: 40px;
  }
}
.single-main-width .the-content-Box p{
  line-height: 25px;
  margin-top: 20px;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
.single-main-width .the-content-Box p a{
  color: #3498db;
  text-decoration: underline;
}
.single-main-width .the-content-Box img{
  margin-top: 20px;
  max-width: 720px;
  height: auto;
}
.single-main-width .the-content-Box img.aligncenter{
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.single-main-width .the-content-Box img.alignright {
  padding: 4px;
  margin: 0 0 10px 10px;
  display: inline;
}
.single-main-width .the-content-Box img.alignleft {
  margin: 0 10px 10px 0;
  display: inline;
}
.single-main-width .the-content-Box .alignright {
  float: right;
}
.single-main-width .the-content-Box .alignleft {
  float: left
}

.single-main-width .the-content-Box h2{
  margin-top: 60px;
  background-color: #f4f4f4;
  font-size: 2.0rem;
  font-weight: normal;
  margin-bottom: 15px;
  padding: 5px 10px;
}
.single-main-width .the-content-Box h2:first-letter{
  font-size: 2.5rem;
  color: #fd284c;
}
.single-main-width .the-content-Box h4,
.single-main-width .the-content-Box h3{
  font-size: 2.0rem;
  margin-top: 50px;
  font-weight: normal;
}
@media screen and (max-width: 640px) {
  .single-main-width .the-content-Box img{
    max-width: 100%;
    height: auto;
  }
  .single-main-width .the-content-Box h2{
    margin-top: 40px;
    font-size: 1.8rem;
    padding: 5px 10px;
  }
  .single-main-width .the-content-Box h2:first-letter{
    font-size: 1.8rem;
  }
  .single-main-width .the-content-Box h4,
  .single-main-width .the-content-Box h3{
    font-size: 1.8rem;
    margin-top: 40px;
  }
}
.single-main-width .the-content-Box a.demo-btn,
.single-main-width .the-content-Box .demo{
  background-color: #fd284c;
  width: 50%;
  display: inline-block;
  outline: solid 4px #fd284c;
  border: solid 1px #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 45px;
  padding-left: 20px;
  margin: 20px 0 15px;
  position: relative;
}
.single-main-width .the-content-Box a.demo-btn,
.single-main-width .the-content-Box .demo a{
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 30px;
}
.single-main-width .the-content-Box a.demo-btn:after,
.single-main-width .the-content-Box .demo:after{
  content: '';
  position: absolute;
  top:0;
  bottom: 0;
  margin: auto;
  right: 15px;
  width:17px;
  height: 15px;
  background: url(../img/icon_link-white.png) no-repeat;
  background-size: 100%;
}

.single-main-width .the-content-Box a.demo-btn:hover,
.single-main-width .the-content-Box .demo:hover{
  background-color: #555;
  outline: solid 4px #555;
  -webkit-transition: all .9s;
  transition: all .9s;
}
@media screen and (max-width: 640px) {
  .single-main-width .the-content-Box a.demo-btn,
  .single-main-width .the-content-Box .demo{
    width: 70%;
  }
}

.single-main-width .the-content-Box ul{
  margin-top: 50px;
}
.single-main-width .the-content-Box ul li{
  margin-bottom: 20px;
  padding-left: 45px;
  position: relative;
}
.single-main-width .the-content-Box ul li:before{
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  top:0;
  bottom: 0;
  margin: auto;
  left: 15px;
  background-color: #fd284c;
  border-radius: 15px;
}
@media screen and (max-width: 640px) {
  .single-main-width .the-content-Box ul{
    margin-top: 40px;
  }
  .single-main-width .the-content-Box ul li{
    padding-left: 30px;
  }
  .single-main-width .the-content-Box ul li:before{
    left: 5px;
  }
}

.single-main-width .the-content-Box ul.link-list{
  background-color: #fafafa;
  padding: 30px 30px 30px 0;
  margin-top: 5px;
}
.single-main-width .the-content-Box ul.link-list li{
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
}
.single-main-width .the-content-Box ul.link-list li a{
  color: #3498db;
  text-decoration: underline;
}
.single-main-width .the-content-Box ul.link-list li:before{
  content: '';
  position: absolute;
  top:0;
  bottom: 0;
  margin: auto;
  left: 15px;
  width:17px;
  height: 15px;
  background: url(../img/icon_link-blue.png) no-repeat;
  background-size: 100%;
  border-radius: 0;
}
@media screen and (max-width: 640px) {
  .single-main-width .the-content-Box ul.link-list{
    padding: 15px 15px 15px 0;
  }
  .single-main-width .the-content-Box ul.link-list li{
    padding-left: 30px;
    margin-bottom: 15px;
  }
  .single-main-width .the-content-Box ul.link-list li:before{
    left: 5px;
  }
}

.single-main-width .the-content-Box blockquote{
  background-color: #f4f4f4;
  margin-top: 50px;
  padding: 5% 50px;
  line-height: 30px;
  position: relative;
}
.single-main-width .the-content-Box blockquote:before{
  content: '';
  position: absolute;
  left: 25px;
  height: auto;
  width: 5px;
  background-color: #c8c8c8;
  height: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.single-main-width .the-content-Box blockquote cite{
  display: block;
  font-style: normal;
  text-align: right;
}
.single-main-width .the-content-Box blockquote cite a{
  color: #3498db;
  text-decoration: underline;
}
@media screen and (max-width: 640px) {
  .single-main-width .the-content-Box blockquote{
    padding: 3% 20px;
  }
  .single-main-width .the-content-Box blockquote:before{
    left: 0;
    height: 100%;
  }
}

.single-main-width .the-content-Box dl{
	border:1px solid #999;
	border-top:0;
	background:#f1f1f1;
}
.single-main-width .the-content-Box dl dt{
	float:left;
  width: 30%;
	border-top:1px solid #999;
	padding-top:10px;
	padding-left:10px;
	padding-bottom:0;
	padding-right:0;
}
.single-main-width .the-content-Box dl dd{
	margin-left:30%;
	padding:10px;
	border-top:1px solid #999;
	border-left:1px solid #999;
	background:#fff;
}



.single-main-width .share-Box h5{
  font-size: 2.0rem;
  margin-top: 40px;
  font-weight: normal;
}
.single-main-width .share-Box ul{
  margin: 10px 0 30px;
  overflow: hidden;
}
.single-main-width .share-Box ul li{
  width: 20%;
  float: left;
  line-height: 45px;
  text-align: center;
}
.single-main-width .share-Box ul li a{
  color: #fff;
  display: block;
}
.single-main-width .share-Box ul li.twitter{
  background-color: #65bcf3;
}
.single-main-width .share-Box ul li.facebook{
  background-color: #5171b7;
}
.single-main-width .share-Box ul li.googleplus{
  background-color: #d24c35;
}
.single-main-width .share-Box ul li.hatebu{
  background-color: #00b3e5;
}
.single-main-width .share-Box ul li.pocket{
  background-color: #f45c69;
}
@media screen and (max-width: 640px) {
  .single-main-width .share-Box ul{
    margin: 10px 0 0;
    padding: 15px 0;
  }
  .single-main-width .share-Box ul li{
    font-size: 1.1rem;
  }
  .single-main-width .share-Box ul li i{
    display: none;
  }
}

section.single-page ul.single-paging{
  overflow: hidden;
  margin: 50px 0;
}
section.single-page ul.single-paging li{
  width: 47.5%;
  min-height: 110px;
  float: left;
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 20px 20px;
}
section.single-page ul.single-paging li.prev{
  margin-right: 5%;
}
section.single-page ul.single-paging li span{
  display: block;
  margin-bottom: 15px;
  font-size: 2.0rem;
}
section.single-page ul.single-paging li.next span{
  text-align: right;
}
section.single-page ul.single-paging li a{
  font-size: 1.4rem;
  color: #3498db;
  text-decoration: underline;
}
@media screen and (max-width: 640px) {
  section.single-page ul.single-paging li{
    width: 100%;
    float: none;
    margin-bottom: 15px;
  }
  section.single-page ul.single-paging li span{
    display: block;
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  section.single-page ul.single-paging li a{
    font-size: 1.2rem;
  }
}

section.single-page .related-Box{
  margin: 60px 0 50px;
}
section.single-page .related-Box p{
  font-size: 1.6rem;
  color: #9c9c9c;
  margin: 20px 0;
}
section.single-page .related-Box h5{
	position: relative;
	background: #fd284c;
	font-size: 1.8rem;
	color: #fff;
	font-weight: normal;
	padding: 12px 40px;
	margin-bottom: 25px;
}
section.single-page .related-Box h5:after{
	top: 100%;
	left: 20%;
	border: solid transparent;
	content: ' ';
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(253, 40, 76, 0);
	border-top-color: #fd284c;
	border-width: 15px;
	margin-left: -15px;
}
@media screen and (max-width: 640px) {
  section.single-page .related-Box h5{
  	font-size: 1.6rem;
  	padding: 5px 20px;
  }
}

section.single-page .related-Box ul{
  overflow: hidden;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
section.single-page .related-Box ul li{
  width: 33.33333%;
  width: -webkit-calc(100% / 3);
  width: calc(100% / 3);
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 15px;
}
section.single-page .related-Box ul li:nth-child(3n){
  border-right: 0;
}
section.single-page .related-Box ul li h6{
  font-size: 1.3rem;
  line-height: 150%;
  height: 65px;
}
section.single-page .related-Box ul li h6 a:hover{
  color: #fd284c;
}
section.single-page .related-Box ul li img{
  width: 100%;
  height: auto;
}
section.single-page .related-Box ul li a:hover img{
	opacity:0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha( opacity=60 )";
}
@media screen and (max-width: 640px) {
  section.single-page .related-Box ul li{
    width: 50%;
    width: -webkit-calc(100% / 2);
    width: calc(100% / 2);
    padding: 10px;
  }
  section.single-page .related-Box ul li:nth-child(3n){
    border-right: 1px solid #ccc;
  }
  section.single-page .related-Box ul li:nth-child(2n){
    border-right: 0;
  }
  section.single-page .related-Box ul li h6{
    font-size: 1.2rem;
    line-height: 130%;
    min-height: 70px;
  }
}

/*-----------------------------------
  Comment-Parts
-----------------------------------*/
.comment_Box{
  margin: 100px auto 50px;
  font-size: 1.4rem;
}
.comment_Box h3{
  font-size: 2.0rem;
  margin-top: 40px;
  font-weight: normal;
}
.comment_Box label{
  display: block;
  margin: 10px 0 5px;
  font-size: 1.3rem;
}
.comment_Box textarea{
  width: 100%;
  border: 1px solid #ccc;
  font-size: 1.3rem;
  padding: 5px;
}
.comment_Box input{
  border: 1px solid #ccc;
  padding: 5px;
  width: 100%;
  font-size: 1.3rem;
}
.comment_Box input#submit{
  width: 250px;
  background-color: #fd284c;
  margin-top: 30px;
  color: #fff;
  font-size: 1.3rem;
}
.comment-lists-wrap h4{
  font-size: 2.0rem;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: normal;
}
.comment-lists-wrap ol {
  list-style-position: inside;
}
.comment-lists-wrap ol li{
  overflow: hidden;
}
.comment-lists-wrap ol li.even{　/* コメントグループの区切り */
  border-bottom: 1px solid #F9003C;
}
.comment-lists-wrap ol .children { /* 返信コメントの部分 */
  margin-left: 10%;
}
.comment-lists-wrap .reply{/* 返信ボタン */
  background-color:#E5E5E5;
  line-height: 20px;
  width: 50px;
  font-size: 1.0rem;
  text-align: center;
  border: 1px solid #626262;
  float: right;
  margin-bottom: 2%;
}
.comment-lists-wrap .reply a {
  color:#626262;
  display: block;
}
.comment-lists-wrap .comment-author{/* アバター */
  width:15%;
  float: left;
  overflow: hidden;
}
.comment-lists-wrap .comment-author img{
  display: block;
  margin: auto;
  margin: 0 auto 5px;
}
.comment-lists-wrap span.says{/* コメント投稿者の「より」を非表示 */
  display: none;
}
.comment-lists-wrap .comment-body{
  clear: both;
  margin-top: 2%;
  overflow: hidden;
}
.comment-lists-wrap .comment-body p{/* 文章部分 */
     overflow: hidden;
     border:1px dashed #F9003C;
     padding:2%;
     margin: 0 0 2% 0!important;
}
.comment-lists-wrap .fn {/* コメント投稿者の名前の部分（デフォルトではイタリックになってる部分） */
  display: block;
  font-style: normal;
  clear: both;
  text-align: center;
  font-family: 1.2rem;
}
.comment-lists-wrap .comment-meta{/* コメント投稿日 */
  text-align: right;
}
.comment-lists-wrap .comment-meta a{
  color: #626262;
}

/*----------------------------
  固定ページ
----------------------------*/
.page-main-width{
  width: 730px;
  margin: auto;
  padding: 30px 0 100px;
}
.page-main-width ul.pankuzu{
  overflow: hidden;
}
.page-main-width ul.pankuzu li{
  float: right;
  font-size: 1.1rem;
  margin-left: 5px;
}
.page-main-width ul.pankuzu li:after{
  content: '<';
  margin-left: 5px;
}
.page-main-width ul.pankuzu li:first-child:after{
  content: none;
}
.page-main-width ul.pankuzu li a{
  text-decoration: underline;
}
.page-main-width h1{
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 3.5rem;
  margin: 20px 0 40px;
}
.page-main-width .about-Box{
  overflow: hidden;
}
.page-main-width .about-Box .left{
  width: 20%;
  float: left;
  margin-right: 5%;
}
.page-main-width .about-Box .right{
  width: 75%;
  float: right;
  margin-top: -50px;
}
.page-main-width .about-Box .left img{
  width: 100%;
  height: auto;
  border: 3px solid #ccc;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 100px;
}
.page-main-width .about-Box .right h2{
  font-size: 1.7rem;
  font-weight: normal;
  margin: 50px 0 10px;
}
.page-main-width .about-Box .right p{
  line-height: 25px;
  margin-top: 20px;
  font-size: 1.4rem;
}
.page-main-width .about-Box .right ul li{
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.page-main-width .about-Box .right ul li b{
  margin-right: 5px;
}
.page-main-width .about-Box .about-contact-Box textarea,
.page-main-width .about-Box .about-contact-Box input{
  font-size: 1.4rem;
  padding: 5px;
  border: 1px solid #ccc;
  color: #393436;
}
.page-main-width .about-Box .about-contact-Box input[type="submit"]{
  padding: 5px 20px;
}
.page-main-width .about-Box p{
  margin-bottom: 15px;
}

@media screen and (max-width: 640px) {
  .page-main-width{
    width: 100%;
    margin: auto;
    padding: 30px 0 50px;
  }
  .page-main-width .about-Box .left{
    width: 96%;
    float: none;
    margin: auto;
    text-align: center;
  }
  .page-main-width .about-Box .right{
    width: 96%;
    float: none;
    margin: -30px auto 0;
  }
  .page-main-width .about-Box .left img{
    width: 40%;
    max-width: 200px;
  }
  .page-main-width .about-Box .about-contact-Box{
    width: 96%;
    margin: auto;
  }
  .page-main-width .about-Box .about-contact-Box textarea,
  .page-main-width .about-Box .about-contact-Box input{
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  .page-main-width .about-Box .about-contact-Box input[type="submit"]{
    width: 40%;
  }
}

/*-------------------------------
  Code-memo
-------------------------------*/

section.main-entry .code-memo-Box h1{
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 3.5rem;
  margin: 40px 0 40px;
}
section.main-entry .code-memo-Box{
  overflow: hidden;
}
section.main-entry .code-memo-Box .main{
  width: 700px;
  margin-right: 75px;
  float: left;
}
section.main-entry .code-memo-Box .side{
  width: 205px;
  float: right;
}
@media screen and (max-width: 640px) {
  section.main-entry .code-memo-Box .main{
    width: 100%;
    margin-right: 0;
    float: none;
    margin-bottom: 50px;
  }
  section.main-entry .code-memo-Box .side{
    width: 94%;
    margin: auto;
    float: none;
  }
}

.code-memo-Box .main ul.memo-list li{
  margin-bottom: 20px;
  background-color: #fff;
}
.code-memo-Box .main ul.memo-list li a{
  padding: 20px;
  display: block;
  border: 1px dashed #828282;
}
.code-memo-Box .main ul.memo-list li span.category{
  background-color: #828282;
  display: inline-block;
  padding: 5px 10px;
  width: 15%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  text-align: center;
}
.code-memo-Box .main ul.memo-list li a span.category{
  color: #fff;
}
.code-memo-Box .main ul.memo-list li h2{
  width: 75%;
  font-weight: normal;
  font-size: 1.6rem;
  display: inline-block;
  margin-left: 5%;
}
.code-memo-Box .main ul.memo-list li a:hover{
  background-color: #454545;
  border: 1px solid #828282;
}
.code-memo-Box .main ul.memo-list li a:hover h2{
  color: #fff;
}
@media screen and (max-width: 640px) {
  .code-memo-Box .main ul.memo-list li a{
    padding: 10px;
  }
  .code-memo-Box .main ul.memo-list li span.category{
    width: auto;
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }
  .code-memo-Box .main ul.memo-list li h2{
    width: 100%;
    font-size: 1.4rem;
    margin-left: 0;
  }
}
.code-memo-Box .side h3{
  border-top: 1px solid #828282;
  border-bottom: 1px solid #828282;
  text-align: right;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 2.0rem;
  padding: 10px 0;
  margin-bottom: 20px;
}
.code-memo-Box .side ul li{
  margin-bottom: 10px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 1.7rem;
  letter-spacing: 2px;
}
.code-memo-Box .side ul li a{
  padding-left: 10px;
  position: relative;
}
.code-memo-Box .side ul li a:before{
  content: '';
  position: absolute;
  left: 0;
  top:0;
  bottom: 0;
  margin: auto;
  width: 4px;
  height: 4px;
  background-color: #828282;
  border-radius: 5px;
}
.code-memo-Box .side ul li a:hover{
  color: #fd284c;
}
.code-memo-Box .side ul li a p.number{
  display: inline;
}
.code-memo-Box .side ul li a p.number:before{
  content: '(';
}
.code-memo-Box .side ul li a p.number:after{
  content: ')';
}
@media screen and (max-width: 640px) {
.code-memo-Box .side h3{
  text-align: left;
}
}

.wpcf7-form-control-wrap {
    margin-bottom: 15px;
}


/**************************************/
/*Code Memo 関連記事*/
/**************************************/
.related-code-memo {
    padding-bottom: 50px;
    border-bottom: 1px solid #ccc;
}

.related-code-memo h5 {
    font-size: 2.0rem;
    margin-top: 40px;
    font-weight: normal;
    border-bottom: 1px solid #393436;
}
.related-code-memo ul {
    margin-top: 15px;
}
.related-code-memo ul li {
    margin-bottom: 1em;
}
.related-code-memo ul li a {
    position: relative;
    display: block;
    padding: 0.7em 0 0.7em 40px;
    font-size: 1.4rem;
    text-decoration: underline;
}
.related-code-memo ul li a:hover {
    color: #3498db;
    text-decoration: underline;
}

.related-code-memo ul li a:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    content: '';
    width: 28px;
    height: 34px;
    margin: auto;
    background: url(../img/ico-memo.png)no-repeat;
    background-size: 100%;
}
