@charset "utf-8";

/*------------------------------------------------
 type-btn 
------------------------------------------------*/
.type-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 20px 50px;
}

.type-btn li {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: bold;
  margin: 0 10px;
  padding: 10px;
  border: 1px solid #000;
  cursor: pointer;
  border-radius: 100vh;
  background: #fff;
}

.type-btn li.active {
  color: #01DE00;
  background: #222;
}

@media only screen and (max-width: 480px) {
    .type-btn {
        justify-content: space-between;
    }

    .type-btn li {
        width: 48%;
        text-align: center;
        margin: 0 0 10px 0;

    }
}

/*------------------------------------------------
 grid 
------------------------------------------------*/
.grid {
    position: relative;
}

.grid .item {
    display: block;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.grid .item .item-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.grid .item .item-content img {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
}

@media only screen and (max-width: 768px) {
    .grid .item  {
        width: 49.5%;
    }
}


/*------------------------------------------------
fancybox
------------------------------------------------*/
.fancybox-thumbs {
    background: transparent !important;
}

.fancybox-thumbs__list a:before {
    border: 6px solid #FA999B;
}


/*------------------------------------------------
デザイン調整用
------------------------------------------------*/
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
}


/* 初期状態は透明 */
img.fadein {
  opacity: 0;
  transition: opacity 1s ease-in;
}

/* 読み込み後に追加されるクラス */
img.fadein.loaded {
  opacity: 1;
}
