/* >> Attachment Video Style
--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- */
.attachGallery{
  @extend %clearFix; margin: 0 auto 0; @extend %statText; @include transition(all, ease-in-out, 0.2s); display: block; width:100%; max-width: 100%; flex-basis:100%; margin-bottom:1.5rem; padding: 1rem 0.5rem; text-align: left; background-color: white;
  figure{display: block; width: 100%;}
}
.attachGallery__title{display: block; width: 100%; margin-bottom: 8px; font-weight: normal; font-size: 25px; font-family: $titleFont; text-transform: uppercase; color: $color-baseText; letter-spacing: 0.02em;}
.attachGallery__noImg{
  width: 100%; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 2px solid $color-border; font-size: 14px; font-weight: 300;
  span{font-weight: bold; text-align: left; letter-spacing: 1px; }
}

/* >> Thumb Gallery Style
--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- */
.thumbGallery{
  @extend %flexBox; justify-content: flex-start;
}
.thumbGallery__navigator{
  @extend %flexBox; display: none;
  @media #{$mq-tab_720} {
    display: flex; width: 18%; max-width: 18%; flex-basis: 18%; margin-right: 3%; align-content: space-between;
  }
}
.thumbGallery__navigatorWrapper{
  @extend %clearFix;
}
.thumbGallery__navigatorWrapper__item{margin: 8px 0;}
.btn--pervThumb-img,
.btn--nextThumb-img{width: 100%; height: 36px; cursor: pointer; background-size: 36px; opacity: 0.6;
  &:hover{opacity: 1;}
}
.btn--pervThumb-img{background: url("../images/icons/icon-up.svg") no-repeat center center; opacity: 0.6;
&:hover{opacity: 1;}
}
.btn--nextThumb-img{background: url("../images/icons/icon-down.svg") no-repeat center center;}
.thumbGallery__bigImg{
  @extend %flexBox; align-items: center; width: 100%; max-width: 100%; flex-basis: 100%;
  @media #{$mq-tab_720} {
    width: 79%; max-width: 79%; flex-basis: 79%;
  }
  img{@include shadow-depth5;}
}
.thumbGallery__bigImg--enlarge{
  display: block; width: 42px; height: 42px; background: url("../images/icons/icon-search.svg") no-repeat center center; position: absolute; right: 16px; bottom: 16px; z-index: 10; cursor: pointer; opacity: 0.6;
  &:hover{opacity: 1;}
  @media #{$mq-tab_720}{ bottom: 30px; }
  @media #{$mq-pc_960}{ bottom: 20px; }
  @media #{$mq-iPad_land}{ bottom: 16px; }
}