@charset "utf-8";
/*-------------------------------------
　基本設定
---------------------------------------*/
#lp_page {
  margin: 0 auto 60px;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}
.contents-section {
  padding: 90px 0 60px;
}
.contents-inner {
  margin: 0 auto;
  width: calc(100% - 30px);
  max-width: 1200px;
}
#pagetop {
  opacity: 1;
  position: fixed;
  bottom: 30px;
  right: 55px;
  transition: opacity .5s;
  z-index: 2;
}
#pagetop a {
  background-color: rgba(51, 51, 51, .8);
  border-radius: 5px;
  color: #fff;
  display: block;
  font-size: 12px;
  line-height: 1.5em;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
}
.rollover:hover, .page_link a:hover {
  -webkit-animation-duration: 1s;
  -webkit-animation-name: flash;
  animation-name: hover-flash;
  animation-duration: 1s;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #lp_page {
    font-size: 3.6vw;
    margin: 0 auto;
    position: relative;
    width: 100%;
  }
  #lp_page img {
    max-width: 100%;
    height: auto;
  }
  .contents-section {
    padding: 40px 0;
  }
  #pagetop {
    right: 2%;
  }
}
/*-------------------------------------
　hタグ設定
---------------------------------------*/
h2.text_title {
  margin-bottom: 40px;
}
h2.text_title span {
  display: flex;
  font-size: 32px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
  line-height: 1.4;
  text-align: center;
  transform: skewX(-14deg);
}
@media screen and (max-width: 767px) {
  h2.text_title {
    margin-bottom: 20px;
  }
  h2.text_title span {
    font-size: 24px;
  }
}
/*-------------------------------------
　各ブロック背景
---------------------------------------*/
.bg-pc-case, .bg-memory, .bg-cpu-cooler, .bg-accessory {
  background: #fff;
}
.bg-motherboard {
  background: #fffef5;
}
.bg-graphic-board {
  background: #fffafa;
}
.bg-case-fan {
  background: #f7fbff;
}
/*-------------------------------------
　ヒーローイメージ
---------------------------------------*/
.hero-image {
  position: relative;
  width: 100%;
}
.hero-image .hero-image_inner {
  margin: 0 auto;
}
.hero-image .hero-image_inner img {
  width: 100%;
}
.main_ttl_box {
	position: absolute;
	z-index: -1;
	left: 50%;
	top: 50%;
	color: #fff;
}
/*-------------------------------------
　パーツブロック
---------------------------------------*/
.parts_wrapper {
  display: flex;
  gap: 10px;
}
.parts_box {
  background-color: #fff;
  border: 2px solid #004da1;
  box-shadow: 3px 3px 0 0 rgba(72, 72, 72, .1);
  width: calc((100% - 40px)/5);
  padding:20px;
}
.parts_box:hover {
  border: 2px solid rgb(173, 3, 17);
  border-image: linear-gradient(45deg, rgba(173, 3, 17, 1) 10%, rgba(229, 0, 18, 1) 51%, rgba(173, 3, 17, 1) 100%);
  border-image-slice: 1;
}
.parts_box a {
  display: block;
  height: 100%;
  width: 100%;
}
.parts_box__detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.parts_box__image {
  margin-bottom: 20px;
  width: 90%;
}
.parts_box__image img {
  max-width: 100%;
}
.parts_box__spec {
  width: 100%;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.parts_box__name {
  color: #333;
  font-weight: bold;
/*  margin-bottom: 10px;*/
  text-align: left;
  word-wrap: break-word;
}
.parts_box__name span:first-child {
  margin-right: .6em;
}
.parts_box__stkname{
  font-size: 14px;
  padding: 6px;
  border: 1px solid #e43344;
  place-self: flex-start;
  color: #e43344;
  line-height: 1;
}
.parts_box__price {
  color: #e43344;
  font-weight: bold;
  /*margin-bottom: 10px;*/
}
.parts_box__price span {
  font-size: 28px;
  padding-right: 2px;
}
.parts_box__button {
  width: 100%;
  cursor:pointer;
}
.parts_box__button::after {
  right: 15px;
}
.cartin-button .parts_box__button::after{
  display:none;
}
.cartin-button .parts_box__button .ico{
  width:18px;
  height:auto;
  margin-right:.5em;
}
.cartin-button[disabled] .parts_box__button{
  background-color:#bbb;
  cursor:default;
}
.cartin-button[disabled] .parts_box__button::before{
  display:none;
}
@media screen and (max-width: 767px) {
  .parts_wrapper {
    flex-wrap: wrap;
  }
  .parts_box {
    width: calc((100% - 10px)/2);
  }
  .parts_box {
    padding: 10px;
  }
  .parts_box__image {
    margin-bottom: 10px;
    width: 100%;
  }
  .parts_box__price span {
    font-size: 6vw;
  }
}