@charset "UTF-8";
/* 商品グループページ用CSS */
.fs-l-main {
  padding: 0;
}

.fs-c-productList {
  display: none;
}

@media screen and (min-width: 751px) {
  .ctm_group_upper {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }
}

a:hover {
  opacity: 1;
}

.lp_contents {
  display: grid;
  gap: 100px;
}
@media screen and (max-width: 991px) {
  .lp_contents {
    gap: 50px;
    padding: 0 10px;
  }
}
@media screen and (min-width: 751px) {
  .lp_contents section {
    margin-left: auto;
    margin-right: auto;
    max-width: 1160px;
  }
}
@media screen and (min-width: 751px) {
  .lp_contents section.card__hero {
    max-width: none;
  }
}

.card__hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3/1;
}
@media screen and (max-width: 991px) {
  .card__hero {
    aspect-ratio: 1/1;
  }
}
.card__hero .card__hero_img {
  position: relative;
  width: 100%;
  height: 100%;
}
.card__hero .card__hero_img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.card__hero .card__hero_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.card__hero_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--ctm-text);
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
}
.card__hero_ttl .subTx {
  display: block;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (min-width: 992px) {
  .card__hero_ttl {
    font-size: 4rem;
  }
}

.card__cart {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 50px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .card__cart {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.card__cart .txBlock {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.card__cart .productNamne {
  font-size: 3rem;
}
@media screen and (max-width: 991px) {
  .card__cart .productNamne {
    font-size: 1.8rem;
  }
}
.card__cart .ctm__add_cart_count {
  width: 5em;
  margin-bottom: 20px;
}
.card__cart .ctm__add_cart {
  width: 100%;
}
.card__cart .ctm_link01 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card__cart .ctm_link01:after {
  display: block;
  content: "";
  width: 13px;
  height: 11px;
  background-image: url(https://theemo.itembox.cloud/item/img/common/icon_arrow2.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.card__lineup_ttl {
  font-size: 3rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  .card__lineup_ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.card__lineup_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .card__lineup_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.card__lineup_item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card__lineup_item .productImg {
  position: relative;
  overflow: hidden;
}
.card__lineup_item .productImg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform-origin: center center;
  transform: scale(1);
  display: block;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.card__lineup_item .productImg img:first-child {
  position: relative;
  z-index: 1;
  opacity: 1;
}
.card__lineup_item .productImg img:last-child {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
}
.card__lineup_item a:hover .productImg img:first-child {
  opacity: 0;
  transform: scale(1.08);
}
.card__lineup_item a:hover .productImg img:last-child {
  opacity: 1;
  transform: scale(1.08);
}

.card__movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
}
.card__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.card__shooting_style {
  display: grid;
}
@media screen and (min-width: 751px) {
  .card__shooting_style {
    gap: 50px;
  }
}

.card__shooting_style_item_ttl {
  font-size: 2.4rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .card__shooting_style_item_ttl {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 991px) {
  .card__shooting_style_item {
    margin-bottom: 30px;
  }
}
.card__shooting_style_item .grid_box {
  display: grid;
  grid-template-columns: 68% 1fr;
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .card__shooting_style_item .grid_box {
    grid-template-columns: 1fr;
  }
}
.card__shooting_style_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform-origin: center center;
  transform: scale(1);
  display: block;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.card__shooting_style_item .grid_box_inner1 .productImg {
  position: relative;
  overflow: hidden;
}
.card__shooting_style_item .grid_box_inner1 a:hover .productImg img {
  transform: scale(1.05);
}
.card__shooting_style_item .grid_box_inner1 .txBlock {
  background-color: var(--ctm-bg1);
  padding: 20px;
}
.card__shooting_style_item .grid_box_inner2 {
  display: grid;
}
@media screen and (max-width: 991px) {
  .card__shooting_style_item .grid_box_inner2 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.card__shooting_style_item .grid_box_inner2 div {
  position: relative;
  aspect-ratio: 360/450;
}
@media screen and (max-width: 991px) {
  .card__shooting_style_item .grid_box_inner2 div {
    aspect-ratio: 1/1;
  }
}
.card__shooting_style_item .grid_box_inner2 div:last-child {
  margin-top: auto;
}

.card__bnr01 {
  display: grid;
}
@media screen and (min-width: 751px) {
  .card__bnr01 {
    gap: 50px;
  }
}

.card__shooting_review {
  position: relative;
}
.card__shooting_review .image {
  position: absolute;
  width: 52%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 991px) {
  .card__shooting_review .image {
    position: relative;
    width: 100%;
  }
}
.card__shooting_review .txBlock {
  width: 52%;
  margin-left: auto;
  position: relative;
  background-color: var(--ctm-bg1);
  padding: 60px;
  z-index: 10;
  margin-top: 30px;
}
@media screen and (max-width: 991px) {
  .card__shooting_review .txBlock {
    width: 90%;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -20px;
  }
}
.card__shooting_review .txBlock .ttl {
  font-size: 2rem;
  margin-bottom: 20px;
}

.card__close .card__close_item {
  overflow: hidden;
  aspect-ratio: 16/6;
}
.card__close .card__close_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform-origin: center center;
  transform: scale(1);
  display: block;
  transition: opacity 0.4s ease, transform 0.6s ease;
}/*# sourceMappingURL=lp.css.map */