@charset "UTF-8";
/* ブレイクポイント設定 */
/* 色設定 */
/* フォント */
/* 文字間隔 */
/* 配置(フレックス) */
/* 擬似要素の共通基盤 */
/* transition */
/* レスポンシブ */
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* 基盤 */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3037809648vw;
  }
}

body {
  color: black;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

li {
  list-style: none;
}

a {
  position: relative;
  text-decoration: none;
  color: black;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

span {
  display: block;
  white-space: nowrap;
}

img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

/* レイアウト */
.l-inner {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 80%;
  }
}

/* ヘッダー(タイトル) */
.header {
  height: 12rem;
  color: #fff;
  background: orange;
  font-size: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .header {
    height: 14rem;
    font-size: 2.2rem;
  }
}

.page-title {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ホバーでオーバーレイ */
.hover03 {
  padding: 5rem 0;
}

.hover03__contents {
  display: grid;
  grid-template-columns: repeat(4, 3fr);
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .hover03__contents {
    grid-template-columns: repeat(2, 4fr);
    gap: 2rem;
    padding: 0 1.5rem;
  }
}
.hover03__contents .contents__item a {
  width: 100%;
  height: 38.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .hover03__contents .contents__item a {
    height: calc((100vw - 15rem - 10rem) * 75 / 100);
  }
}
.hover03__contents .contents__item a img {
  transform: scale(1.07);
  overflow: hidden;
  transition: 0.5s 0.05s ease;
}
.hover03__contents .contents__item a .item__detail {
  position: absolute;
  z-index: 2;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  color: #fff;
  letter-spacing: 0.08em;
  overflow: hidden;
  opacity: 0;
  transition: 0.25s 0.25s ease-in-out;
  padding: 2rem;
}
.hover03__contents .contents__item a .item__detail .item__name {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2.25rem;
}
.hover03__contents .contents__item a .item__detail .border {
  width: 2.5rem;
  border-top: solid 2px #fff;
  margin-bottom: 2.1rem;
}
.hover03__contents .contents__item a .item__detail .item__category {
  font-size: 1.71rem;
  letter-spacing: 0.09em;
  margin-bottom: 1.4rem;
}
.hover03__contents .contents__item a .item__detail .category__content {
  font-size: 1.5rem;
  font-weight: lighter;
  margin-bottom: 2.5rem;
}
.hover03__contents .contents__item a .item__detail .item__brand {
  font-size: 1.71rem;
  letter-spacing: 0.09em;
  margin-bottom: 1.4rem;
}
.hover03__contents .contents__item a .item__detail .brand__content {
  font-size: 1.45rem;
  letter-spacing: 0.11em;
}
.hover03__contents .contents__item a::after {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: rgba(43, 63, 94, 0.8);
  transform: scale(0.8);
  animation: item_hover-out 0.2s both ease-in-out;
  opacity: 0;
  padding: 2rem;
}
.hover03__contents .contents__item a:hover::after {
  animation: item_hover 0.7s forwards ease-in-out;
}
.hover03__contents .contents__item a:hover img {
  transform: scale(1);
}
.hover03__contents .contents__item a:hover .item__detail {
  opacity: 1;
}
@keyframes item_hover {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  55% {
    transform: scale(1.015);
    opacity: 1;
  }
  80% {
    transform: scale(1.015);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes item_hover-out {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */