@charset "UTF-8";

/* デスクトップPCとスマホに適用するCSS */
body,p,h1,h2,h3,h4,style,ul,li{
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 90%;
}
header{
    width: 100%;
    text-align: center;
}
header h1{
    font-size: 2em;
    margin: 13px 0;
}
#nav-content{
    border-bottom: 1px solid #cccccc;
    box-shadow: 0 4px 4px #eeeeee;
    margin-bottom: 20px;
}
#nav-content ul{
    text-align: center;
}
#nav-content ul li{
    display: inline-block;
    padding: 30px 15px;
}
.navl{
    border-right: 1px solid #dddddd;
}
#wrapper{
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}
.link_unsei,.link_tarotto{
    display: inline-block;
    padding: 20px;
    width: 40%;
    margin: 10px;
}
.link_unsei{
    border: 2px solid #876558;
}
.link_tarotto{
    border: 2px solid #876558;
}
#article_area{
}
.article{
    display: inline-block;
    width: 30%;
    max-width: 400px;
    min-width: 200px;
    text-align: left;
    margin: 10px 10px 20px 10px;
}
.article .article_area_img{
    width: 100%;
    height: 150px;
    background-size: 100%;
    display: block;
    margin: 10px 0;
}
.article ul li{
    background-color: #eeeeee;
    padding: 3px 5px;
    display: inline-block;
    font-size: 0.5em;
    border-radius: 5px;
}
.article .date_area{
    font-size: 0.5em;
    background-color: transparent;
}
.date_area_img{
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background-image: url(images/images.jpg);
    display: inline-block;
    vertical-align: middle;
}
.article h4{
    padding: 5px 0;
    font-size: 1.1em;
}
.article p{
    font-size: 0.8em;
    line-height: 150%;
    color: #999999;
    padding: 5px 0;
}
/*▼スマホのみ適用CSSここから---------------------------------------------------------------------------*/  
@media screen and ( max-width:670px )
{
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  transition: all 0.4s;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #ff69b4;
  display: block;
  content: '';
  cursor: pointer;
  z-index: 9999;/*最前面*/
}

#nav-open span:before {
  bottom: -8px;
}

#nav-open span:after {
  bottom: -16px;
}


/*中身*/
#nav-content {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: .2s ease-in-out;
}

#nav-content.open {
  display: block;
  opacity: 1;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);/*背景色*/
  overflow: hidden;/*ブラー効果でボヤけた部分を非表示*/
}


/*:beforeにぼかし効果を設定する*/
#nav-content.open:before {
  content: '';
  overflow: hidden;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  z-index: -1;/*重なり順序を一番下にしておく*/
}


/*チェックが入ったら表示する内容*/

.hamburger-top {
  height: 40px;/*×ボタンと被らないように*/
}

.category {
  text-align: center;
  margin-top: 2rem;
}

.category-title {
  padding: 0.5rem;
}

.category-title a {
  color: #333;
  text-decoration: none;
}


/*三本線を動かす*/
#nav-open.active span {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

#nav-open.active span:before {
  -webkit-transform: translateY(-8px) rotate(45deg);/*打ち消す*/
  transform: translateY(-8px) rotate(45deg);/*打ち消す*/
  opacity: 0;
}

#nav-open.active span:after {
  -webkit-transform: translateY(-16px) rotate(45deg);
  transform: translateY(-16px) rotate(90deg);
}
  /*▲ハンバーガーナビ用css*/  
    
    
    
    
  /*▲スマホのみ適用CSSここまで*/  
}