@charset "UTF-8";
html { font-size: 62.5%; }   /*   rem    */
body{
  font-family: Verdana, Meiryo, sans-serif;
  line-height: 1.5;
  font-size:1.4rem;
  }

*{
            box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a{
  -ms-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
  text-decoration: none;
  word-break: break-all;
}
/*  画像  */
a:hover img {
  opacity: 0.6;
  text-decoration: none;
}
img {
  max-width: 100%;
}
.img-responsive {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

/* =======================================
    共通クラス名
======================================= */
.mincho {
  font-family: "Times New Roman", "游明朝", YuMincho,"ヒラギノ明朝 Pr6 W6","Hiragino Mincho Pro", "HGS明朝E","メイリオ", "ＭＳ Ｐ明朝","MS PMincho",Meiryo, serif;
}
.gothic {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.table {
display: table;
width: 100%;
}

.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

.mb15 { margin-bottom: 15px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb45 { margin-bottom: 45px !important; }
.mb60 { margin-bottom: 60px !important; }

.mt15 { margin-top: 15px !important; }
.mt30 { margin-top: 30px !important; }
.mt45 { margin-top: 45px !important; }
.mt60 { margin-top: 60px !important; }

.pc-only { display: block !important; }
.sp-only { display: none !important; }

/*↓clearfix*/
.cf:before,
.cf:after{
  content:"";
  display: table;
}
.cf:after{
  clear:both;
}
/*IE6,7対策 （haslayout対策）*/
.cf{
  *zoom:1;
}

/* =======================================
    font
======================================= */
h1, h2, h3, h4, h5{
  line-height: 1.2;
  font-weight: normal;
  }
h3,
.swiper-slide .title,
.slick-slider .title{
  font-size: 2.4rem;
  margin-bottom: .5rem;
  }
/*  ブロック共通（タイトル・タグ・タブ）  */
.post-title,
.block-header {
  font-size: 2.8rem;
  border-left: solid 4px #000;
  margin-bottom: 2rem;
  padding: 0 0 0 1rem;
  }
.blo-col-2.block1003 h3,
.blo-col-2.block1004 h3{
  font-size: 2.2rem;
  }
.blo-col-3 .block-body h3,
.blo-col-4 .block-body h3,
.blo-col-5 .block-body h3,
.blo-col-6 .block-body h3,
.b-column h3,
.two-contents h3{
  font-size: 2rem;
  }
.contents.rows-contents h3{
  border-left: none;
  border-bottom: solid 1px #000;
  padding: 0 0 1rem 0;
  }
.block3200 h3{
  font-size: 1.8rem;
  }
h4{
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  }
h4 a {
  font-size: 2.4rem;
  padding:1rem 0 2rem;
  }
h5.category-title.display{
  display: block;
  font-size: 2.2rem;
  border-left: solid 4px #000;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  }
h5.category-title.display a{
  color: #000;
  text-decoration: none;
  }
p{
  color: #444;
  }

/* =======================================
    header
======================================= */
.header{
  position: relative;
  width: 100%;
  background-color: #fff;
  border-bottom: solid 1px #ccc;
  z-index: 100;
  }
.logo{
  display: table-cell;
  width: 200px;
  vertical-align: middle;
  }
.logo img{
  display: block;
  height: 60px;
  max-width: none;
  }

/* =======================================
    layout
======================================= */
.main{
  }

.column{
  display: -webkit-flex;
    display: flex;
  -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
.contents{
  width: 100%;
  padding: 0 20px;
  }
.column .contents{
  padding: 0;
  }
.contents.two-contents{
  width: 50%;
  }
.column .left-contents{
  padding-right: 10px;
  }
.column .right-contents{
  padding-left: 10px;
  }
.contents.wrapper {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.contents.rows-contents .wrap-block{
  margin-bottom: 4rem;
  }
.cms-block{
  padding-top: 20px;
  padding-bottom: 20px;
  }
.cms-block.drawer{
  padding-top: 0;
  padding-bottom: 0;
  }

/* ==============================================
 breadcrumb パンくずリスト
=============================================== */
.breadcrumb{
  padding: 1rem 0;
}
.breadcrumb li{
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 2.5rem;
}
.breadcrumb li::after{
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #666;
  border-right: solid 1px #666;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: -1.5rem;
  margin-top: -4px;
}
.breadcrumb li:last-child::after{
  display: none;
}
.breadcrumb li a{
  font-size: 1.2rem;
  color: #666;
  text-decoration: underline;
}
.breadcrumb li:last-child a{
  color: #000;
}

/* ==============================================
 pagination ページネーション
=============================================== */
.pagination-container{
  width: 100%;
  padding-top: 1rem;
}
.pagination{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.pagination li {
    list-style:none;
}
.pagination li a{
    font-size: 1.2rem;
    padding: .8rem 1rem;
    border: solid 1px #ccc;
    display: inline-block;
    border-radius: 4px;
    /* box-shadow: 0px 2px #bbb; */
    color: #333;
}
.pagination-text{
    font-size: 1.2rem;
    color: #333;
    padding-bottom: 1rem;
}

/* =======================================
    block
======================================= */
.btn-tab,
h5.category-title,
h3 span.tag-new{
  display: none;
  }

/*  ul, ol  */
.block1311 ul,
.block1100 ul,
.simple-list8100 ul{
  list-style-type: none;
  }

/*  ブロック  */
.design{
  display: -webkit-flex;
    display: flex;
  -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  width: 100%;
  }
.design.design-ba{
  -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
.block{
  display: -webkit-flex;
    display: flex;
  -webkit-justify-content: flex-start;
    justify-content: flex-start;
  -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  border-bottom: solid 1px #ededed;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  }
.block-img{
  margin-bottom: 1rem;
  }
.design02 .block-img,
.design03 .block-img,
.design04 .block-img,
.design05 .block-img,
.block1002 .block-img,
.block1003 .block-img,
.block1004 .block-img,
.block2100 .block-img,
.block1005 .block-img{
  margin-bottom: 0;
  }
.block-img img{
  display: block;
  width: 100%;
  }
.block-body{
  -webkit-flex-grow: 1;
    flex-grow: 1;
  }
.block-body p{
  margin-bottom: .5rem;
  }
.wrap-block.grid a{
  	height: 100%;
	}
.design .block-body p{
  margin-bottom: 0;
  }
.wrap-block article > a,
.design section > a{
  display: block;
  }
span.tag-new{
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  background-color: #900;
  margin-right: 1rem;
  padding: 0.6rem;
  }
span.tag-new.none{
  display: none;
  }
date span{
  font-size: 1.2rem;
  }
.more-btn {
  width: 100%;
  text-align: right;
  padding: 1.5rem;
}
.more-btn a {
  display: inline-block;
  width: 300px;
}
.more-btn a span {
  position: relative;
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  color:#454545;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  background: #ecf0f1;
  border: 0;
  border-bottom: 2px solid #dadedf;
  cursor: pointer;
  -webkit-box-shadow: inset 0 -2px #dadedf;
  box-shadow: inset 0 -2px #dadedf;
}
.more-btn a span:hover,
.more-btn a span:active {
  top: 1px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/*  #Clouds Flat Button */
.clouds-flat-button {
  position: relative;
  vertical-align: top;
  width: 100%;
  height: 60px;
  padding: 0;
  font-size: 22px;
  color:#454545;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  background: #ecf0f1;
  border: 0;
  border-bottom: 2px solid #dadedf;
  cursor: pointer;
  -webkit-box-shadow: inset 0 -2px #dadedf;
  box-shadow: inset 0 -2px #dadedf;
}
.clouds-flat-button:active {
  top: 1px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* block　カラム
==================================================*/
/*     block　1カラム  */
.blo-col-1 > article,
.blo-col-1 section{
  width: 100%;
  }

/*     block　2カラム  */
.blo-col-2 > article,
.blo-col-2 > section{
  width: 49%;
  }

/*     block　3カラム  */
.blo-col-3 > article,
.blo-col-3 > section{
  width: 32%;
  }

/*     block　3カラム 1番目のカラムだけ大きい 1つあたり1/4の幅  */
.blo-col-3-02 > article,
.blo-col-3-02 > section{
  width: 24%;
  }
.blo-col-3-02 > article:nth-of-type(1),
.blo-col-3-02 > section:nth-of-type(1){
  width: 48%;
  }

/*     block　3カラム 1番目のカラムだけ大きい 1つあたり1/3の幅  */
.blo-col-3-03 > article,
.blo-col-3-03 > section{
  width: 33%;
  }
.blo-col-3-03 > article:nth-of-type(1),
.blo-col-3-03 > section:nth-of-type(1){
  width: 65%;
  }

/*     block　4カラム  */
.blo-col-4 > article,
.blo-col-4 > section{
  width: 24%;
  }

/*     block　5カラム  */
.blo-col-5 > article,
.blo-col-5 > section{
  width: 19%;
  }

/*     block　6カラム  */
.blo-col-6 > article,
.blo-col-6 > section{
  width: 15%;
  }

/* =======================================
    block1001
======================================= */
.block1001 .block-img{
  display: none;
  }

/* =======================================
    block1000系　共通
======================================= */
.block1002 .block-body,
.block1003 .block-body,
.block1005 .block-body{
  padding-left: 1.5rem;
  }
.block1004 .block-body{
  padding-right: 1rem;
  }

.block1002 h3, .block1003 h3, .block1004 h3{
  padding-top: 0;
  }

/* =======================================
    block1002
======================================= */
.block1002 .block-img{
  width: 15%;
  }
.block1002 .block-body{
  width: 85%;
  }

/* =======================================
    block1003・1004 共通
======================================= */
.block1003 .block-img, .block1004 .block-img{
  width: 33%;
  }
.block1003 .block-body, .block1004 .block-body{
  width: 67%;
  }

/* =======================================
    block1004
======================================= */
.block1004 .block{
  -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
.block1004 .block-body a{
  padding-right: 1.5rem;
  }

/* =======================================
    block1005
======================================= */
.block1005 .block-img{
  width: 50%;
  }
.block1005 .block-body{
  width: 50%;
  }

/* =======================================
    block1100
======================================= */
.block1100 ul{}
.block1100 li{
  position: relative;
  border: solid 1px #ccc;
  border-top: none;
  }
.block1100 li:first-child{
  border-top: solid 1px #ccc;
  }
.block1100 li a{
  display: block;
  font-size: 2rem;
  line-height: 1.2;
  text-decoration: none;
  padding: 1rem;
  }

.block1100 li span{
  position: absolute;
  right: 1rem;
  top: 50%;
  min-width: 4.1rem;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  color: #fff;
  background-color: #666;
  margin-top: -1.8rem;
  padding: 1rem;
  }

/* =======================================
    block1201～1204 タブ切り替え
======================================= */
.btn-tab.display{
  display: -webkit-flex;
    display: flex;
  list-style-type: none;
  margin-bottom: 1.5rem;
  }
.btn-tab li {
  font-size: 1.4rem;
  padding: 1rem;
  cursor: pointer;
  border-right: 1px solid #dedede;
}
.btn-tab li:last-child{
  border-right: none;
  }
.btn-tab li.current {
  background: #e9e0cb;
}
.tab-contents .tab-block{
  display: none;
}
.tab-contents .tab-block:nth-of-type(1){
  display: block;
  }

/* =======================================
    block1301～1304 contents 2つ並び
======================================= */
.left-contents{
  padding-right: 2rem;
  }
.right-contents{
  padding-left: 2rem;
  }

/* =======================================
    block2000系　共通 No.1005
======================================= */
.blo-col-2,
.blo-col-3,
.block2000,
.block2100{
  display: -webkit-flex;
    display: flex;
  -webkit-justify-content: flex-start;
    justify-content: flex-start;
  -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

.block2000 .block{
  border-bottom: none;
  }
.block2000 .block-img,
.block2000 .block-body{
  width: 100%;
  }

.blo-col-2 > article,
.blo-col-3 > article,
.blo-col-4 > article,
.blo-col-6 > article,
.blo-col-3-02 > article{
  margin-right: 2%;
  }
.blo-col-4 > article,
.blo-col-4 > article{
  width: 23.5%;
  }
.blo-col-5 > article,
.blo-col-5 > article{
  margin-right: 1.25%;
  }
.blo-col-2 > article:nth-of-type(2n),
.blo-col-3 > article:nth-of-type(3n),
.blo-col-4 > article:nth-of-type(4n),
.blo-col-5 > article:nth-of-type(5n),
.blo-col-6 > article:nth-of-type(6n),
.block2000.blo-col-3-02 > article:nth-of-type(3n){
  margin-right: 0;
  }

/* =======================================
    block2100系　共通
======================================= */
.block2100 > article{
  margin-bottom: 2rem;
  }
.block2100.grid > article{
  margin-bottom: 0;
  }
.block2100 .block{
  position: relative;
  padding: 0;
  border-bottom: none;
  }
.block2100 .block-img,
.block2100 .block-body{
  width: 100%;
  }
.block2100 .block-body{
  position: absolute;
  left: 0;
  bottom: 0;
  max-height: 100%;
  background-color: rgba(0,0,0,0.8);
  opacity: 0;
  -ms-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 1.5rem;
  }
.block2100 .block-img:hover + .block-body,
.block2100 .block-body:hover{
  opacity: 1;
  }
.block2100 .block-img span.tag-new{
  position: absolute;
  left: 1rem;
  top: 1rem;
  }
.block2100.blo-col-4 .block-img span.tag-new,
.block2100.blo-col-5 .block-img span.tag-new,
.block2100.blo-col-6 .block-img span.tag-new{
  top: .5rem;
  left: .5rem;
  }
.block2100 .block-body span.tag-new{
  display: none;
  }
.block2100.grid .block-body .tag-date span.tag-new{
  display: inline-block;
  }
.block2100 a{
  color: #fff;
  }
.block2100 .block-body p{
  color: #fff;
  padding-bottom: 1rem;
  }
.block2100 .block-body h3{
  font-size: 2rem;
  margin-bottom: 1rem;
  }

/*     block　4カラム  */
.block2100.blo-col-4 .block-body{
  height: 100%;
  top: 0;
  }

/*     block　5カラム  */
.block2100.blo-col-5 .block-body{
  height: 100%;
  top: 0;
  }

/*     block　6カラム  */
.block2100.blo-col-6 .block-body{
  height: 100%;
  top: 0;
  }
.block2100.blo-col-6 .block-body h3{
  font-size: 1.8rem;
  margin-bottom: .5rem;
  }

/* block1311 */
.block1311 ul {}
.block1311 ul li {
  border-bottom: 1px solid #e6e9ee;
}
.block1311 ul li > * {
  display:inline-block;
  padding-right: 1rem;
}
.block1311 .cat{
  background-color: #eee;
    font-size: 1.2rem;
    margin-top: .5rem;
    padding: .5rem;
  }
.block1311 li a{
  padding: 1rem;
  }
.block1311 li p{
  display: inline-block;
  vertical-align: top;
  }

/* =======================================
    block3110
======================================= */
.block3110 .block{
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
  }

/* =======================================
    block3200
======================================= */
.block3200{
  padding: 0 4rem;
  }
.block3200 .slick-prev{
  left: 0;
  }
.block3200 .slick-next{
  right: 0;
  }
.block3200 article{
  padding: 0 .5rem;
  }
.block3200 .block{
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
  }
.block3200 .block-body{
  padding: 0 .5rem;
  }
.block3200 .block-body p,
.block3200 .tag-date,
.block3200 span.tag-new{
  display: none;
  }
.block3200 ul{
  list-style-type: none;
  }
.block3200 li{
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2rem;
  background-color: #eee;
  margin: 0 .4rem .4rem 0;
  padding: .2rem .4rem;
  }
.block3200 li:last-child{
  margin-right: 0;
  }
.block3200 .author{
  font-size: 1.2rem;
  color: #666;
  }
.meta > *{
  display: inline-block;
  vertical-align: middle;
  margin-right: .5rem;
  }
.meta > *:last-child{
  margin-right: 0;
  }
.meta .free{
  font-size: 1.2rem;
  color: #fff;
  background-color: #C00;
  padding: .2rem .4rem;
  }

/* =======================================
    design
======================================= */
.design .block-img,
.design .block-body{
  width: 100%;
  }
.design.design02 .block-img,
.design.design02 .block-body{
  width: 50%;
  }
.design.design03 .block-img{
  width: 25%;
  }
.design.design03 .block-body{
  width: 75%;
  }
.design.design04 .block-img{
  width: 20%;
  }
.design.design04 .block-body{
  width: 80%;
  }
.design.design05 .block-img{
  width: 15%;
  }
.design.design05 .block-body{
  width: 85%;
  }
.design02 .block-body,
.design03 .block-body,
.design04 .block-body,
.design05 .block-body{
  padding-left: 2rem;
  }
.design .block{
  border-bottom: none;
  }

/* =======================================
    design A-B
======================================= */
.a-column,
.b-column{
  display: -webkit-flex;
    display: flex;
  width: 50%;
  }
.b-column.blo-col-2 section{
  width: 50%;
  }
.a-column,
.b-column.blo-col-2 section:first-child{
  padding-right: 10px;
  }
.design-ba .a-column{
  padding: 0 0 0 10px;
  }

.b-column,
.b-column.blo-col-2 section:last-child{
  padding-left: 10px;
  }
.design-ba .b-column{
  padding: 0 10px 0 0;
  }

/* =======================================
    design number
======================================= */
.design-block{
  width:100%;
  display: -webkit-flex;
    display: flex;
  -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  -webkit-justify-content: space-between;
    justify-content: space-between;
  }

/* =======================================
    simple-list8100
======================================= */
.simple-list8100 li{
  padding-left: 1em; /*1em（1文字）分、右に動かす*/
    text-indent: -1em; /*最初の行だけ1em（1文字）分、左に動かす*/
}
.simple-list8100 ul li::before{
  content: "・";
}

/* =======================================
    swiper
======================================= */
.swiper-slide .title{
  padding: 2rem 2rem 0 2rem;
  }
.swiper-slide .text{
  font-size: 1.6rem;
  padding: 0 2rem;
  }

/* =======================================
    slick-slider
======================================= */
.slick-prev, .slick-next {
  }
.slick-slider .title{
  padding-top: 1rem;
  }

/* =======================================
    block-ranking
======================================= */
.block-ranking{
  counter-reset: number 0;
  border-top: solid 1px #ededed;
  }
.block-ranking .block{
  	position: relative;
	margin-bottom: 0;
    	padding-top: 2rem;
  }
.block-ranking .block-img{
  padding-left: 3.5rem;
  }
.block-ranking .block-img::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3rem;
  height: 3rem;
	line-height: 0;
  text-align: center;
  background-color: #eee;
  margin-top: -1.25rem;
   	padding-bottom: 0;
  }
.block-ranking article:first-child .block-img::before{
  background-color: #BB8C00;
  }
.block-ranking article:nth-of-type(2) .block-img::before{
  background-color: #999999;
  }
.block-ranking article:nth-of-type(3) .block-img::before{
  background-color: #DB842D;
  }
.block-ranking .block-img::after{
	counter-increment: number 1;
   	content: counter(number);
   	position: absolute;
   	top: 50%;
   	left: 0;
   	text-align: center;
   	margin-top: -1rem;
   	width: 3rem;
	}
.block-ranking article:first-child .block-img::after,
.block-ranking article:nth-of-type(2) .block-img::after,
.block-ranking article:nth-of-type(3) .block-img::after{
	color: #fff;
	}
.block-ranking .meta{
  margin-bottom: .5rem;
  }
.block-ranking .meta > *{
  font-size: 1.2rem;
  margin-right: .4rem;
  }
.block-ranking .meta-category{
  background-color: #eee;
  padding: .2rem .4rem;
  }

/*  画像幅を固定するパターン  */
.block-ranking.block-fixed .block{
  display: table;
  width: 100%;
  }
.block-ranking.block-fixed .block-img,
.block-ranking.block-fixed .block-body{
  display: table-cell;
  vertical-align: middle;
  }
.block-ranking.block-fixed .block-img{
  width: 140px;
  }
.block-ranking.block-fixed .block-body{
  padding-left: 1.5rem;
  }