@charset "UTF-8";
@use "sass:math";
/* =============================================== ==========================
    ## 공통 믹스인 모음
  ================================================= ======================== */
@use 'sass:math';
/* 기준 화면 너비 */
/* pixel을 vw로 변환해주는 함수 */
.event-list {
  margin-top: 3rem;
  margin-bottom: 4rem; }

.event-list .noitem {
  border-top: 0; }

.event-list .item {
  margin-top: 2.5rem; }

.event-list .item:nth-child(1) {
  margin-top: 0; }

.event-list .item__a img {
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  -o-transition: transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out; }

.no-touchevents .event-list .item__a:hover img, .no-touchevents .event-list .item__a:focus img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1); }

.event-list .item__info {
  margin: 1.5rem 0 1.3rem; }

.event-list .item__info dd {
  color: #58686F;
  font-weight: 400;
  position: relative;
  display: inline-block;
  margin-left: 8px;
  padding-left: 11px; }

.event-list .item__info dd::before {
  content: '';
  position: absolute;
  height: 12px;
  left: 0;
  top: 50%;
  margin-top: -6px;
  border-left: 1px solid #CAD1D5; }

.event-list .item__info dd:first-child {
  margin-left: 0;
  padding-left: 0; }

.event-list .item__info dd:first-child::before {
  display: none; }

.event-list .item__info dd:nth-child(2) {
  margin-left: 0;
  padding-left: 0; }

.event-list .item__info dd:nth-child(2)::before {
  display: none; }

.event-list .item__info dd:last-child {
  color: #72878F; }

.event-list .item__info .is-ing {
  color: #148ce6;
  font-weight: 400; }

.event-list .item__info .is-end {
  color: #72878F;
  font-weight: 400; }

.event-list .item__h {
  margin: 0;
  word-break: keep-all;
  word-wrap: break-word; }

@media (min-width: 45em) {
  .event-list .item:nth-child(1), .event-list .item:nth-child(2) {
    margin-top: 0; } }

@media (min-width: 60em) {
  .event-list {
    margin-top: 5rem;
    margin-bottom: 8rem; }
  .event-list .item {
    margin-top: 4rem; }
  .event-list .item:nth-child(1), .event-list .item:nth-child(2), .event-list .item:nth-child(3) {
    margin-top: 0; } }

.faq {
  position: relative;
  margin-bottom: 4rem; }

.faq::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #148ce6; }

.faq .noitem {
  border-top: 0; }

.faq .item {
  border-bottom: 1px solid rgba(32, 32, 32, 0.1); }

.faq .item__toggle, .faq .item__cont {
  padding: 2.5rem 2rem; }

.faq .item__toggle {
  position: relative;
  padding-right: 4rem; }

.faq .item__toggle:after {
  content: '\ea02';
  display: inline-block;
  font-family: 'icon';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  position: absolute;
  right: 10px;
  top: 50%;
  font-size: 2.6rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }

.faq .item__cont {
  background-color: #F5F7F7;
  font-size: 1.6rem;
  word-break: keep-all;
  word-wrap: break-word; }

.faq .item__cont::before {
  content: 'A';
  display: block;
  font-family: "S-CoreDream", sans-serif; }

.faq .item__cont p:first-child {
  margin-top: 0; }

.faq .item__cont p:last-child {
  margin-bottom: 0; }

.faq .item__cate, .faq .item__h {
  display: block;
  margin: 0;
  word-break: keep-all;
  word-wrap: break-word; }

.faq .item__cate {
  color: #58686F;
  font-size: 1.5rem;
  font-weight: 300; }

.faq .item__h {
  font-size: 1.6rem; }

.faq .item.is-active .item__toggle::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
      -ms-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg); }

@media (min-width: 60em) {
  .faq .item__toggle {
    padding: 2.1rem 11rem 2.1rem 15rem; }
  .faq .item__toggle::after {
    right: 45px; }
  .faq .item__cate {
    position: absolute;
    top: 50%;
    left: 0;
    width: 11rem;
    text-align: center;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
  .faq .item__cont {
    position: relative;
    padding: 3rem 11rem 3rem 15rem; }
  .faq .item__cont::before {
    position: absolute;
    top: 30px;
    left: 50px;
    padding-top: 0; } }

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.news-list .item {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 1rem 0 2rem; }

.news-list .item__a {
  display: block;
  -webkit-transition: -webkit-box-shadow .3s ease;
  transition: -webkit-box-shadow .3s ease;
  -o-transition: box-shadow .3s ease;
  transition: box-shadow .3s ease;
  transition: box-shadow .3s ease, -webkit-box-shadow .3s ease;
  background-color: #FFF; }

.news-list .item__a img {
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  -o-transition: transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out; }

.no-touchevents .news-list .item__a:hover img, .no-touchevents .news-list .item__a:focus img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1); }

.no-touchevents .news-list .item__a:hover, .no-touchevents .news-list .item__a:focus {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(53, 63, 67, 0.15);
          box-shadow: 0px 5px 10px 0px rgba(53, 63, 67, 0.15); }

.news-list .item__thumb {
  overflow: hidden;
  width: 100%; }

.news-list .item__cont {
  padding: 3rem 2rem; }

.news-list .item__h {
  margin: 0 0 1rem;
  word-break: keep-all;
  word-wrap: break-word; }

.news-list .item__date {
  color: #72878F; }

@media (min-width: 45em) {
  .news-list .item {
    width: 50%;
    padding: 1rem; } }

@media (min-width: 60em) {
  .news-list .item {
    width: 33.33333%; } }

.post__contents {
  font-size: 1.6rem; }

.post__contents .is-wide {
  margin-left: -20px;
  margin-right: -20px; }

.post__contents blockquote {
  position: relative;
  margin: 0;
  padding: 0 2rem;
  text-align: left;
  border-left: 4px solid #42C2D1;
  color: #202020;
  font-family: "S-CoreDream", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.4; }

.post__contents h1,
.post__contents h2,
.post__contents h3,
.post__contents h4,
.post__contents h5,
.post__contents h6,
.post__contents blockquote {
  margin-bottom: 2rem; }

.post__contents h1 + p,
.post__contents h2 + p,
.post__contents h3 + p,
.post__contents h4 + p,
.post__contents h5 + p,
.post__contents h6 + p,
.post__contents blockquote + p {
  margin-top: 0; }

.post__contents blockquote + blockquote,
.post__contents blockquote + .list,
.post__contents blockquote + .box,
.post__contents .box + blockquote,
.post__contents .box + .list,
.post__contents .box + .box,
.post__contents .row + blockquote,
.post__contents .row + .list,
.post__contents .row + .box {
  margin-bottom: 2rem; }

.post__contents blockquote + blockquote:first-child,
.post__contents blockquote + .list:first-child,
.post__contents blockquote + .box:first-child,
.post__contents .box + blockquote:first-child,
.post__contents .box + .list:first-child,
.post__contents .box + .box:first-child,
.post__contents .row + blockquote:first-child,
.post__contents .row + .list:first-child,
.post__contents .row + .box:first-child {
  margin-top: 0; }

.post__contents blockquote + blockquote:last-child,
.post__contents blockquote + .list:last-child,
.post__contents blockquote + .box:last-child,
.post__contents .box + blockquote:last-child,
.post__contents .box + .list:last-child,
.post__contents .box + .box:last-child,
.post__contents .row + blockquote:last-child,
.post__contents .row + .list:last-child,
.post__contents .row + .box:last-child {
  margin-bottom: 0; }

.post__contents p {
  margin-bottom: 2rem; }

.post__contents p:first-child {
  margin-top: 0; }

.post__contents p:last-child {
  margin-bottom: 0; }

.post__contents p + .h4,
.post__contents p + .h5,
.post__contents p + .h6,
.post__contents p + .list,
.post__contents p + .video-box,
.post__contents p + .box,
.post__contents blockquote + .h4,
.post__contents blockquote + .h5,
.post__contents blockquote + .h6,
.post__contents blockquote + .list,
.post__contents blockquote + .video-box,
.post__contents blockquote + .box,
.post__contents .box + .h4,
.post__contents .box + .h5,
.post__contents .box + .h6,
.post__contents .box + .list,
.post__contents .box + .video-box,
.post__contents .box + .box,
.post__contents .row + .h4,
.post__contents .row + .h5,
.post__contents .row + .h6,
.post__contents .row + .list,
.post__contents .row + .video-box,
.post__contents .row + .box {
  margin-top: 4rem / 2; }

.post__contents .video-box {
  margin-bottom: 4rem; }

.post__contents .func {
  margin-bottom: 6rem; }

.post__contents hr {
  margin: 3.5rem auto;
  border-color: #F5F7F7;
  border-width: 1px 0 0 0; }

.post__contents hr:first-child {
  margin-top: 0; }

.post__contents hr:first-child + h1,
.post__contents hr:first-child + h2,
.post__contents hr:first-child + h3,
.post__contents hr:first-child + h4,
.post__contents hr:first-child + h5,
.post__contents hr:first-child + h6 {
  margin-bottom: 6.5rem; }

.post__contents .cover {
  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;
  overflow: hidden;
  position: relative;
  text-align: center;
  color: #FFF;
  height: 520px; }

.post__contents .cover h1,
.post__contents .cover h2,
.post__contents .cover h3,
.post__contents .cover h4,
.post__contents .cover h5,
.post__contents .cover h6,
.post__contents .cover p,
.post__contents .cover strong,
.post__contents .cover b {
  color: inherit; }

.post__contents .cover__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%; }

.post__contents .cover__bg span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }

.post__contents .cover__bg span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(32, 32, 32, 0.5); }

.post__contents .cover__cont {
  position: relative; }

.post__contents .box {
  padding: 3rem 2rem;
  border: 1px solid #DFE4E6;
  background-color: #FFF; }

.post__contents .box--gray {
  margin-left: 0;
  margin-right: 0;
  background-color: #F5F7F7; }

.post__contents .box__item {
  margin-top: 2rem / 2;
  margin-bottom: 2rem; }

.post__contents .box__h {
  text-align: center;
  margin-bottom: 2rem; }

.post__contents .box .box {
  margin-bottom: 2rem; }

.post__contents .box .func {
  text-align: left; }

.post__contents .box.is-wide {
  padding: 2rem; }

.post__contents .dl-flex dt {
  width: 100px;
  margin: 0.5rem 0; }

.post__contents .dl-flex dd {
  width: calc(100% - 100px);
  margin: 0.5rem 0;
  font-weight: 300; }

.post__contents .gift-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
  max-width: 640px;
  font-size: 1.6rem;
  margin-bottom: 3rem; }

.post__contents .gift-box > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 25px;
  height: 100%;
  margin: 10px 20px; }

.post__contents .gift-box img {
  border: 1px solid rgba(32, 32, 32, 0.1);
  border-radius: 25px;
  width: 50%;
  margin-right: 10px; }

.post__contents .gift-box .cate {
  display: block;
  color: #353f43; }

.post__contents .gift-box .gift {
  display: block;
  color: #202020;
  font-weight: 400; }

.post__contents .winner-list {
  margin-top: 2rem;
  margin-bottom: 6rem; }

.post__contents .winner-list li {
  margin-bottom: 1rem; }

.post__contents .post-swiper .swiper-slide {
  text-align: center; }

.post__contents .post-swiper .swiper-slide img {
  width: 100%;
  max-width: 640px; }

.post__contents .post-swiper .swiper-pagination {
  margin-top: 2rem;
  font-size: 1.5rem;
  bottom: 0; }

.post__contents .post-swiper .swiper-pagination-total {
  font-weight: 400; }

@media (min-width: 45em) {
  .post__contents .is-wide {
    margin-left: -46px;
    margin-right: -46px; }
  .post__contents .box {
    padding: 2rem 4rem; }
  .post__contents .box.is-wide {
    padding: 4rem; }
  .post__contents .box__item {
    overflow: hidden; }
  .post__contents .box__item .box__img + .box__cont {
    margin-top: 0; }
  .post__contents .box__item:nth-child(odd) .box__img {
    float: right; }
  .post__contents .box__item:nth-child(odd) .box__cont {
    float: left; }
  .post__contents .box__img, .post__contents .box__cont {
    width: 48%; }
  .post__contents .box__img {
    float: left; }
  .post__contents .box__cont {
    float: right; }
  .post__contents .gift-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 880px;
    margin: 0 auto 20px; }
  .post__contents .gift-box > li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    border: 1px solid rgba(32, 32, 32, 0.1);
    height: auto;
    padding-bottom: 30px; }
  .post__contents .gift-box img {
    margin: 0;
    border: 0;
    width: 100%;
    height: 100%; } }

@media (min-width: 60em) {
  .post__contents {
    font-size: 1.8rem; }
  .post__contents blockquote {
    font-size: 3rem; }
  .post__contents .cover {
    height: 630px; }
  .post__contents .box {
    padding: 4rem; }
  .post__contents .box--gray {
    border: 0; } }

@media (min-width: 85.375em) {
  .post__contents .is-wide {
    margin-left: -11rem;
    margin-right: -11rem; } }

.post__header {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(32, 32, 32, 0.1); }

.post__header-title {
  font-family: "S-CoreDream", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: #58686F; }

.post__header-h {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #202020;
  font-family: "S-CoreDream", sans-serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.4;
  word-break: keep-all;
  word-wrap: break-word; }

.post__header-info {
  font-size: 1.6rem; }

.post__header-info dd {
  position: relative;
  display: inline-block;
  margin-left: 8px;
  padding-left: 11px; }

.post__header-info dd::before {
  content: '';
  position: absolute;
  height: 12px;
  left: 0;
  top: 50%;
  margin-top: -6px;
  border-left: 1px solid #CAD1D5; }

.post__header-info dd:first-child {
  margin-left: 0;
  padding-left: 0; }

.post__header-info dd:first-child::before {
  display: none; }

.post__header-info dd:nth-child(2) {
  margin-left: 0;
  padding-left: 0; }

.post__header-info dd:nth-child(2)::before {
  display: none; }

.post__header-info dd:last-child {
  color: #72878F; }

.post__header-info .is-ing {
  color: #148ce6;
  font-weight: 400; }

.post__header-info .is-end {
  color: #72878F;
  font-weight: 400; }

.l-contents .post__header {
  padding-bottom: 4rem; }

.l-contents .post__header .post__header-title {
  margin-bottom: 1rem; }

.l-contents .post__header .post__header-h {
  margin-bottom: 1.5rem; }

.post__contents {
  padding-top: 3.5rem; }

.post__info {
  position: relative;
  margin-top: 3.5rem;
  padding: 3rem 2rem 1.5rem;
  background: #F5F7F7; }

.post__info-h {
  color: #242A2D; }

.post__info-btn {
  position: absolute;
  top: 25px;
  right: 20px;
  font-size: 1.6rem; }

.post__info-btn:after {
  content: '\ea13';
  display: inline-block;
  font-family: 'icon';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  font-size: 22px; }

.post__info-btn span {
  padding-right: 5px; }

.post__tag {
  padding-top: 3.5rem; }

.post__footer {
  margin-top: 1rem;
  padding: 4rem 0 8rem;
  text-align: center;
  border-top: 1px solid rgba(32, 32, 32, 0.1); }

@media (min-width: 60em) {
  .post__header {
    padding: 8rem 2rem 5rem;
    text-align: center; }
  .post__header-h {
    font-size: 4.6rem;
    margin-bottom: 2.5rem; }
  .l-contents .post__header {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 5rem; }
  .l-contents .post__header .post__header-h {
    font-size: 3.6rem;
    padding-bottom: 1.5rem; }
  .post__contents {
    padding-top: 6rem;
    margin-bottom: 6rem;
    font-size: 1.8rem; }
  .post__contents + .post__info,
  .post__contents + .post__tag {
    margin-top: -6rem; }
  .post__info {
    margin-top: 6rem;
    padding: 4rem 4rem 2rem; }
  .post__info-h {
    margin-bottom: 2rem; }
  .post__info-btn {
    top: 45px;
    right: 40px; }
  .post__tag {
    padding-top: 6rem; }
  .post__footer {
    margin-top: 2rem;
    padding: 6rem 0 12rem; } }

.review-hero {
  position: relative;
  margin-bottom: 2rem; }

.review-hero__cont {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 4rem;
  color: #FFF; }

.review-hero__info dd {
  position: relative;
  display: inline-block;
  margin-left: 8px;
  padding-left: 11px; }

.review-hero__info dd::before {
  content: '';
  position: absolute;
  height: 12px;
  left: 0;
  top: 50%;
  margin-top: -6px;
  border-left: 1px solid #CAD1D5; }

.review-hero__info dd:first-child {
  margin-left: 0;
  padding-left: 0; }

.review-hero__info dd:first-child::before {
  display: none; }

.review-hero__info dd:nth-child(2) {
  margin-left: 0;
  padding-left: 0; }

.review-hero__info dd:nth-child(2)::before {
  display: none; }

.review-hero__h {
  margin: 1rem 0;
  color: #FFF;
  word-break: keep-all;
  word-wrap: break-word; }

.review-hero__desc {
  display: none; }

.review-list {
  margin-bottom: 4rem; }

.review-list .item {
  margin-top: 2rem; }

.review-list .item:nth-child(1) {
  margin-top: 0; }

.review-list .item__a img {
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  -o-transition: transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out; }

.no-touchevents .review-list .item__a:hover img, .no-touchevents .review-list .item__a:focus img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1); }

.review-list .item__info {
  margin: 1.5rem 0 1.3rem; }

.review-list .item__info dd {
  color: #58686F;
  position: relative;
  display: inline-block;
  margin-left: 8px;
  padding-left: 11px; }

.review-list .item__info dd::before {
  content: '';
  position: absolute;
  height: 12px;
  left: 0;
  top: 50%;
  margin-top: -6px;
  border-left: 1px solid #CAD1D5; }

.review-list .item__info dd:first-child {
  margin-left: 0;
  padding-left: 0; }

.review-list .item__info dd:first-child::before {
  display: none; }

.review-list .item__info dd:nth-child(2) {
  margin-left: 0;
  padding-left: 0; }

.review-list .item__info dd:nth-child(2)::before {
  display: none; }

.review-list .item__info dd:last-child {
  color: #72878F; }

.review-list .item__h {
  margin: 0;
  word-break: keep-all;
  word-wrap: break-word; }

@media (min-width: 45em) {
  .review-hero__cont {
    left: 46px;
    right: 46px; }
  .review-list .item:nth-child(1), .review-list .item:nth-child(2) {
    margin-top: 0; } }

@media (min-width: 60em) {
  .review-hero {
    margin-bottom: 6rem; }
  .review-hero__cont {
    top: 4rem;
    left: 7rem;
    right: 7rem;
    bottom: auto;
    width: 50%; }
  .review-hero__h {
    margin: .5rem 0 3rem; }
  .review-hero__desc {
    display: block;
    margin: 0 0 5rem;
    word-break: keep-all;
    word-wrap: break-word; }
  .review-list {
    margin-bottom: 8rem; }
  .review-list .item {
    margin-top: 4rem; }
  .review-list .item:nth-child(1), .review-list .item:nth-child(2), .review-list .item:nth-child(3) {
    margin-top: 0; } }

@media (min-width: 85.375em) {
  .review-hero__cont {
    top: 10rem;
    width: 40%; } }

.studydata-list {
  position: relative;
  padding-top: 2rem;
  margin-bottom: 4rem; }

.studydata-list + .pagination {
  margin-top: -2rem; }

.studydata-list::after {
  content: '';
  position: absolute;
  top: 0;
  left: 5px;
  right: 5px;
  height: 2px;
  background: #148ce6; }

.studydata-list .noitem {
  border-top: 0; }

.studydata-list .item {
  padding-bottom: 2rem; }

.studydata-list .item__a img {
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  -o-transition: transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out; }

.no-touchevents .studydata-list .item__a:hover img, .no-touchevents .studydata-list .item__a:focus img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1); }

.studydata-list .item__thumb {
  overflow: hidden; }

.studydata-list .item__info {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem; }

.studydata-list .item__info dd {
  position: relative;
  display: inline-block;
  margin-left: 8px;
  padding-left: 11px; }

.studydata-list .item__info dd::before {
  content: '';
  position: absolute;
  height: 12px;
  left: 0;
  top: 50%;
  margin-top: -6px;
  border-left: 1px solid #CAD1D5; }

.studydata-list .item__info dd:first-child {
  margin-left: 0;
  padding-left: 0; }

.studydata-list .item__info dd:first-child::before {
  display: none; }

.studydata-list .item__info dd:nth-child(2) {
  margin-left: 0;
  padding-left: 0; }

.studydata-list .item__info dd:nth-child(2)::before {
  display: none; }

.studydata-list .item__info dd:last-child {
  color: #72878F; }

.studydata-list .item__h {
  font-size: 1.6rem;
  margin: 0;
  word-break: keep-all;
  word-wrap: break-word; }

.studydata-list .item--video .item__thumb {
  position: relative; }

.studydata-list .item--video .item__thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), to(#242A2D));
  background: -o-linear-gradient(transparent 0, #242A2D 100%);
  background: linear-gradient(transparent 0, #242A2D 100%);
  z-index: 10; }

.studydata-list .item--video .item__thumb:after {
  content: '\ea21';
  display: inline-block;
  font-family: 'icon';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 25px;
  z-index: 15;
  color: #FFF;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

@media (min-width: 45em) {
  .studydata-list::after {
    left: 10px;
    right: 10px; } }

@media (min-width: 60em) {
  .studydata-list {
    margin-bottom: 8rem; }
  .studydata-list + .pagination {
    margin-top: -4rem; }
  .studydata-list .item {
    padding-bottom: 4rem;
    max-width: 33.33333%; } }
