/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', 'YuGothic', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #000;
  margin: 0;
}
a {
  color: #000;
  font-weight: 500;
  -webkit-transition: 0.35s color;
  transition: 0.35s color;
  text-decoration: none;
}
a:hover {
  color: #4291F4;
  text-decoration: none;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}
/*--------------------------------------------------------------
# Back top
--------------------------------------------------------------*/
.back-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  background: #999;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  transition: all 1s;
  text-align: center;
}
.back-top i {
  line-height: 40px;
}
.back-top:hover {
  background: #4291F4;
}
.back-top.active {
  visibility: visible;
  opacity: 1;
}
/*-----------------  ★★★★★★★　SP　★★★★★★★  ----------------*/
@media (max-width: 768px) {
  .back-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 12.5px;
    bottom: 12.5px;
    z-index: 999;
    background: #999;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    transition: all 1s;
    text-align: center;
  }
  .back-top:hover {
    background: #999;
  }
}
/*--------------------------------------------------------------
container
--------------------------------------------------------------*/
.container {
  max-width: 1104px;
  margin: 0 auto;
  text-align: center;
}

#main .container {
  max-width: 686px !important;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 52px 0 47px;
  border-top: solid 6px #00C2CB;
}
#header .logo {
  margin: 0 auto;
  padding: 0;
  line-height: 1;
}
#header .container {
  position: relative;
}
#header .logo img {
  margin-top: -4px;
}
/*-----------------  ★★★★★★★　SP　★★★★★★★  ----------------*/
@media (max-width: 768px) {
  #header {
    padding: 19px 0;
    border-top: solid 4px #00C2CB;
  }
  #header .logo img {
    max-height: 40px;
    margin-top: -6px;
  }
  #header .container {
    padding-left: 5%;
    padding-right: 5%;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/*　ハンバーガーメニューボタン　*/
.hamburger {
  display: block;
  position: absolute;
  z-index: 3;
  left: 15px;
  top: 20px;
  width: 28px;
  height: 22px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 28px;
  height: 2px;
  left: 0;
  background: #000;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 10px;
}
.hamburger span:nth-child(3) {
  top: 20px;
}
/* メニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 10px;
  left: 0;
  background: #bbb;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 10px;
  background: #bbb;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* メニュー背景　*/
nav.globalMenuSp {
  position: absolute;
  z-index: 2;
  top: 80px;
  left: 0;
  color: #000;
  background: rgba(255, 255, 255, 1);
  text-align: center;
  width: 205px;
  display: none;
  padding-left: 12px;
}
nav.globalMenuSp dl {
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: left;
}
nav.globalMenuSp dl dt {
  color: #777;
  font-size: 12px;
  margin: 40px 0 10px;
}
nav.globalMenuSp dl dd {
  font-size: 16px;
  margin: 0 0 10px;
  transition: .4s all;
}
nav.globalMenuSp dl dd:last-child {
  margin-bottom: 120px;
}
/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    z-index: 3;
    left: 5%;
    top: 8px;
    width: 22px;
    height: 18px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 22px;
    height: 2px;
    left: 0;
    background: #000;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 8px;
  }
  .hamburger span:nth-child(3) {
    top: 16px;
  }
  /* スマホメニューを開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 10px;
    left: 0;
    background: #bbb;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
    top: 10px;
    background: #bbb;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /* メニュー背景　*/
  nav.globalMenuSp {
    position: absolute;
    z-index: 2;
    top: 35px;
    left: 0;
    color: #000;
    background: rgba(255, 255, 255, 1);
    text-align: center;
    width: 50%;
    display: none;
  }
  nav.globalMenuSp dl {
    margin: 0;
    padding: 0 0 0 20px;
    width: 90%;
    height: 100%;
    text-align: left;
  }
  nav.globalMenuSp dl dt {
    color: #777;
    font-size: 11px;
    margin: 30px 0 10px;
  }
  nav.globalMenuSp dl dd {
    font-size: 14px;
    margin: 0 0 20px;
    transition: .4s all;
  }
  nav.globalMenuSp dl dd:last-child {
    margin-bottom: 50px;
  }
  /* クリックでjQueryで追加・削除 */
  nav.globalMenuSp.active {
    opacity: 100;
    display: block;
  }
}
/*========= 検索窓の設定 ===============*/
input:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus::-moz-placeholder {
  color: transparent;
}
input:focus::-ms-input-placeholder {
  color: transparent;
}
input:focus::placeholder {
  color: transparent;
}
/*==検索窓背景のエリア*/
#search-wrap {
  position: absolute; /*固定配置にして*/
  top: 7px;
  right: 0;
  z-index: 100; /*最背面に設定*/
  opacity: 1; /*透過を0に*/
  transition: all 0.4s; /*transitionを使ってスムースに現れる*/
  width: 213px;
  height: 46px;
}
/*==検索窓のエリア*/
#search-wrap .search-area {
  display: block; /*検索窓エリアを表示*/
  width: 100%;
  position: relative;
}
/*==検索フォームの設定*/
#search-wrap form {
  position: relative;
  height: 48px;
}
/*==テキスト入力とボタンinput共通設定*/
#search-wrap input {
  -webkit-appearance: none; /*SafariやChromeのデフォルトの設定を無効*/
  outline: none;
  cursor: pointer; /*カーソルを指マークに*/
  color: #000;
}
/*テキスト入力input設定*/
#search-wrap input[type="text"] {
  width: 88%;
  padding: 15px 6%;
  border: solid 1px #DADADA;
  background: #F4F4F4;
  transition: all 0.5s;
  letter-spacing: 0.05em;
  border-radius: 3px;
}
#search-wrap input[type="text"]:focus {
  background: #FFF;
  width: 297px;
  margin-left: -110px;
}
/*ボタンinput設定*/
#search-wrap input[type="submit"] {
  position: absolute;
  top: 9px;
  right: 20px;
  background: url("https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/common/search.svg") no-repeat left center;
  background-size: 30px 30px;
  width: 30px;
  height: 30px;
  border: none;
}
/*-----------------  ★★★★★★★　SP　★★★★★★★  ----------------*/
@media (max-width: 768px) {
  /*========= 検索窓を開くための虫眼鏡ボタン設定 ===========*/
  .open-btn {
    position: absolute;
    top: 2px;
    right: 16px;
    background: #fff url("https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/common/search.svg") no-repeat left center;
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
  }
  /*========= 検索窓の設定 ===============*/
  /*==検索窓背景のエリア*/
  #search-wrap {
    position: fixed; /*固定配置にして*/
    top: 0;
    left: 0;
    z-index: -1; /*最背面に設定*/
    opacity: 0; /*透過を0に*/
    transition: all 0.4s; /*transitionを使ってスムースに現れる*/
    width: 100%;
    height: 80px;
  }
  /*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後の見た目*/
  #search-wrap.panelactive {
    opacity: 1; /*不透明に変更*/
    z-index: 999; /*全面に出現*/
    background: #FFF;
    /*中の要素を天地中央揃えにする設定*/
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /*==検索窓のエリア*/
  #search-wrap .search-area {
    display: none; /*検索窓のエリアは、はじめ非表示*/
  }
  /*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後*/
  #search-wrap.panelactive .search-area {
    display: block; /*検索窓エリアを表示*/
    width: 100%;
    position: relative;
  }
  /*==検索フォームの設定*/
  #search-wrap form {
    position: relative;
    height: 48px;
  }
  /*==テキスト入力とボタンinput共通設定*/
  #search-wrap input {
    -webkit-appearance: none; /*SafariやChromeのデフォルトの設定を無効*/
    outline: none;
    cursor: pointer; /*カーソルを指マークに*/
    color: #000;
  }
  /*テキスト入力input設定*/
  #search-wrap input[type="text"] {
    width: 82%;
    padding: 15px 4%;
    border: solid 1px #DADADA;
    background: #F4F4F4;
    transition: all 0.5s;
    letter-spacing: 0.05em;
    border-radius: 3px;
    margin-left: 12%;
    font-size: 12px;
  }
  #search-wrap input[type="text"]:focus {
    background: #F4F4F4;
    width: 82%;
    margin-left: 12%;
  }
  /*ボタンinput設定*/
  #search-wrap input[type="submit"] {
    position: absolute;
    top: 9px;
    right: 16px;
    background: url("https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/common/search.svg") no-repeat left center;
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
    border: none;
  }
  /*=======　閉じるための×ボタン　========*/
  .close-btn {
    position: absolute;
    top: 15px;
    left: 1px;
    z-index: 2;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .close-btn span {
    display: inline-block;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: #bbb;
  }
  /*×マーク*/
  .close-btn span:nth-of-type(1) {
    top: 18px;
    left: 14px;
    transform: translateY(6px) rotate(-135deg);
    width: 50%;
  }
  .close-btn span:nth-of-type(2) {
    top: 29px;
    left: 14px;
    transform: translateY(-6px) rotate(135deg);
    width: 50%;
  }
}
/*--------------------------------------------------------------
grid
--------------------------------------------------------------*/
.row {
  margin-bottom: 12px;
}
.row .row {
  margin-top: 12px;
  margin-bottom: 0;
}
[class*="col-"] {
  padding-top: 12px;
  padding-bottom: 12px;
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}
@media (min-width: 992px) {
  .col-1 {
    -ms-flex: 0 0 516px;
    flex: 0 0 516px;
    width: 516px;
  }
  .col-2 {
    -ms-flex: 0 0 294px;
    flex: 0 0 294px;
    max-width: 294px;
  }
  .col-3 {
    -ms-flex: 0 0 258px;
    flex: 0 0 258px;
    max-width: 258px;
  }
  .col-left {
    width: 774px;
    float: left;
    padding-top: 32px;
  }
  .col-right {
    -ms-flex: 0 0 330px;
    flex: 0 0 330px;
    max-width: 330px;
    position: relative;
    width: 100%;
    padding: 32px 0 0 30px;
  }
}
.col-1, .col-2, .col-3, .col-4 {
  position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}
.col-left .col-3 {
  padding-bottom: 28px;
}
.col-4.article-box {
  position: relative;
  display: flex;
}
.container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
*, ::after, ::before {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
記事
--------------------------------------------------------------*/
h2.latest {
  width: 100%;
  text-align: left;
  margin-left: 12px;
  font-size: 22px;
  background: url("https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/icon/info.svg") no-repeat left 5px;
  padding-left: 34px;
}
h2.popular {
  width: 100%;
  text-align: left;
  margin-left: 12px;
  font-size: 22px;
  background: url("https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/icon/favorite.svg") no-repeat left 5px;
  padding-left: 34px;
}
h2.category-latest {
  width: 100%;
  text-align: left;
  margin-left: 12px;
  font-size: 22px;
  background: url("https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/icon/category.svg") no-repeat left 5px;
  padding-left: 34px;
}
h2.category {
  width: 100%;
  text-align: left;
  margin-left: 12px;
  font-size: 22px;
  margin-top: 60px;
  background: url("https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/icon/category.svg") no-repeat left 5px;
  padding-left: 34px;
}
h2.connection {
  width: 100%;
  text-align: left;
  margin-left: 12px;
  font-size: 22px;
  margin-top: 60px;
  background: url("https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/icon/menu_book.svg") no-repeat left 5px;
  padding-left: 34px;
}
.article-box {
  text-align: left;
  overflow: hidden;
  width: 100%;
  height: inherit;
  transition: .35s;
}
.article-box:hover {
  color: #4291F4;
  text-decoration: none;
  outline: none;
}
.article-box img {
  border-radius: 6px;
  width: 100%;
  height: inherit;
  display: block;
  transition: 0.35s;
}
.article-box h2 {
  font-size: 24px;
  font-weight: 700;
  padding: 12px 0;
  margin: 0;
  width: 100%;
  display: inline-block;
  margin-top: auto;
}
.col-2.article-box h2 {
  font-size: 20px;
}
.article-box h3 {
  font-size: 15px;
  font-weight: 700;
  padding: 12px 0;
  margin: 0;
}
.col-4.article-box h3 {
  font-size: 12px;
}
.article-box .category {
  font-size: 12px;
  padding: 4px 7px;
  margin: 0;
  color: #4291F4;
  border: 1px solid #4291F4;
  border-radius: 11px;
  line-height: 1;
  display: inline-block;
}
.article-box h3 + .category {
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 9px;
}
.imgMV {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: all .25s ease-out;
  transition: all .25s ease-out;
}
.imgMV_img {
  -webkit-transform: translatez(0);
  transform: translatez(0);
}
.imgMV_text {
  position: absolute;
  color: #FFF;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .02)), to(rgba(0, 0, 0, .6)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .6));
  padding: 0 30px 30px;
  bottom: 12px;
  width: 492px;
  height: 200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 6px;
  flex-direction: column;
}
.article-box .imgMV_text .category {
  margin: 0 auto 0 0;
  color: #FFF;
  border: 1px solid #FFF;
  display: inline-block;
}
p.date {
  font-size: 12px;
  color: #777;
  margin: 10px 0 0;
}
.ranking-list img {
  display: block;
  position: absolute;
  top: 12px;
  left: 12px;
  width: 20px;
  height: 20px;
  border-radius: 6px 0px 0px 0px;
}
.link_block {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.link_inside {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.thumbnail {
  overflow: hidden;
  width: 100%;
  height: inherit;
  border-radius: 6px;
}
.article_list_wrap:hover img {
  transform: scale(1.2)
}
.col-4.article-box .thumbnail {
  width: 80px;
  margin-right: 15px;
  display: block;
}
.article-box.category-list .thumbnail {
  overflow: hidden;
  width: 46px;
  height: inherit;
  border-radius: 23px;
}
.article-box.category-list h3 {
  font-weight: normal;
  font-size: 16px;
  padding: 0;
  width: 100%;
}
.article-box.category-list h3 span {
  font-weight: normal;
  font-size: 12px;
  opacity: 0.5;
  display: block;
}
.col-4.article-box .text_block {
  width: 220px;
}
.col-4.article-box .text_block h3 {
  padding-top: 0;
  padding-bottom: 4px;
}
.btn_normal {
  width: 100%;
  margin: 10px auto 78px;
  text-align: center;
}
a.link_btn {
  background: #0F3F79 url("https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/common/navigation-expand_more.svg") no-repeat 97.5% center;
  color: #FFF;
  font-size: 16px;
  border-radius: 6px;
  width: 300px;
  display: inline-block;
  line-height: 52px;
  height: 52px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  -webkit-tap-highlight-color: transparent;
  transition: .22s ease-out;
}
a.link_btn:hover {
  background: #4291F4 url("https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/common/navigation-expand_more.svg") no-repeat 97.5% center;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 3px 10px 0 rgba(0, 0, 0, 0.12), 0 4px 7px -2px rgba(0, 0, 0, 0.12);
}
.article-box.category-block .thumbnail {
  background: #F6F6F6;
  padding: 15px;
}
@media (min-width: 992px) {
  .article-box.category-block.nigyo .thumbnail {
    display: flex;
    align-items: center;
  }
  .article-box.category-block.nigyo h3 {
    margin: -84px 0 25px 82px;
    font-weight: normal;
    width: 135px;
    line-height: 1.4;
  }
}
.article-box.category-block .thumbnail img {
  width: 54px;
  border-radius: 27px;
}
.article-box.category-block h3 {
  margin: -75px 0 25px 82px;
  font-weight: normal;
  width: 135px;
}
.article-box.category-block h3 span {
  font-weight: normal;
  font-size: 12px;
  opacity: 0.5;
  display: block;
}
.article-box.category-block h4 {
  margin: 0;
}
.article-box.category-block .date {
  margin-bottom: 0;
}
.article-box.category-block .thumbnail:hover {
  background: rgba(66, 145, 244, 1);
}
/*-----------------  ★★★★★★★　SP　★★★★★★★  ----------------*/
@media (max-width: 768px) {
  .row {
    margin-bottom: 20px;
  }
  .col-1 {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    box-sizing: border-box;
  }
  .col-2 {
    position: relative;
    width: 50%;
    padding-right: 5%;
    padding-left: 2.5%;
    box-sizing: border-box;
  }
  .col-1 + .col-2 {
    position: relative;
    width: 50%;
    padding-right: 2.5%;
    padding-left: 5%;
    box-sizing: border-box;
  }
  .col-3 {
    position: relative;
    width: 100%;
    padding-right: 5%;
    padding-left: 5%;
    box-sizing: border-box;
  }
  .col-4 {
    position: relative;
    width: 90%;
    padding-right: 0;
    padding-left: 0;
    margin: 0 5%;
    box-sizing: border-box;
  }
  .col-left .col-3 {
    padding: 15px 0 0;
    border-top: solid 1px #DFDFDF;
    width: 90%;
    margin: 15px auto 0;
  }
  .latest + .col-3, .category-latest + .col-3 {
    padding: 0;
    border-top: none;
  }
  a.link_btn {
    background: #0F3F79 url("https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/common/navigation-expand_more.svg") no-repeat 97.5% center;
    color: #FFF;
    font-size: 14px;
    border-radius: 4px;
    width: 230px;
    display: inline-block;
    line-height: 40px;
    height: 40px;
    transition: .35s;
  }
  .btn_normal {
    width: 100%;
    margin: 30px auto 50px;
    text-align: center;
  }
  .container {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
  }
  .article-box h2 {
    font-size: 20px;
    font-weight: 700;
    padding: 12px 0;
    margin: 0;
    width: 100%;
    display: inline-block;
    margin-top: auto;
  }
  .col-2.article-box h2 {
    font-size: 14px;
  }
  .article-box h3 {
    font-size: 20px;
    font-weight: 700;
    padding: 12px 0;
    margin: 0;
  }
  .col-4.article-box h3 {
    font-size: 14px;
  }
  .col-4.article-box {
    position: relative;
    display: flex;
    border-top: 1px solid #DFDFDF;
  }
  .popular + .col-4.article-box, .connection + .col-4.article-box {
    position: relative;
    display: flex;
    border-top: none;
  }
  .col-4.article-box.category-list {
    border: none;
  }
  .article-box .category {
    font-size: 11px;
    padding: 4px 7px;
    margin: 0;
    color: #4291F4;
    border: 1px solid #4291F4;
    border-radius: 11px;
    line-height: 1;
    display: inline-block;
  }
  .article-box h3 + .category {
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 9px;
  }
  .imgMV_text {
    position: absolute;
    color: #FFF;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .02)), to(rgba(0, 0, 0, .6)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .6));
    padding: 0 5% 20px;
    bottom: 12px;
    width: 100%;
    height: 200px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0;
    flex-direction: column;
  }
  .col-1.article-box img {
    border-radius: 0;
  }
  .col-1 .thumbnail {
    border-radius: 0;
  }
  h2.latest {
    width: 100%;
    text-align: left;
    margin: 1.5% 5%;
    font-size: 20px;
    background: url("https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/icon/info.svg") no-repeat left 3px;
  }
  h2.popular {
    width: 100%;
    text-align: left;
    margin: 1.5% 5%;
    font-size: 20px;
    background: url("https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/icon/favorite.svg") no-repeat left 3px;
  }
  h2.category {
    width: 100%;
    text-align: left;
    margin: 1.5% 5%;
    font-size: 20px;
    margin-top: 50px;
    background: url("https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/icon/category.svg") no-repeat left 3px;
  }
  h2.category-latest {
    width: 100%;
    text-align: left;
    margin: 1.5% 5%;
    font-size: 20px;
    background: url("https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/icon/category.svg") no-repeat left 3px;
  }
  h2.connection {
    width: 100%;
    text-align: left;
    margin: 1.5% 5%;
    font-size: 20px;
    background: url("https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/icon/menu_book.svg") no-repeat left 5px;
  }
  .ranking-list img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 6px 0px 0px 0px;
  }
  .col-3 .article_list_image, .col-4 .article_list_image {
    width: 27%;
    margin-right: 4%;
	position:relative;
  }
	span.ranking-list {
    position: absolute;
    top: 0;
    left: 0;
}
	
  .col-4.article-box .text_block {
    width: 68%;
  }
  .col-4.article-box .thumbnail {
width: 100%;
        margin-right: 0;
        position: absolute;
        top: 0;
        left: 0;
  }
  .col-3 .article_list_wrap {
    display: flex;
  }
  .col-3 .article_list_image {
    width: 27%;
    margin-right: 4.4%;
  }
  .col-3 .text_block {
    width: 68%;
  }
  .col-3.article-box h3 {
    font-size: 14px;
    font-weight: 700;
    padding: 0 0 5px;
    margin: 0;
  }
  .col-3.article-box p.date {
    margin: 5px 0 0;
  }
  .col-3.article-box.category-block {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .article-box.category-block .thumbnail {
    background: none;
    padding: 0;
  }
  .article-box.category-block .thumbnail img {
    width: 44px;
    border-radius: 22px;
  }
  .col-3.category-block .article_list_image {
    width: 14%;
    margin-right: 2%;
  }
  .article-box.category-block h3 {
    margin: 5px 0 0;
    font-weight: normal;
    width: 35%;
  }
  .article-box.category-block.nigyo h3 {
    margin: 0;
    font-weight: normal;
    width: 35%;
    padding: 0
  }
  .article-box.category-block h3 span {
    font-weight: normal;
    font-size: 10px;
    color: #777;
    display: block;
  }
  .col-3.category-block .text_block {
    width: 50%;
  }
  .col-3.category-block .text_block h4 {
    font-size: 14px;
  }
  .row.col-right {
    display: flex;
  }
  .col-4.article-box.category-list {
    border: none;
    margin: 0 2.5% 0 5%;
    width: 42.5%;
    display: block;
  }
  .col-4.article-box.category-list:nth-child(odd) {
    margin: 0 5% 0 2.5%;
    width: 42.5%;
  }
  .category-list .article_list_image {
    width: 100%;
    margin-right: 0;
  }
  .article-box.category-list .thumbnail {
    border-radius: 6px;
	  position: relative;
  }
  .article-box.category-list h3 {
    font-weight: bold;
    font-size: 14px;
    padding: 5px 0 0;
    width: 100%;
  }
}
/*--------------------------------------------------------------
footer
--------------------------------------------------------------*/
footer#footer {
  width: 100%;
  display: block;
  background: #E7FEFF;
  margin-top: 40px;
  padding:40px 0 4px;
}
.footer-block {
  width: 1080px;
  margin: 20px auto 0;
  position: relative;
}
.footer-block li {
  list-style: none;
}
.footer_logo {
  width: 220px;
}
.footer_logo img {
  width: 100%;
}
.footer-block ul.main_menu {
font-size: 13px;
  display: flex;
	padding-left: 0;
}
.footer-block ul.main_menu li {}
.footer-block ul.main_menu li::after {
  content: "/";
  padding: 0 10px;
  color: #777;
}
.footer-block ul.main_menu li:last-child::after {
  display: none;
}
.footer-block ul.sub_menu {
  display: flex;
	gap:20px;
  font-size: 12px;
padding:0;
}
.footer-block ul.sub_menu li {
  padding: 0;
	margin:0;
}
.footer-block p {
  text-align: right;
  font-size: 10px;
  color: #777;
  letter-spacing: 2px;
}

/*
.footer-upper {
    display: flex;
    justify-content: space-between;
    align-items: center;
	margin-bottom:20px;
}
*/

.footer-block ul.main_menu li {
    margin-bottom: 0;
}

.mark-wrapper {
    margin: 40px 0 20px;
}

.mark{
	display:flex;
	align-items:center;
	justify-content:flex-end;
	gap:20px;
}

.mark img{
	width:60px;
	height:60px;
}

.mark .txt{
	font-size:11px;
}

/*-----------------  ★★★★★★★　SP　★★★★★★★  ----------------*/
@media (max-width: 1024px) {
  .footer-block {
    width: 90%;
    margin: 20px auto 0;
    position: inherit;
    height: auto;
  }
  .footer_logo {
    width: 188px;
    position: inherit;
    margin-bottom: 20px;
  }
  .footer-block ul.main_menu {
    display: none;
  }
  .footer-block ul.sub_menu {
    position: inherit;
    display: inherit;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 0;
  }
  .footer-block ul.sub_menu li {
    padding-right: 0;
    margin-bottom: 15px;
  }
  .footer-block ul.sub_menu li:last-child {
    margin-bottom: 30px;
  }
  .footer-block p {
    position: inherit;
    text-align: center;
    font-size: 10px;
    color: #777;
    letter-spacing: 0;
  }
}
/*--------------------------------------------------------------
archive
--------------------------------------------------------------*/
ul.pankuzu {
  width: 90%;
  max-width: 1104px;
  margin: -25px auto 15px;
  font-size: 12px;
  padding: 0;
  color: #777;
}
ul.pankuzu li {
  list-style: none;
  display: inline-block;
  background: url(https://www.dm-s.co.jp/collect/wp-content/themes/collect-theme/img/common/navigation-expand_more2.svg) no-repeat right center;
  padding-right: 30px;
  line-height: 24px;
	margin-bottom:0;
}
ul.pankuzu li:last-child {
  background: none;
  padding-right: 0;
}
#mv {
  background: -moz-linear-gradient(left, #00C2CB, #03989E);
  background: -webkit-linear-gradient(left, #00C2CB, #03989E);
  background: linear-gradient(to right, #00C2CB, #03989E);
  padding: 25px 0;
}
.mv-block {
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.category-img img {
  width: 150px;
  height: inherit;
  border-radius: 75px;
}
.mv-block h1 {
  width: 300px;
}
.mv-block h1 span {
  display: block;
}
.mv-block p {
  width: 540px;
  margin: 0 30px 0 60px;
  line-height: 1.8;
}
.pagination {
  width: 90%;
  max-width: 1080px;
  margin: 10px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  padding: 0;
}
.pagination li {
  display: block;
  line-height: 1;
  opacity: 0.7;
  color: #777;
  margin: 5px;
  width: 40px
}
.pagination li a {
  padding: 10px 0;
  border: 1px #C5C5C5 solid;
  border-radius: 4px / 4px;
  opacity: 1;
  display: block;
  color: #000;
}
.pagination li a:hover {
  border: 1px #4291f4 solid;
  color: #4291f4;
  transition: all .25s;
}
.pagination li img {
  opacity: 0.3;
}
.pagination li a img {
  opacity: 1;
}
.pagination li a:hover img {
  opacity: 0.6;
}
.pagination li:first-child a, .pagination li:last-child a {
  border: none;
  opacity: 1;
}
.pagination li:first-child {
  margin-right: 40px;
}
.pagination li:last-child {
  margin-left: 40px;
}
/*-----------------  ★★★★★★★　SP　★★★★★★★  ----------------*/
@media (max-width: 768px) {
  ul.pankuzu {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto 5px;
    font-size: 12px;
    padding: 0;
    color: #777;
  }
  #mv {
    padding: 30px 0;
    margin-bottom: 126px;
  }
  .mv-block {
    width: 90%;
    margin: 0 auto;
    max-width: 1080px;
    color: #FFF;
    display: block;
    position: relative;
    height: 90px;
  }
  .mv-block h1 {
    width: 72%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 10px 0;
  }
  .mv-block p {
    width: 100%;
    margin: 0 0 -160px;
    line-height: 1.6;
    font-size: 14px;
    color: #000;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .category-img {
    position: absolute;
    right: 0;
    top: 0;
  }
  .category-img img {
    width: 90px;
    border-radius: 45px;
  }
  .pagination {
    margin: 20px auto 10px;
  }
  .pagination li:first-child {
    margin-right: 20px;
  }
  .pagination li:last-child {
    margin-left: 20px;
  }
}
/*--------------------------------------------------------------
769px~1104px
--------------------------------------------------------------*/
@media only screen and (min-width: 769px) and (max-width: 1110px) {
  .col-1, .col-2, .col-3 {
    -ms-flex: inherit;
    flex: inherit;
    width: 33.33% !important;
    max-width: 1000px
  }
  .imgMV_text {
    position: inherit;
    color: inherit;
    background: none;
    padding: 0;
    width: 100%;
    height: auto;
  }
  .imgMV_text h2 {
    font-size: 20px;
  }
  .article-box .imgMV_text .category {
    margin: 0 auto 0 0;
    color: #4291F4;
    border: 1px solid #4291F4;
    display: inline-block;
  }
  .col-left {
    width: 70%;
    float: left;
  }
  .col-right {
    -ms-flex: auto;
    flex: auto;
    width: 32%;
    max-width: 1000px;
    float: right;
  }
  #search-wrap input[type="text"]:focus {
    background: #FFF;
    width: 187px;
    margin-left: 0;
  }
  .article-box.category-block h3,.article-box.category-block.nigyo h3 {
    margin: -75px 0 25px 15px;
  }
  .article-box.category-block .thumbnail img {
    display: none;
  }
  .article-box.category-block .thumbnail {
    height: 84px;
  }
  .article-box.category-block h3 {
    font-size: 14px;
  }
  .article-box.category-block h3 br {
    display: none;
  }


}



@media only screen and (min-width: 480px) and (max-width: 768px) {
    .article-box.category-block.nigyo h3 br {
      display:none;
  }
.col-3.category-block .article_list_image {
    width: 44px;
    margin-right: 2%;
}
}

/*引用のボックス*/
blockquote {
    position: relative;
    padding: 10px 16px 1px 32px;
    box-sizing: border-box;
    font-style: italic;
    color: #464646;
    background: #e0e0e0;
}

blockquote:before{
    display: inline-block;
    position: absolute;
    top: -6px;
    left: -15px;
    content: "“";
    font-family: sans-serif;
    color: #e0e0e0;
    font-size: 70px;
    line-height: 1;
    z-index: 2;
}

blockquote:after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    border-width: 0 0 40px 40px;
    border-style: solid;
    border-color: transparent #ffffff;
}

blockquote p {
	font-size: 12px !important;
	padding: 0;
    margin: 10px 0;
    z-index: 3;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}