@charset "UTF-8";
/* 共通 ------------------------------*/
/**[class*=cp-],
*[class*=cp-] * {
  box-sizing: border-box;
}*/

/*---------------------------------------------------*/
/*--------------------category------------------------*/
/*----------------------------------------------------*/
.category {
/*  height: 357px;*/
  position: relative;
  pointer-events: none;
}
.category:not(:first-child) {
  border-top: 1px solid #000;
}
/*.category:nth-child(2) {*/
  /*カテゴリー1の背景を設定*/
/*  background: url(../img/category_img/DSC02591-min.jpg) no-repeat center center/cover;
}*/
/*.category:nth-child(3) {*/
  /*カテゴリー2の背景を設定*/
/*  background: url(../img/category_img/DSC02937-min.jpg) no-repeat center center/cover;
}*/
/*.category:nth-child(4) {*/
  /*カテゴリー3を追加下場合の背景を設定*/
/*  background: url(../img/category_img/DSC02937-min.jpg) no-repeat center center/cover;
}*/
/*.category:nth-child(5) {*/
  /*カテゴリー4を追加下場合の背景を設定*/
/*  background: url(../img/category_img/DSC02937-min.jpg) no-repeat center center/cover;
}*/
.category:hover:after {
  content: "";
  /* ↓暗いオーバーレイを半透明で配置 */
  background-color: rgba(0, 0, 0, 0.5);
  /* ↓全体を覆うように配置 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  /*ここで-1にすることで背景画像を暗くし、テキストやHTMLのタグだけ浮かせられる　はずだができないときもある*/
}
@media screen and (max-width: 767px) {
  .category {
    height: 588px;
  }
}

.category-inner {
  color: #ffffff;
  pointer-events: auto;
}
.category-position {
/*  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);*/
  text-align: center;
  z-index: 5;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}
@media screen and (max-width: 767px) {
  .category-position {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
      width: 100%;
  }
}

.category-tittle {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 27px;
  font-family: Gill Sans;
}

.category-subtitle {
  font-size: 4rem;
  letter-spacing: 2.5px;
  margin-bottom: 24px;
  white-space: pre-wrap;
  font-family: Gill Sans;
}

.category-hover {
  letter-spacing: 0.8px;
  margin-top: 40px;
  font-weight: bold;
  color: transparent;
  transition: 0.5s;
}

.category-inner:hover .category-hover {
  color: #ffffff;
}

/*---------------------------------------------------*/
/*--------------------footer個別設定------------------------*/
/*----------------------------------------------------*/
/*footer {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  footer {
    margin-top: 0px;
    padding-top: 36px;
  }
}*/