@charset "UTF-8";

/* =====================
  変数
===================== */
:root {
  --inner-width: 1120px;
  --header-height: 100px;
}

/* =====================
  共通
===================== */
.inner {
  width: var(--inner-width);
  margin-inline: auto;
}

/* =====================
  mv
===================== */
.main .mv {
  background: var(--black);
  padding-top: 310px;
  position: relative;
}
.main .mv .mv-bg {
  background-image: url('/assets/image/items/items_bg.png');
  height: 32.61538461538461vw;
  min-height: 424px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 2;
}
.main .mv h1 {
  font-family: var(--mincho);
  font-size: 80px;
  color: var(--white);
  margin-top: 21px;
  padding-inline: 50px;
  position: relative;
  z-index: 2;
  line-height: 1;
}
.main .about {
  display: flex;
  width: 1200px;
  padding-inline: 48px;
  /* align-items: center; */
  gap: 87px;
  margin-top: 186px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.main .about::before {
  content: attr(data-text);
  display: block;
  font-family: var(--mincho);
  font-size: 100px;
  white-space: nowrap;
  color: var(--white);
  position: absolute;
  top: -90px;
  opacity: 0.08;
  right: 113px;
}
.main .about::after {
  content: '';
  background-image: url('/assets/image/items/book.png');
  width: 187px;
  height: 210px;
  display: block;
  position: absolute;
  right: 70px;
  top: -182px;
  opacity: 0.5;
}
.main .mv .about-wrapper {
  width: 480px;
  padding-top: 70px;
}
.main .mv .about p {
  font-size: 15px;
  color: var(--white);
  padding-top: 52px;
  line-height: 1.8;
}
.main .mv .kv02 {
  text-align: center;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}
.main .mv .kv02 img{
    position:relative;
    right: 35px;
}
.main .about-container {
  position: relative;
}
.bg {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url('/assets/image/common/bg.png');
  width: 100%;
  height: 583px;
  transform: skewY(-10deg);
}
/* =====================
  製品一覧
===================== */
.item-list {
  background: var(--black);
  color: var(--white);
  padding-inline: 50px;
  padding-top: 61px;
  padding-bottom: calc(162px + 159px);
}
.item-list .items {
  width: 1200px;
  margin-inline: auto;
}
.item-list .items ul {
  display: flex;
  flex-wrap: wrap;
  gap: calc(159px + 80px) 0;
  justify-content: space-between;
  margin-top: 58px;
}
.item-list .items ul li {
  width: 554px;
  position: relative;
}
.item-list .items .item-wrapper {
  background: var(--red);
  padding: 40px 40px;
  width: 414px;
  position: absolute;
  bottom: -159px;
  right: 0;
}
.item-list .items .item-wrapper .item-name {
  font-family: var(--mincho);
  font-size: 20px;
}
.item-list .items .item-wrapper .item-p {
  font-size: 15px;
  padding-top: 19px;
}
