@charset "UTF-8";

:root {
  --gv-primary-color: #d50a1d;
  --gv-text-primary: #000000;
  --gv-text-secondary: #666666;
  --gv-text-placeholder: #999999;
  --gv-bg-primary: #ffffff;
  --gv-bg-secondary: #f5f5f5;
  --gv-border-color: #e5e5e5;
  --gv-border-search: #333333;
}

._gv__main {
  background-color: var(--gv-bg-secondary);
  padding-top: 2.2rem;
  padding-bottom: 2.5rem;
}

._gv__title-wrap {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

._gv__title {
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--gv-text-primary);
  margin-bottom: 0.625rem;
}

._gv__search-wrap {
  width: 1400px;
  margin: 0 auto 1.675rem;
  display: flex;
  justify-content: center;
}

._gv__search-box {
  position: relative;
  width: 16.5rem;
  height: 1.2rem;
  border-radius: 50px;
  /* border: 1px solid var(--gv-border-search); */
  background: var(--gv-bg-primary);
  display: flex;
  align-items: center;
  padding-left: 1.45rem;
  padding-right: 0.65rem;
  transition: all 0.3s ease;
}

._gv__search-box:hover,
._gv__search-box:focus-within {
  border-color: var(--gv-primary-color);
}

._gv__search-ico {
  position: absolute;
  left: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.45rem;
  height: 0.45rem;
}

._gv__search-input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.425rem;
  color: var(--gv-text-primary);
  line-height: 1.2rem;
  padding: 0;
}

._gv__search-input::placeholder {
  color: var(--gv-text-placeholder);
  font-size: 0.425rem;
}

._gv__products-wrap {
  width: 1400px;
  margin: 0 auto;
}

._gv__products-grid {
  display: flex;
  gap: 0.575rem .575rem;
  flex-wrap: wrap;
  padding-bottom: .75rem;
}
._gv__product-card {
  width: calc((100% - .575rem * 3) / 4);
  height: 8.25rem;
  background: var(--gv-bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.625rem;
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
}

._gv__product-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

._gv__product-img-wrap {
  width: 100%;
  height: 4.35rem;
  overflow: hidden;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
._gv__product-img-wrap picture {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
._gv__product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s ease;
}

._gv__product-card:hover ._gv__product-img {
  transform: scale(1.05);
}

._gv__product-model {
  font-size: 0.4rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--gv-text-primary);
  margin-bottom: 0.175rem;
  text-align: center;
}

._gv__product-name {
  font-size: 0.3rem;
  line-height: 1.3;
  font-weight: 500;
  color: var(--gv-text-secondary);
  margin-bottom: 0.425rem;
  text-align: center;
  white-space: nowrap;
}

._gv__product-more {
  font-size: 0.35rem;
  line-height: 1.3;
  color: var(--gv-text-primary);
  text-decoration: underline;
  transition: color 0.3s ease;
  text-align: center;
}

._gv__product-card:hover ._gv__product-more {
  color: var(--gv-primary-color);
}

@media (max-width: 1440px) {
  ._gv__title-wrap,
  ._gv__search-wrap,
  ._gv__products-wrap {
    width: 94%;
  }
}

@media (max-width: 1024px) {
  ._gv__main {
    padding-top: 1.5rem;
    padding-bottom: 1.8rem;
  }

  ._gv__title {
    font-size: 0.75rem;
  }

  ._gv__search-box {
    width: 100%;
    max-width: 16.5rem;
  }

  ._gv__product-row {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
  }

  ._gv__product-card {
    flex: 0 0 48%;
    width: 48%;
    height: auto;
    padding-bottom: 0.625rem;
  }

  ._gv__products-grid {
    /* gap: 0; */
  }
}

@media (max-width: 768px) {
  ._gv__product-card {
    flex: 0 0 100%;
    width: 100%;
  }

  ._gv__title {
    font-size: 0.7rem;
  }

  ._gv__product-name {
    white-space: normal;
  }
}

:root {
  --gi-primary-color: #d50a1d;
  --gi-text-primary: #000000;
  --gi-text-secondary: #666666;
  --gi-bg-primary: #ffffff;
  --gi-bg-secondary: #f5f5f5;
  --gi-border-divider: #d9d9d9;
  --gi-screenshot-bg: #eaecef;
}

._gi__main {
  background-color: var(--gi-bg-secondary);
  padding-top: 2.8rem;
  padding-bottom: 3.375rem;
}

._gi__content-wrap {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

._gi__left-panel {
  flex: 0 0 17.5rem;
  width: 17.5rem;
  height: 19.825rem;
  background: var(--gi-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
}

._gi__product-img-wrap {
  width: 10.225rem;
  height: 13.075rem;
}

._gi__product-img-wrap picture,
._gi__product-img {
  width: 100%;
  height: 100%;
}

._gi__product-img {
  object-fit: contain;
}

._gi__right-panel {
  /* flex: 0 0 15.375rem; */
  width: 15.375rem;
  display: flex;
  flex-direction: column;
}

._gi__head-model {
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--gi-text-primary);
  margin-bottom: 0.15rem;
}

._gi__head-name {
  font-size: 0.55rem;
  line-height: 1.3;
  font-weight: 500;
  color: var(--gi-text-secondary);
  margin-bottom: 1.075rem;
}

._gi__divider {
  width: 100%;
  height: 1px;
  background: var(--gi-border-divider);
  margin-bottom: 1rem;
}

._gi__divider--bottom {
  margin-bottom: 1.525rem;
  margin-top: 1.55rem;
}

._gi__guide-title {
  font-size: 0.55rem;
  line-height: 1.3;
  font-weight: 500;
  color: var(--gi-text-primary);
  margin-bottom: 0.775rem;
}

._gi__steps-list {
  display: flex;
  flex-direction: column;
}

._gi__step-item {
  margin-bottom: 0.475rem;
}

._gi__step-item:last-child {
  margin-bottom: 0;
}

._gi__step-head {
  display: flex;
  align-items: flex-start;
  gap: 0.175rem;
}

._gi__step-no {
  flex: 0 0 auto;
  width: 0.525rem;
  height: 0.525rem;
  border-radius: 50%;
  background: var(--gi-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.275rem;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}

._gi__step-text {
  flex: 1;
  font-size: 0.275rem;
  line-height: 1.5;
  line-height: 1.8;
  font-weight: 600;
  color: var(--gi-text-primary);
  white-space: normal;
}

._gi__step-screenshot {
  margin-left: 0.7rem;
  margin-top: 0.225rem;
  width: 100%;
}
._gi__step-screenshot picture{
  width: 100%;
}
._gi__step-screenshot img{
  max-width: 100%;
}


._gi__step-screenshot--sm {
  margin-top: 0.5rem;
}

._gi__step-screenshot--md {
  max-width: 100%;
}

._gi__screenshot-img {
  display: block;
}

._gi__cta-btn {
  width: 6.75rem;
  height: 1.4rem;
  background: var(--gi-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.425rem;
  line-height: 1;
  font-weight: 600;
  color: #fff ;
  cursor: pointer;
  padding: 0;
  border-radius:0;
  margin:1.5rem 0 0;
}
._gi__cta-btn  span{
  position: relative;
  z-index: 2;
}
._gi__cta-btn:hover {
  color: #d50a1d ;
}
.product_content_app{
  width: 100%;
}
.product_content_app img{
  max-width: 100%;
}
@media (max-width: 1440px) {
  ._gi__content-wrap {
    width: 94%;
  }
}

@media (max-width: 1024px) {
  ._gi__main {
    padding-top: 1.5rem;
    padding-bottom: 1.8rem;
  }

  ._gi__content-wrap {
    flex-direction: column;
    gap: 1rem;
  }

  ._gi__left-panel,
  ._gi__right-panel {
    flex: 0 0 auto;
    width: 100%;
  }

  ._gi__left-panel {
    height: auto;
    padding: 2rem 0;
  }

  ._gi__product-img-wrap {
    width: 60%;
    max-width: 10.225rem;
    height: auto;
    aspect-ratio: 409 / 523;
  }

  ._gi__step-screenshot,
  ._gi__step-screenshot--sm,
  ._gi__step-screenshot--md {
    width: calc(100% - 0.7rem);
    height: auto;
  }
  ._gi__left-panel{
    position: static;
    top: auto;
  }
}

@media (max-width: 768px) {
  ._gi__head-model {
    font-size: 0.9rem;
  }

  ._gi__head-name,
  ._gi__guide-title {
    font-size: 0.5rem;
  }
}



.product_content_pc img{
  max-width: 100%;
}