.oupute_goods_read {
  position: relative;
  overflow: hidden;
  background: #F8F8F8;
  color: var(--oupute-color-title, #222222);
  font-family: var(--oupute-font-family, "Montserrat", Arial, sans-serif);
  --oupute-goods-read-visual-size: 482px;
}

.oupute_goods_read *,
.oupute_goods_read *::before,
.oupute_goods_read *::after {
  box-sizing: border-box;
}

.oupute_goods_read .oupute-goods-read-container {
  width: min(var(--oupute-container-max, 1440px), calc(100% - 48px));
  max-width: var(--oupute-container-max, 1440px);
  margin-left: auto;
  margin-right: auto;
}

.oupute_goods_read .oupute-goods-read-hero {
  padding: 128px 0 105px;
  background: #F8F8F8;
}

.oupute_goods_read .oupute-goods-read-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 632px) minmax(0, 768px);
  gap: 40px;
  align-items: center;
}

.oupute_goods_read .oupute-goods-read-gallery {
  display: grid;
  grid-template-columns: 120px minmax(0, 482px);
  gap: 30px;
  align-items: center;
  width: 100%;
  max-width: 632px;
  min-width: 0;
}

.oupute_goods_read .oupute-goods-read-thumbs-shell {
  position: relative;
  display: grid;
  grid-template-rows: 44px 16px 396px 14px 44px;
  grid-template-areas:
    "prev"
    "."
    "thumbs"
    "."
    "next";
  gap: 0;
  align-items: center;
  justify-items: center;
  width: 120px;
  height: 514px;
  min-width: 0;
}

.oupute_goods_read .oupute-goods-read-thumbs-shell::before,
.oupute_goods_read .oupute-goods-read-thumbs-shell::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 2;
  width: 120px;
  height: 40px;
  pointer-events: none;
}

.oupute_goods_read .oupute-goods-read-thumbs-shell::before {
  top: 2px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.oupute_goods_read .oupute-goods-read-thumbs-shell::after {
  bottom: 0;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.oupute_goods_read .oupute-goods-read-thumb-arrow {
  position: relative;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #3D3D3D;
  cursor: pointer;
  box-shadow: none;
  transition: color 0.24s ease, opacity 0.24s ease;
}

.oupute_goods_read .oupute-goods-read-thumb-prev {
  grid-area: prev;
}

.oupute_goods_read .oupute-goods-read-thumb-next {
  grid-area: next;
}

.oupute_goods_read .oupute-goods-read-thumb-arrow:hover {
  background: transparent;
  color: var(--oupute-color-primary, #F2821F);
  box-shadow: none;
}

.oupute_goods_read .oupute-goods-read-thumb-arrow.swiper-button-disabled,
.oupute_goods_read .oupute-goods-read-thumb-arrow.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.oupute_goods_read .oupute-goods-read-thumb-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}

.oupute_goods_read .oupute-goods-read-thumbs {
  grid-area: thumbs;
  width: 120px;
  height: 396px;
  overflow: hidden;
}

.oupute_goods_read .oupute-goods-read-thumbs .swiper-slide {
  width: 120px;
  height: 120px;
}

.oupute_goods_read .oupute-goods-read-thumb {
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #FFFFFF;
  cursor: pointer;
  transition: border-color 0.24s ease, opacity 0.24s ease;
}

.oupute_goods_read .oupute-goods-read-thumb.swiper-slide-thumb-active,
.oupute_goods_read .oupute-goods-read-thumb.is-active {
  border-color: #FD752A;
}

.oupute_goods_read .oupute-goods-read-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.oupute_goods_read .oupute-goods-read-main-swiper {
  width: 100%;
  max-width: var(--oupute-goods-read-visual-size);
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
}

.oupute_goods_read .oupute-goods-read-main-link {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  overflow: hidden;
}

.oupute_goods_read .oupute-goods-read-main-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.oupute_goods_read .oupute-goods-read-main-link.is-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.oupute_goods_read .oupute-goods-read-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(242, 130, 31, 0.92);
  color: #FFFFFF;
  transform: translate(-50%, -50%);
}

.oupute_goods_read .oupute-goods-read-play svg {
  width: 34px;
  height: 34px;
  display: block;
}

.oupute_goods_read .oupute-goods-read-info {
  height: var(--oupute-goods-read-visual-size);
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

.oupute_goods_read .oupute-goods-read-title {
  margin: 0;
  color: #222222;
  font-family: var(--oupute-font-family, "Montserrat", Arial, sans-serif);
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: -0.72px;
  overflow-wrap: anywhere;
}

.oupute_goods_read .oupute-goods-read-subtitle {
  margin: 20px 0 0;
  color: #222222;
  font-family: var(--oupute-font-family, "Montserrat", Arial, sans-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 42px;
  max-height: none;
  min-height: 0;
  flex: 1 1 auto;
  margin-bottom: 32px;
  padding-right: 10px;
  overflow-y: auto;
  overflow-wrap: anywhere;
}

.oupute_goods_read .oupute-goods-read-subtitle::-webkit-scrollbar {
  width: 4px;
}

.oupute_goods_read .oupute-goods-read-subtitle::-webkit-scrollbar-track {
  background: rgba(34, 34, 34, 0.08);
  border-radius: 999px;
}

.oupute_goods_read .oupute-goods-read-subtitle::-webkit-scrollbar-thumb {
  background: var(--oupute-color-primary, #F2821F);
  border-radius: 999px;
}

.oupute_goods_read .oupute-goods-read-inquiry {
  flex: 0 0 auto;
  width: 100%;
  min-height: 60px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 50px;
  border: 1px solid var(--oupute-color-primary, #F2821F);
  background: var(--oupute-color-primary, #F2821F);
  color: #FFFFFF;
  font-family: var(--oupute-font-family, "Montserrat", Arial, sans-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.oupute_goods_read .oupute-goods-read-inquiry:hover {
  border-color: var(--oupute-color-primary-hover, #DA751C);
  background: var(--oupute-color-primary-hover, #DA751C);
  color: #FFFFFF;
}

.oupute_goods_read .oupute-goods-read-detail {
  padding: 0 0 120px;
  background: #F8F8F8;
}

.oupute_goods_read .oupute-goods-read-richtext {
  width: 100%;
  color: #222222;
  font-family: var(--oupute-font-family, "Montserrat", Arial, sans-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  overflow-wrap: anywhere;
}

.oupute_goods_read .oupute-goods-read-richtext h1,
.oupute_goods_read .oupute-goods-read-richtext h2,
.oupute_goods_read .oupute-goods-read-richtext h3,
.oupute_goods_read .oupute-goods-read-richtext h4,
.oupute_goods_read .oupute-goods-read-richtext h5,
.oupute_goods_read .oupute-goods-read-richtext h6 {
  text-align: left !important;
}

.oupute_goods_read .oupute-goods-read-richtext > *:first-child {
  margin-top: 0;
}

.oupute_goods_read .oupute-goods-read-richtext > *:last-child {
  margin-bottom: 0;
}

.oupute_goods_read .oupute-goods-read-richtext h1,
.oupute_goods_read .oupute-goods-read-richtext h2 {
  margin: 45px 0;
  color: #222222;
  font-family: var(--oupute-font-family, "Montserrat", Arial, sans-serif);
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  letter-spacing: 0;
  text-align: left;
}

.oupute_goods_read .oupute-goods-read-richtext h1:first-child,
.oupute_goods_read .oupute-goods-read-richtext h2:first-child,
.oupute_goods_read .oupute-goods-read-richtext h3:first-child {
  margin-top: 0;
}

.oupute_goods_read .oupute-goods-read-richtext h3 {
  margin: 45px 0;
  color: #222222;
  font-family: var(--oupute-font-family, "Montserrat", Arial, sans-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: 0;
  text-align: left;
}

.oupute_goods_read .oupute-goods-read-richtext h4,
.oupute_goods_read .oupute-goods-read-richtext h5,
.oupute_goods_read .oupute-goods-read-richtext h6 {
  margin: 42px 0 20px;
  color: #222222;
  font-family: var(--oupute-font-family, "Montserrat", Arial, sans-serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0;
}

.oupute_goods_read .oupute-goods-read-richtext p {
  margin: 0 0 20px;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.oupute_goods_read .oupute-goods-read-richtext p.is-image-only {
  margin: 0;
}

.oupute_goods_read .oupute-goods-read-richtext p.is-image-only + p.is-image-only {
  margin-top: 0;
}

.oupute_goods_read .oupute-goods-read-richtext strong,
.oupute_goods_read .oupute-goods-read-richtext b {
  font-weight: 700;
}

.oupute_goods_read .oupute-goods-read-richtext em,
.oupute_goods_read .oupute-goods-read-richtext i {
  font-style: italic;
}

.oupute_goods_read .oupute-goods-read-richtext a {
  color: var(--oupute-color-primary, #F2821F);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.oupute_goods_read .oupute-goods-read-richtext ul,
.oupute_goods_read .oupute-goods-read-richtext ol {
  margin: 0 0 26px;
  padding-left: 1.4em;
}

.oupute_goods_read .oupute-goods-read-richtext li {
  margin: 0 0 10px;
}

.oupute_goods_read .oupute-goods-read-richtext blockquote {
  margin: 40px 0;
  padding: 28px 34px;
  border-left: 4px solid var(--oupute-color-primary, #F2821F);
  background: #FFFFFF;
  color: #222222;
}

.oupute_goods_read .oupute-goods-read-richtext img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 0;
}

.oupute_goods_read .oupute-goods-read-richtext p > img:only-child {
  width: 100%;
}

.oupute_goods_read .oupute-goods-read-richtext video,
.oupute_goods_read .oupute-goods-read-richtext iframe {
  max-width: 100%;
}

.oupute_goods_read .oupute-goods-read-richtext iframe {
  display: block;
  margin: 40px auto;
}

.oupute_goods_read .oupute-goods-read-richtext table {
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
  margin: 45px 0;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0 !important;
  outline: 0;
  table-layout: fixed;
  background: #FFFFFF;
  color: #222222;
  box-shadow: none;
}

.oupute_goods_read .oupute-goods-read-richtext col,
.oupute_goods_read .oupute-goods-read-richtext colgroup {
  width: auto !important;
}

.oupute_goods_read .oupute-goods-read-richtext h1 + table,
.oupute_goods_read .oupute-goods-read-richtext h2 + table,
.oupute_goods_read .oupute-goods-read-richtext h3 + table {
  margin-top: 0;
}

.oupute_goods_read .oupute-goods-read-richtext table + h1,
.oupute_goods_read .oupute-goods-read-richtext table + h2,
.oupute_goods_read .oupute-goods-read-richtext table + h3 {
  margin-top: 0;
}

.oupute_goods_read .oupute-goods-read-richtext thead,
.oupute_goods_read .oupute-goods-read-richtext tbody,
.oupute_goods_read .oupute-goods-read-richtext tr {
  min-height: 72px;
  border: 0 !important;
}

.oupute_goods_read .oupute-goods-read-richtext tr:nth-child(odd) {
  background: #FFFFFF;
}

.oupute_goods_read .oupute-goods-read-richtext tr:nth-child(even) {
  background: #F8F8F8;
}

.oupute_goods_read .oupute-goods-read-richtext th,
.oupute_goods_read .oupute-goods-read-richtext td {
  min-height: 72px;
  padding: 20px 60px;
  border: 0 !important;
  color: #222222;
  font-family: var(--oupute-font-family, "Montserrat", Arial, sans-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  vertical-align: middle;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.oupute_goods_read .oupute-goods-read-richtext th:first-child,
.oupute_goods_read .oupute-goods-read-richtext td:first-child {
  width: 34% !important;
  color: #222222;
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
}

@media screen and (min-width: 1600px) {
  .oupute_goods_read .oupute-goods-read-container {
    max-width: var(--oupute-container-max, 1440px);
  }
}

@media screen and (max-width: 1400px) {
  .oupute_goods_read {
    --oupute-goods-read-visual-size: 428px;
  }

  .oupute_goods_read .oupute-goods-read-container {
    width: min(var(--oupute-container-max, 1440px), calc(100% - 40px));
  }

  .oupute_goods_read .oupute-goods-read-hero {
    padding: 110px 0 92px;
  }

  .oupute_goods_read .oupute-goods-read-hero-grid {
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    gap: 36px;
  }

  .oupute_goods_read .oupute-goods-read-gallery {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 24px;
    max-width: 560px;
  }

  .oupute_goods_read .oupute-goods-read-thumbs-shell {
    grid-template-rows: 40px 14px 360px 12px 40px;
    grid-template-areas:
      "prev"
      "."
      "thumbs"
      "."
      "next";
    gap: 0;
    width: 108px;
    height: 466px;
  }

  .oupute_goods_read .oupute-goods-read-thumbs-shell::before,
  .oupute_goods_read .oupute-goods-read-thumbs-shell::after {
    width: 108px;
    height: 36px;
  }

  .oupute_goods_read .oupute-goods-read-thumb-arrow {
    width: 40px;
    height: 40px;
  }

  .oupute_goods_read .oupute-goods-read-thumbs {
    width: 108px;
    height: 360px;
  }

  .oupute_goods_read .oupute-goods-read-thumbs .swiper-slide {
    width: 108px;
    height: 108px;
  }

  .oupute_goods_read .oupute-goods-read-title {
    font-size: 48px;
    line-height: 56px;
  }

  .oupute_goods_read .oupute-goods-read-subtitle {
    font-size: 22px;
    line-height: 36px;
    margin-bottom: 28px;
  }
}

@media screen and (max-width: 1200px) {
  .oupute_goods_read {
    --oupute-goods-read-visual-size: 482px;
  }

  .oupute_goods_read .oupute-goods-read-hero {
    padding: 88px 0 78px;
  }

  .oupute_goods_read .oupute-goods-read-hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .oupute_goods_read .oupute-goods-read-gallery {
    justify-self: center;
    max-width: 632px;
    grid-template-columns: 120px minmax(0, 482px);
    gap: 30px;
  }

  .oupute_goods_read .oupute-goods-read-thumbs-shell {
    grid-template-rows: 44px 16px 396px 14px 44px;
    grid-template-areas:
      "prev"
      "."
      "thumbs"
      "."
      "next";
    gap: 0;
    width: 120px;
    height: 514px;
  }

  .oupute_goods_read .oupute-goods-read-thumb-arrow {
    width: 44px;
    height: 44px;
  }

  .oupute_goods_read .oupute-goods-read-thumbs {
    width: 120px;
    height: 396px;
  }

  .oupute_goods_read .oupute-goods-read-thumbs .swiper-slide {
    width: 120px;
    height: 120px;
  }

  .oupute_goods_read .oupute-goods-read-info {
    height: auto;
    width: min(768px, 100%);
    margin: 0 auto;
    overflow: visible;
  }

  .oupute_goods_read .oupute-goods-read-subtitle {
    max-height: none;
    margin-bottom: 0;
    overflow-y: visible;
  }

  .oupute_goods_read .oupute-goods-read-inquiry {
    margin-top: 42px;
  }

  .oupute_goods_read .oupute-goods-read-detail {
    padding-bottom: 100px;
  }

  .oupute_goods_read .oupute-goods-read-title {
    font-size: 44px;
    line-height: 52px;
  }

  .oupute_goods_read .oupute-goods-read-richtext h1,
  .oupute_goods_read .oupute-goods-read-richtext h2 {
    margin: 45px 0;
    font-size: 44px;
    line-height: 52px;
  }
}

@media screen and (max-width: 992px) {
  .oupute_goods_read .oupute-goods-read-hero {
    padding: 70px 0 64px;
  }

  .oupute_goods_read .oupute-goods-read-title {
    font-size: 40px;
    line-height: 48px;
  }

  .oupute_goods_read .oupute-goods-read-subtitle {
    margin-top: 18px;
    font-size: 20px;
    line-height: 32px;
  }

  .oupute_goods_read .oupute-goods-read-detail {
    padding-bottom: 82px;
  }

  .oupute_goods_read .oupute-goods-read-richtext {
    font-size: 18px;
    line-height: 30px;
  }

  .oupute_goods_read .oupute-goods-read-richtext h1,
  .oupute_goods_read .oupute-goods-read-richtext h2 {
    margin: 45px 0;
    font-size: 40px;
    line-height: 48px;
  }

  .oupute_goods_read .oupute-goods-read-richtext h3 {
    margin: 45px 0;
    font-size: 30px;
    line-height: 40px;
  }

  .oupute_goods_read .oupute-goods-read-richtext th,
  .oupute_goods_read .oupute-goods-read-richtext td {
    padding: 18px 34px;
  }

  .oupute_goods_read .oupute-goods-read-richtext th:first-child,
  .oupute_goods_read .oupute-goods-read-richtext td:first-child {
    font-size: 23px;
    line-height: 30px;
  }
}

@media screen and (max-width: 768px) {
  .oupute_goods_read {
    --oupute-goods-read-visual-size: none;
  }

  .oupute_goods_read .oupute-goods-read-container {
    width: min(var(--oupute-container-max, 1440px), calc(100% - 32px));
  }

  .oupute_goods_read .oupute-goods-read-hero {
    padding: 56px 0 54px;
  }

  .oupute_goods_read .oupute-goods-read-hero-grid {
    gap: 38px;
  }

  .oupute_goods_read .oupute-goods-read-gallery {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
    max-width: 560px;
  }

  .oupute_goods_read .oupute-goods-read-main-swiper {
    max-width: none;
    width: 100%;
  }

  .oupute_goods_read .oupute-goods-read-thumbs-shell {
    width: 100%;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    grid-template-rows: none;
    grid-template-areas: "prev thumbs next";
    gap: 10px;
    height: auto;
  }

  .oupute_goods_read .oupute-goods-read-thumbs-shell::before,
  .oupute_goods_read .oupute-goods-read-thumbs-shell::after {
    display: none;
  }

  .oupute_goods_read .oupute-goods-read-thumb-arrow {
    width: 40px;
    height: 40px;
  }

  .oupute_goods_read .oupute-goods-read-thumb-prev svg {
    transform: rotate(-90deg);
  }

  .oupute_goods_read .oupute-goods-read-thumb-next svg {
    transform: rotate(-90deg);
  }

  .oupute_goods_read .oupute-goods-read-thumbs {
    width: 100%;
    height: 82px;
  }

  .oupute_goods_read .oupute-goods-read-thumbs .swiper-slide {
    width: 82px;
    height: 82px;
  }

  .oupute_goods_read .oupute-goods-read-title {
    font-size: 34px;
    line-height: 42px;
  }

  .oupute_goods_read .oupute-goods-read-subtitle {
    font-size: 18px;
    line-height: 29px;
  }

  .oupute_goods_read .oupute-goods-read-inquiry {
    min-height: 56px;
    margin-top: 32px;
    font-size: 17px;
    line-height: 30px;
  }

  .oupute_goods_read .oupute-goods-read-detail {
    padding-bottom: 64px;
  }

  .oupute_goods_read .oupute-goods-read-richtext {
    font-size: 16px;
    line-height: 27px;
  }

  .oupute_goods_read .oupute-goods-read-richtext h1,
  .oupute_goods_read .oupute-goods-read-richtext h2 {
    margin: 38px 0;
    font-size: 34px;
    line-height: 42px;
  }

  .oupute_goods_read .oupute-goods-read-richtext h3 {
    margin: 38px 0;
    font-size: 26px;
    line-height: 34px;
  }

  .oupute_goods_read .oupute-goods-read-richtext h4,
  .oupute_goods_read .oupute-goods-read-richtext h5,
  .oupute_goods_read .oupute-goods-read-richtext h6 {
    margin: 32px 0 16px;
    font-size: 22px;
    line-height: 30px;
  }

  .oupute_goods_read .oupute-goods-read-richtext table {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    margin: 38px 0;
  }

  .oupute_goods_read .oupute-goods-read-richtext {
    overflow-x: hidden;
  }

  .oupute_goods_read .oupute-goods-read-richtext th,
  .oupute_goods_read .oupute-goods-read-richtext td {
    width: auto !important;
    padding: 16px 14px;
    font-size: 17px;
    line-height: 28px;
  }

  .oupute_goods_read .oupute-goods-read-richtext th:first-child,
  .oupute_goods_read .oupute-goods-read-richtext td:first-child {
    font-size: 20px;
    line-height: 28px;
  }
}

@media screen and (max-width: 576px) {
  .oupute_goods_read .oupute-goods-read-container {
    width: min(var(--oupute-container-max, 1440px), calc(100% - 28px));
  }

  .oupute_goods_read .oupute-goods-read-hero {
    padding: 42px 0 42px;
  }

  .oupute_goods_read .oupute-goods-read-hero-grid {
    gap: 30px;
  }

  .oupute_goods_read .oupute-goods-read-thumbs-shell {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .oupute_goods_read .oupute-goods-read-thumb-arrow {
    width: 36px;
    height: 36px;
  }

  .oupute_goods_read .oupute-goods-read-thumbs {
    height: 70px;
  }

  .oupute_goods_read .oupute-goods-read-thumbs .swiper-slide {
    width: 70px;
    height: 70px;
  }

  .oupute_goods_read .oupute-goods-read-main-swiper {
    border-radius: 16px;
  }

  .oupute_goods_read .oupute-goods-read-title {
    font-size: 30px;
    line-height: 38px;
  }

  .oupute_goods_read .oupute-goods-read-subtitle {
    font-size: 16px;
    line-height: 26px;
  }

  .oupute_goods_read .oupute-goods-read-inquiry {
    margin-top: 26px;
    padding: 9px 22px;
  }

  .oupute_goods_read .oupute-goods-read-detail {
    padding-bottom: 52px;
  }

  .oupute_goods_read .oupute-goods-read-richtext h1,
  .oupute_goods_read .oupute-goods-read-richtext h2 {
    margin: 32px 0;
    font-size: 30px;
    line-height: 38px;
  }

  .oupute_goods_read .oupute-goods-read-richtext p {
    margin-bottom: 16px;
  }

  .oupute_goods_read .oupute-goods-read-richtext blockquote {
    margin: 28px 0;
    padding: 22px 24px;
  }
}
