﻿
pre {
    /* Mozilla */
    white-space: -moz-pre-wrap;
    /* Opera 4-6 */
    white-space: -pre-wrap;
    /* Opera 7 */
    white-space: -o-pre-wrap;
    /* CSS3 */
    white-space: pre-wrap;
    /* IE 5.5+ */
    word-wrap: break-word;

    font: inherit;
}

.indent {
    padding-left: 24px;
}



/* アニメーション定義 */
.animation{
    -webkit-transition:all ease 0.5s;
    -moz-transition:all ease 0.5s;
    -o-transition:all ease 0.5s;
    transition:all ease 0.5s;
    position: relative;
    overflow: hidden;
}


.v-accordion-arrow v-pane > v-pane-header::after {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
  content: 'expand_more';

  position: absolute;
  right: 8px;
  top: calc(50% - 24px/2);

      -webkit-transition:all ease 0.5s;
    -moz-transition:all ease 0.5s;
    -o-transition:all ease 0.5s;
    transition:all ease 0.5s;

}

.v-accordion-arrow v-pane.is-expanded > v-pane-header::after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}


/* アニメーション対象要素の基本的なスタイル */
.accordion {

    /*下記の定義に注目(詳細は後述)
    */
    display:block!important;
    position: relative;
    overflow: hidden;
}

.accordion > * {
    -webkit-transition:all ease 0.5s;
    -moz-transition:all ease 0.5s;
    -o-transition:all ease 0.5s;
    transition:all ease 0.5s;
    
    position: relative;
    
}


.accordion.ng-enter > *{
    /*height: 0px;*/
    margin-top: -100%;
    opacity: 0;
}
.accordion.ng-enter-active > *{
    /*height: 100%;*/
    margin-top: 0;
    opacity: 1;
}

.accordion.ng-leave > *{
    margin-top: 0;
    opacity: 1;
}
.accordion.ng-leave-active > *{
    margin-top: -100%;
    opacity: 0;
}
/*
accordion.ng-enter-prepare {
    opacity: 0;
    display: none;
}
accordion.ng-leave-prepare {
    opacity: 0;
    display: none;
}
*/
md-grid-list {
  margin: 8px; }
 .gray {
  background: #f5f5f5; }
 .green {
  background: #b9f6ca; }
 .yellow {
  background: #ffff8d; }
 .blue {
  background: #84ffff; }
 .purple {
  background: #b388ff; }
 .red {
  background: #ff8a80; }
 md-grid-tile {
  transition: all 400ms ease-out 50ms; }

 .pageContainer {
    opacity: 1;
    transition:all .2s linear 0s;
    height: 100vh;
}
.pageContainer.ng-leave-active {
    opacity: 0;
}
.pageContainer.ng-enter{
    opacity: 0;
}
.pageContainer.ng-enter-active {
    opacity: 1;
 }

.thumbnailBox {   
  /* 画像を常に天地左右の中央に配置 */
  background-position: center center;
   
  /* 画像をタイル状に繰り返し表示しない */
  background-repeat: no-repeat;
   
  /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  /*background-attachment: fixed;*/
   
  /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
  background-size: cover;
   
  /* 背景画像が読み込まれる前に表示される背景のカラー */
  background-color: #464646;
}

/* 表示・非表示時のアニメーションを定義 */
.animate-show-hide.ng-hide-add,
.animate-show-hide.ng-hide-remove {
  -webkit-transition:all linear 0.5s;
  -moz-transition:all linear 0.5s;
  -o-transition:all linear 0.5s;
  transition:all linear 0.5s;
  /*下記の定義に注目(詳細は後述)*/
  /*display:block!important;*/
}
/* ng-hide適用(=非表示)の終点となるスタイル */
/* また、ng-hide-removeに移行する際の始点のスタイルでもある */
.animate-show-hide.ng-hide-add.ng-hide-add-active,
.animate-show-hide.ng-hide-remove {
  opacity:0;
}
/* ng-hide削除(=表示)して到達するスタイル */
/* また、ng-hide-addに移行する際の始点のスタイルでもある */
.animate-show-hide.ng-hide-remove.ng-hide-remove-active,
.animate-show-hide.ng-hide-add {
  opacity:1;
}

.avatar {
    border-radius: 50%;
/*    width: 40px;*/
    height: 40px;
}

.height100{
    height: 100%;
}
.width100{
    width: 100%;
}


figure.snip1384 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 230px;
  max-width: 315px;
  width: 100%;
  color: #ffffff;
  text-align: left;
  font-size: 16px;
  background-color: #000000;
}
figure.snip1384 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
figure.snip1384 img {
  max-width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
}
figure.snip1384:after,
figure.snip1384 figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/*暗くする*/
figure.snip1384:after {
  content: '';
  background-color: rgba(0, 0, 0, 0.65);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
}
figure.snip1384 figcaption {
  z-index: 1;
  padding: 40px;
}
figure.snip1384 h3,
figure.snip1384 .links {
  width: 100%;
  margin: 5px 0;
  padding: 0;
}
figure.snip1384 h3 {
  line-height: 1.1em;
  font-weight: 700;
  font-size: 1.4em;
  text-transform: uppercase;
  opacity: 0;
}
figure.snip1384 p {
  font-size: 0.8em;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}
figure.snip1384 i {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 20px 25px;
  font-size: 34px;
  opacity: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
figure.snip1384 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
figure.snip1384:hover img,
figure.snip1384.hover img {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  opacity: 0.5;
}
figure.snip1384:hover:after,
figure.snip1384.hover:after {
  opacity: 1;
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
figure.snip1384:hover h3,
figure.snip1384.hover h3,
figure.snip1384:hover p,
figure.snip1384.hover p,
figure.snip1384:hover i,
figure.snip1384.hover i {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
}

/*
    オ―バーレイ表示

*/
.overlay-bg {
    position: relative;
}

.overlay {
    position: absolute;
    z-index: 1;
    opacity: 0;

    -webkit-transition:all ease 0.4s;
    -moz-transition:all ease 0.4s;
    -o-transition:all ease 0.4s;
    transition:all ease 0.4s;
}

.overlay-bg:hover .overlay {
    opacity: 0.5;
}

.overlay-bg .overlay {
    top: 8px;
    right: 8px;
}

/*エレメントを追加する*/

.add-item{
    position: relative;
    height:1em;
    -webkit-transition:all ease 0.4s;
    -moz-transition:all ease 0.4s;
    -o-transition:all ease 0.4s;
    transition:all ease 0.4s;
}
.add-item md-menu{
    position: absolute;
    z-index: 1;
    opacity: 0;
    top: -0.5em;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition:all ease 0.4s;
    -moz-transition:all ease 0.4s;
    -o-transition:all ease 0.4s;
    transition:all ease 0.4s;
}

.add-item:hover {
    height:4em;
    background-color: #b9f6ca;
    border: 2px dashed blue;
}
.add-item:hover md-menu{
    display: block;
    opacity: 1;
    height:4em;
}


.indigo{
    background-color: #5C6BC0;
    color: white;
}

.indigo{
    background-color: #5C6BC0;
    color: white;
}

.label-block{
    background-color: #606060;
    color: white;
    text-align: center;
    height: 2em;
    line-height: 2em;
    min-width: 10em;
    font-size: small;
    font-weight: bolder;
}
.header-block{
    /*background-color: #bbbbbb;*/
    color: #606060;
    font-weight: bolder;
}
.label-entry {
    background-color: #5C6BC0;
    color: white;
    text-align: center;
    height: 2em;
    line-height: 2em;
    min-width: 10em;
    font-size: small;
    font-weight: bolder;
}
.header-entry {
    /*background-color: #a9adc1;*/
    color: #5C6BC0;
    font-weight: bolder;
}
.label-accessment {
    background-color: #ff6a00;
    color: white;
    text-align: center;
    height: 2em;
    line-height: 2em;
    min-width: 10em;
    font-size: small;
    font-weight: bolder;
}
.header-accessment {
    /*background-color: #fcdfcb;*/
    color: #ff6a00;
    font-weight: bolder;
}

.entry-media {
    width: 300px;
}
