@charset "UTF-8";
/*
  dimension definition
*/
/*
  corp color guide
*/
/* Main Colors */
@font-face {
  font-family: "Aclonica";
  src: url("../fonts/Aclonica-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
body {
  font-family: "NotoSansJP", sans-serif;
  background: url(/blog/wp-content/themes/hello-elementor/assets/images/img-bg-body.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 992px) {
  body {
    background: #ffffff;
  }
  body::before {
    content: "";
    height: 950px;
    width: 100%;
    position: absolute;
    background: url(/blog/wp-content/themes/hello-elementor/assets/images/img-bg-body.svg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
  }
  body.pricing-body-page::before, body.lesson-body-page::before {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

img {
  display: block;
}

a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.btn:focus,
.form-control:focus {
  border-color: #b6cee2;
  outline: 0;
}

.sp-hidden {
  display: none !important;
}
@media (min-width: 992px) {
  .sp-hidden {
    display: block !important;
  }
}
.lg-hidden {
  display: block !important;
}
@media (min-width: 992px) {
  .lg-hidden {
    display: none !important;
  }
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 992px) {
  .container {
    width: 100%;
  }
}

.main-content {
  color: #2b2b2b;
  margin-top: 20px;
  display: flex;
  column-gap: 3%;
}
@media (max-width: 992px) {
  .main-content {
    margin-top: 0;
    display: block;
  }
}

.header-right {
  margin-left: auto;
}
.free-trial-btn {
  display: block;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  background-color: #F72B7E;
  border: 1px solid #F72B7E;
  border-radius: 999px;
  padding: 10px 36px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 9;
}
.free-trial-btn:hover {
  background: #fff;
  color: #f72b7e;
}
@media (max-width: 992px) {
  .free-trial-btn {
    display: none;
  }
}

.view-more-box {
  min-height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.view-more-box .box-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 18.7383px;
  line-height: 26px;
  text-align: center;
  color: #000000;
  border: 1.17114px solid #ffffff;
  position: relative;
  text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}
@media (min-width: 992px) {
  .view-more-box .box-image {
    font-size: 32px;
    line-height: 44px;
  }
}
.view-more-box .box-image img {
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-filter: contrast(0.8);
          filter: contrast(0.8);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .view-more-box .box-image img {
    -webkit-filter: contrast(1);
            filter: contrast(1);
  }
}
.view-more-box .button {
  width: 30px;
  background: #ef5da8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .view-more-box .button {
    width: 50px;
  }
  .view-more-box .button svg {
    height: 20px;
    width: 50px;
  }
}

.btn-member {
  display: block;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 20px;
  text-align: center;

  background-color: #EF5DA8;
  border: 4px solid #EF5DA8;
  border-radius: 40px;

  width: 350px;
  height: 56px;
  margin: 0 auto;
  padding: 8px 0;

  box-shadow: 0 5px 0 #8C4067;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.btn-member::after {
  display: inline-block;
  content: "";
  margin: auto;
  position: relative;
  top: 4px;
  left: 15px; /* 要素の左からの距離 */
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #fff;
}
.btn-member:hover {
  background-color: #fff;
  color: #EF5DA8;
  box-shadow: none;
}
.btn-member:hover::after {
  border-left: 20px solid #EF5DA8;
}
@media (min-width: 992px) {
  .btn-member {
    width: 450px;
    height: 73px;
    font-size: 26px;
    padding: 14px 0;
  }
  .btn-member::after {
    top: 2px; 
  }
}

.btn-normal {
  display: block;
  text-align: center;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
  background-color: #0D47B6;
  border-radius: 10px;

  width: 350px;
  height: 41px;
  margin: 0 auto;
  padding: 5px 0;

  box-shadow: 0 5px 0 #000;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.btn-normal:hover {
  color: #ffffff;
  opacity: 0.8;
}
.btn-normal::after {
  display: inline-block;
  content: "";
  margin: auto;
  position: relative;
  top: 2px;
  left: 20px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}
@media (min-width: 992px) {
  .btn-normal {
    width: 450px;
    height: 53px;
    font-size: 22px;
    padding: 10px 0;
  }
}

.lnk-normal {
  color: #EF5DA8;
  text-decoration: underline;
  display: inline-block;
}

.masthead-banner {
  height: 80px;
  width: calc(100% - 32px);
  margin: 0 auto 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 15px;
}
.masthead-banner h1 {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  background: #ffffff;
  padding: 10px;
  -webkit-box-shadow: 5px 5px 0 0px #ef5da8;
  box-shadow: 5px 5px 0 0px #ef5da8;
  margin-left: 10px;
}
@media (min-width: 992px) {
  .masthead-banner {
    max-width: 1200px;
    height: 100px;
    border-radius: 15px;
  }
  .masthead-banner h1 {
    margin-left: 40px;
    font-size: 24px;
    line-height: 56px;
    padding: 0 18px;
    -webkit-box-shadow: 6px 6px 0 0px #ef5da8;
    box-shadow: 6px 6px 0 0px #ef5da8;
  }
}
.masthead-banner h1 a {
  color: #000;
}
.masthead-banner.blog-page {
  background: url(/blog/wp-content/themes/hello-elementor/assets/images/blog-top-banner-pc.png);
  background-position: center;
  background-size: cover;
}

.sp-pd-16 {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 1368px) {
  .sp-pd-16 {
    padding-left: 0;
    padding-right: 0;
  }
}

.header-line-decor {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-line-decor::before {
  content: "";
  display: block;
  width: 1px;
  height: 25px;
  position: absolute;
  left: -11px;
  top: -2px;
  background: #000000;
  -webkit-transform: rotateZ(-30deg);
          transform: rotateZ(-30deg);
}
.header-line-decor::after {
  content: "";
  display: block;
  width: 1px;
  height: 25px;
  position: absolute;
  right: -11px;
  top: -2px;
  background: #000000;
  -webkit-transform: rotateZ(30deg);
          transform: rotateZ(30deg);
}
.header-line-decor.pink-line {
  margin-bottom: 24px;
}
.header-line-decor.pink-line::before {
  content: "";
  height: 45px;
  left: -19px;
  top: -10px;
  background: #EF5DA8;
  -webkit-transform: rotateZ(-19deg);
          transform: rotateZ(-19deg);
}
.header-line-decor.pink-line::after {
  content: "";
  height: 45px;
  right: -19px;
  top: -10px;
  background: #EF5DA8;
  -webkit-transform: rotateZ(19deg);
          transform: rotateZ(19deg);
}
@media (min-width: 992px) {
  .header-line-decor.pink-line {
    font-size: 28px;
    line-height: 34px;
  }
  .header-line-decor.pink-line::before {
    content: "";
    width: 2px;
    height: 50px;
    left: -28px;
    top: -10px;
    background: #EF5DA8;
    -webkit-transform: rotateZ(-30deg);
            transform: rotateZ(-30deg);
  }
  .header-line-decor.pink-line::after {
    content: "";
    width: 2px;
    height: 50px;
    right: -28px;
    top: -10px;
    background: #EF5DA8;
    -webkit-transform: rotateZ(30deg);
            transform: rotateZ(30deg);
  }
}
@media (min-width: 992px) {
  .header-line-decor::before {
    content: "";
    display: block;
    width: 1px;
    height: 44px;
    position: absolute;
    left: -20px;
    top: 2px;
    background: #000000;
    -webkit-transform: rotateZ(-30deg);
            transform: rotateZ(-30deg);
  }
  .header-line-decor::after {
    content: "";
    display: block;
    width: 1px;
    height: 44px;
    position: absolute;
    right: -20px;
    top: 2px;
    background: #000000;
    -webkit-transform: rotateZ(30deg);
            transform: rotateZ(30deg);
  }
}

.lsp-sm {
  letter-spacing: -0.5px;
}

@media (max-width: 991px) {
  section[class*=section-] {
    padding-bottom: 40px;
  }
}
@media (min-width: 992px) {
  section[class*=section-]::before {
    font-size: 95px;
    line-height: 1.1319444444;
  }
}
@media (min-width: 1368px) {
  section[class*=section-]::before {
    font-size: 144px;
  }
}

.banner .logo-sp img {
  width: 361px;
  margin: 0 auto;
  max-width: 98%;
}


#float-navi {
  position: fixed;
  bottom: 24px;
  right: 10px;
  z-index: 4;
}

#float-navi > .clearfix::before {
  display: table;
  content: " ";
}
#float-navi .btn {
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  float: left;
  font-size: 16px;
  background-color: transparent;
  color: #FFFFFF;
  padding: 0;
  font-weight: normal;
  margin-left: 15px;
  text-align: center;
}
#float-navi .btn i {
  font-size: 34px;
  margin-top: 4px;
}
#float-navi .btn img {
  max-width: 100%;
  height: auto;
}

.c-fixed {
  position: sticky;
  width: 100%;
  max-width: 100%;
  top: 0;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  z-index: 10;
}

#float-navi .btn-interactive-navi-modal-open img {
  width: auto !important;
}
.section-contents p {
  display: inline-block;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 5px;
}
.breadcrumbs a {
  text-decoration: underline;
  color: #337ab7;
}
.breadcrumbs > li:not(:first-child)::before{
  content: ">";
  padding-left: 5px;
  padding-right: 5px;
}

@media (hover: hover) {
  .breadcrumbs a:hover {
    text-decoration: none;
  }
}

.floating-navi {
  z-index: 900;
  position: fixed;
  bottom: 10px;
  right: 10px;
}
.floating-navi i {
  font-size: 48px;
}
.floating-navi .floating-navi-page-top-btn {
  background-color: #337ab7;
  line-height: 0;
}
.floating-navi a {
  float: left;
  width: 70px;
  height: 70px;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  margin-left: 10px;
  border-radius: 6px;
  color: #FFFFFF;
  box-shadow: 0 0 2px 1px rgba(0,0,0,0.2);
}

.site-main {
  margin: 0 auto;
  max-width: 750px;
  padding: 0;
}
@media (max-width: 992px) {
  .site-main {
    margin: 0 10px;
    max-width: auto;
  }
}
.site-main .page-header {
  margin-bottom: 0;
}
.site-main .page-header .category-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 3px;
}
.site-main .page-header .category-description {
  font-size: 1.2em;
  margin-bottom: 5px;
}
.site-main article {
  display: inline-block;
  margin-bottom: 40px;
}
.site-main article .entry-title {
  font-size: 1.8em;
  margin-bottom: 2px;
}
@media (max-width: 992px) {
  .site-main article .entry-title {
    font-size: 1.4em;
    margin-bottom: 10px;
  }
}
.site-main article .entry-title a {
  color: #000;
}
.site-main article .cat-links {
  margin-bottom: 3px;
}
.site-main article .cat-links a {
  background-color: #FEEAE3;
  border-radius: 3px;
  margin-bottom: 0.5em;
  margin-right: 0.15em;
  padding: 0.35em 0.75em;
  font-size: 12px;
  line-height: 1em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  color: #111;
  transition: all 0.2s ease-out;
  display: inline-block;
}
.site-main article .post-contents {
  display: flex;
  column-gap: 20px;
}
@media (max-width: 992px) {
  .site-main article .post-contents {
    display: block;
  }
}
.site-main article .post-contents .post-thumb {
}
.site-main article .post-contents .post-thumb a img {
  width: 260px;
  height: auto;
}
@media (max-width: 992px) {
  .site-main article .post-contents .post-thumb a img {
    width: 100%;
    height: 100%;
  }
}
.site-main article .post-contents .post-text {
  font-size: 1.2em;
}
.site-main article .post-contents .post-text p {
  margin-bottom: 20px;
}
.site-main article .post-contents .post-text .post-date {
  color: #333;
  font-size: 0.8em;
  margin: 0 0 3px;
}
.site-main article .post-contents .post-text a.btn-readmore {
  color: #fff;
  background-color: #111;
  font-size: 0.8em;
  font-weight: bold;
  padding: 1.2em 2em;
  border-radius: 5px;
  letter-spacing: 0.2em;
}

.sidebar {
  margin: 0 auto;
}
@media (max-width: 992px) {
  .sidebar {
    margin: 0 10px;
  }
}
.sidebar div {
  margin: 0 0 20px;
}
@media (max-width: 992px) {
  .sidebar div {
    margin: 0 0 10px;
  }
}
.sidebar h3 {
  font-size: 1.4em;
  margin: 12px 0;
  padding: 5px;
  background-color: #FEEAE3;
}
.sidebar ul li {
  line-height: 1.5em;
  margin: 0 0 15px;
  padding: 0 15px 8px;
  border-bottom: 1px dashed #cecece;
  position: relative;
}
.sidebar ul li:last-child {
  border-bottom: 0;
}
.sidebar ul li:before {
	position: absolute;
	top: 3px;
	left: 0;
	content: '';
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 512"><path fill="%23666" d="M187.8 264.5L41 412.5c-4.7 4.7-12.3 4.7-17 0L4.2 392.7c-4.7-4.7-4.7-12.3 0-17L122.7 256 4.2 136.3c-4.7-4.7-4.7-12.3 0-17L24 99.5c4.7-4.7 12.3-4.7 17 0l146.8 148c4.7 4.7 4.7 12.3 0 17z"></path></svg>');
	background-repeat: no-repeat;
	width: 15px;
	height: 17px;
}
.sidebar ul li a {
  color: #111;
  -webkit-transition: ease 0.2s;
  -moz-transition: ease 0.2s;
  transition: ease 0.2s;
}
.sidebar ul li a:hover,
.sidebar ul li a:focus {
  text-decoration: none;
  color: #f3c9dd;
}

.entry-header {
  border-bottom: 1px solid #eee;
  margin: 0 0 22px;
}
.entry-header .cat-links {
    margin: 0;
}
.entry-header .cat-links a {
    background-color: #FEEAE3;
    border-radius: 3px;
    margin-bottom: 0.5em;
    margin-right: 0.15em;
    padding: 0.35em 0.75em;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    color: #111;
    transition: all 0.2s ease-out;
    display: inline-block;
}
.entry-header .entry-title {
  font-size: 2em;
  margin-bottom: 5px;
}
@media (max-width: 992px) {
  .entry-header .entry-title {
    font-size: 1.8em;
  }
}
.entry-header .entry-date {
  margin-left: 0.2em;
  margin-bottom: 0.2em;
}

.entry-content p {
  font-size: 1.2em;  
  margin: 0 0 45px;
}
@media (max-width: 992px) {
  .entry-content p {
    margin: 0 0 15px;
  }
}
.entry-content p a {
  text-decoration: underline;
}
.entry-content h2 {
  font-size: 1.6em;  
  margin: 30px 0;
  padding-bottom: 2px;
  border-bottom: 1px solid #aaa;
  clear: both;
}
.entry-content h3 {
  font-size: 1.4em;
  margin: 20px 0;
  clear: both;
}
@media (max-width: 992px) {
  .entry-content h2 {
    margin: 10px 0;
  }
  .entry-content h3 {
    margin: 10px 0;
  }
}
.entry-content h4 {
  font-size: 1.2em;
  margin: 10px 0;
}
.entry-content img {
  margin-bottom: 20px;
  height: auto;
}
@media (max-width: 992px) {
  .entry-content img {
    height: 100%;
    max-height: 240px;
  }
}
.entry-content blockquote {
  background: #f4f4f6;
  margin: 0 0 20px;
  padding: 20px;
  border-radius: 6px;
  border: none;
}
.entry-content blockquote p {
  margin: 0;
}
.entry-content ol {
  font-size: 1.2em;
  padding-left: 20px;
}
.entry-content ol li {
  margin-bottom: 10px;
  list-style-type: decimal;
}
.entry-author {
  padding: 15px;
  background-color: #f9f9f9;
  border: 2px solid #3FA591;
  color: #555;
  overflow: auto;
}
.entry-author .author-img {
  width: 130px;
  margin-right: 15px;
  float: left;
}
.entry-author .author-img img {
  width: 100%;
  height: 100%;
}
.entry-author h3 {
  font-size: 1.8em;
}
.entry-author p {
  line-height: 1.6;
}

.navigation.pagination {
  margin-bottom: 20px;
}
.navigation.pagination .nav-links {
  overflow: auto;
}
.navigation.pagination .page-numbers {
  float: left;
  font-size: 18px;
  line-height: 2.5em;
  height: 45px;
  text-align: center;
  padding: 0 18px;
  border: 1px solid #f3c9dd;
  color: #111;
  margin-right: 5px;
  position: relative;
  -webkit-transition: linear 0.2s;
  -moz-transition: linear 0.2s;
  transition: linear 0.2s;
}
.navigation.pagination .nav-links .page-numbers {
  width: 3rem;
  height: 3rem;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 0;
  line-height: 3rem;
}
@media (max-width: 992px) {
  .navigation.pagination .nav-links .page-numbers {
    width: 2.8rem;
  }
}
.navigation.pagination .page-numbers.current {
  float: left;
  font-size: 18px;
  line-height: 2.5em;
  height: 45px;
  text-align: center;
  padding: 2px;
  border: 1px solid #f3c9dd;
  background: #f3c9dd;
  color: #fff;
  margin-right: 5px;
  position: relative;
}
.navigation.pagination .page-numbers.current.current {
  background-color: #FEEAE3;
  border-color: #FEEAE3;
  color: #fff;
}

.post-tags .tag-links a {
  margin: 0 5px;
  display: inline-block;
}

.related-post {
  margin: 60px 0 0;
}
.related-post .title {
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 500;
  text-align: center;
  color: #111;
  margin-bottom: 14px;
}
.related-post .row {
  display: flex;
  column-gap: 5%;
}
.related-post .post {
  width: 30%;
}
@media (max-width: 992px) {
  .related-post .row {
    display: block;
  }
  .related-post .post {
    width: 100%;
    margin-bottom: 20px;
  }
}
.related-post .post .img-holder img,
.related-post .post .img-holder .fallback-svg {
  width: 100%;
  height: auto;
  max-height: 135px;
  vertical-align: top;
}
@media (max-width: 992px) {
  .related-post .post .img-holder img {
    max-height: 220px;
  }
}
.related-post .post .img-holder>a {
	display: block;
}
.related-post .post .img-holder {
	position: relative;
	overflow: hidden;
}
.related-post .post .text-holder {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 65%;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fdfdfd+0,f5f5f5+4,dfdfdf+11,bfbfbf+19,808080+32,5a5a5a+37,282828+43,0b0b0b+47,000000+50,000000+100&0+0,0.08+15,0.2+32,0.37+43,0.46+50,0.57+71,0.65+100 */
	background: -moz-linear-gradient(top, rgba(253, 253, 253, 0) 0%, rgba(245, 245, 245, 0.02) 4%, rgba(223, 223, 223, 0.06) 11%, rgba(207, 207, 207, 0.08) 15%, rgba(191, 191, 191, 0.11) 19%, rgba(128, 128, 128, 0.2) 32%, rgba(90, 90, 90, 0.28) 37%, rgba(40, 40, 40, 0.37) 43%, rgba(11, 11, 11, 0.42) 47%, rgba(0, 0, 0, 0.46) 50%, rgba(0, 0, 0, 0.57) 71%, rgba(0, 0, 0, 0.65) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(253, 253, 253, 0) 0%, rgba(245, 245, 245, 0.02) 4%, rgba(223, 223, 223, 0.06) 11%, rgba(207, 207, 207, 0.08) 15%, rgba(191, 191, 191, 0.11) 19%, rgba(128, 128, 128, 0.2) 32%, rgba(90, 90, 90, 0.28) 37%, rgba(40, 40, 40, 0.37) 43%, rgba(11, 11, 11, 0.42) 47%, rgba(0, 0, 0, 0.46) 50%, rgba(0, 0, 0, 0.57) 71%, rgba(0, 0, 0, 0.65) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(253, 253, 253, 0) 0%, rgba(245, 245, 245, 0.02) 4%, rgba(223, 223, 223, 0.06) 11%, rgba(207, 207, 207, 0.08) 15%, rgba(191, 191, 191, 0.11) 19%, rgba(128, 128, 128, 0.2) 32%, rgba(90, 90, 90, 0.28) 37%, rgba(40, 40, 40, 0.37) 43%, rgba(11, 11, 11, 0.42) 47%, rgba(0, 0, 0, 0.46) 50%, rgba(0, 0, 0, 0.57) 71%, rgba(0, 0, 0, 0.65) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00fdfdfd', endColorstr='#a6000000', GradientType=0);
	/* IE6-9 */
}
.related-post .post .text-holder .cat-links {
	display: block;
}
.related-post .post .text-holder .cat-links a {
	color: rgba(255, 255, 255, 0.7);
	-webkit-transition: linear 0.2s;
	-moz-transition: linear 0.2s;
	transition: linear 0.2s;
}
.related-post .post .text-holder .cat-links a:hover,
.related-post .post .text-holder .cat-links a:focus,
.related-post .post .text-holder .entry-title a:hover,
.related-post .post .text-holder .entry-title a:focus {
	text-decoration: none;
	color: #f3c9dd;
}

.related-post .post .text-holder .entry-title {
  font-size: 14px;
  line-height: 1.333em;
  padding: 35px 6px 3px;
  bottom: 0;
  position: inherit;
}
@media (max-width: 992px) {
  .related-post .post .text-holder .entry-title {
    font-size: 24px;
    padding: 35px 10px 6px;
  }
}

.related-post .post .text-holder .entry-title a {
	color: #fff;
	-webkit-transition: linear 0.2s;
	-moz-transition: linear 0.2s;
	transition: linear 0.2s;
}