/** Shopify CDN: Minification failed

Line 940:0 Unexpected "}"

**/
/* ==========================================
  商品ページ
========================================== */
/* @media screen and (min-width:750px) {
  .grid--2-col-tablet .grid__item {
    width: 42rem;
    flex-shrink: 0;
  }
} */
.re-product {
  letter-spacing: 0;
}

.re-product__left-wrapper {
  width: 100%;
  flex-shrink: 0;
}

@media screen and (min-width:990px) {
  .re-product__left-wrapper {
    width: 50%;
  }
}

.re-product__left-inner {
  width: 100%;
  position: sticky;
  top: 0;
  padding-left: 0;
  padding-right: 0;
}

@media screen and (min-width:990px) {
  .re-product__left-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}


/* 商品画像スライダー */
.re-product-slider {
  width: 100%;
  margin-top: 2.4rem;
}

.re-product-media-gallery {
  width: 100%;
  padding: 0 2rem;
}

.re-product-media-gallery .splide__track {
  width: 100%;
}

.re-product-media-gallery .splide__list {
  width: 100%;
}

.re-product-media-gallery .splide__slide {
  width: 100%;
}

.re-product-media-gallery .splide__slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.re-product-media-gallery .splide__pagination {
  left: auto;
  right: 10%;
}

.re-product-media-gallery .splide__pagination__page {
  width: 6px;
  height: 6px;
}

.re-product-media-gallery .splide__pagination__page.is-active {
  background-color: #597D93;
  transform: scale(1);
}

/* 矢印のクリック範囲など */
.re-product-media-gallery .splide__arrow {
  background-color: transparent;
  /* ボタンの背景を透明にする */
  height: 20px;
  width: 13px;
  opacity: 1;
  transition: .2s;
}

.re-product-media-gallery .splide__arrow svg {
  display: none;
}

/* 矢印共通のスタイル */
.re-product-media-gallery .splide__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  height: 20px;
  width: 13px;
  position: absolute;
}

/* 前の矢印 */
.re-product-media-gallery .splide__arrow--prev::before {
  background-image: url(../assets/icon_arrow_white_left.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/* 次の矢印 */
.re-product-media-gallery .splide__arrow--next::before {
  background-image: url(../assets/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/* 次のスライドが無い場合の矢印 */
.re-product-media-gallery .button:disabled::before {
  opacity: .5;
}

.re-product-media-gallery .splide__arrow--next {
  right: 0;
}

.re-product-media-gallery .splide__arrow--prev {
  left: 0;
}

.re-product__title {
  margin-top: 1.8rem;
}

@media screen and (min-width:750px) {
  .re-product__title {
    margin-top: 2rem;
  }
}

.re-product__title h1 {
  font-family: "Hina Mincho", serif;
  font-size: 1.7rem;
}

.re-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 40rem;
  width: 100%;
}

.re-price__price {
  font-size: 1.6rem;
}

@media screen and (min-width:750px) {
  .re-price__price {
    font-size: 1.8rem;
  }
}

.re-price p {
  margin: 0;
}

.re-price__point {
  color: #C7D3D9;
  font-size: 1.2rem;
}

@media screen and (min-width:750px) {
  .re-price__point {
    font-size: 1.4rem;
  }
}

.re-price__point span {
  color: #fff;
  font-weight: bold;
  padding-right: 0.6rem;
  font-size: 1.4rem;
}

@media screen and (min-width:750px) {
  .re-price__point span {
    font-size: 1.6rem;
  }
}

.re-price__notification {
    font-size: 1.2rem;
}

.re-sold-out {
  font-size: 16px;
  border-radius: 3px;
  background-color: #EBFF00;
  color: #001976;
  padding: 2px 8px;
  margin-top: 4px;
  display: inline-block;
}

.re-submit-wrapper {
  margin-top: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media screen and (min-width:1200px) {
  .re-submit-wrapper {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: space-between;
  }
}

.re-quantity {

  display: flex;
  align-items: center;
}

.re-quantity__label {
  font-size: 1.2rem;
}

@media screen and (min-width:750px) {
  .re-quantity__label {
    font-size: 1.6rem;
  }
}

.re-quantity__count {
  margin-left: 2rem;
  /* padding: 0.2rem 1rem; */
  font-size: 0.9rem;
  /* 自作 */
  background: #fff;
  height: 28px;
  width: 70px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.re-quantity__count select {
  /* 初期化 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #333;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}

.re-quantity__count select:focus {
  outline: none;
}

.re-quantity__count::after {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  right: 10px;
  top: 43%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  z-index: -1;
}

@media screen and (min-width:750px) {
  .re-quantity__count {
    font-size: 1.6rem;
  }
}

.re-submit-button {
  max-width: 40rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #C27A2C;
  font-family: "Hina Mincho", serif;
  color: #fff;
  font-size: 1.4rem;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  border-radius: 1rem;
  border: none !important;
  transition: opacity 0.2s ease-in-out;
}

@media screen and (min-width:1160px) {
  .re-submit-button {
    font-size: 1.6rem;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    /* max-width: 20rem; */
  }
}

.re-submit-button:hover {
  opacity: 0.75;
  cursor: pointer;
}

.re-submit-button span {
  position: relative;
  padding-left: 2rem;
}

.re-submit-button span::before {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: -1rem;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  background: url("./icon_cart.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width:750px) {
  .product--large:not(.product--no-media) .product__info-wrapper {
    max-width: none !important;
    width: 100%;
  }
}

.re-payments {
  max-width: 40rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.2rem;
}

@media screen and (min-width:750px) {
  .re-payments {
    margin-top: 3.3rem;
  }
}

.re-payments img {
  width: 100%;
  width: 100%;
}

.re-link-share-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  letter-spacing: 0em;
}

.re-link-policy-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}

.re-link-policy {
  text-decoration: underline;
  font-size: 1.2rem;
}

@media screen and (min-width:750px) {
  .re-link-policy {
    font-size: 1.4rem;
  }
}

.re-link-policy:not(:first-child) {
  margin-top: 0.9rem;
}

@media screen and (min-width:750px) {
  .re-link-policy:not(:first-child) {
    margin-top: 1.4rem;
  }
}

.re-share-wrapper {}

.re-share-text {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (min-width:750px) {
  .re-share-text {
    font-size: 1.4rem;
  }
}

.re-share-sns-icons {
  display: flex;
  gap: 2.2rem;
}

.re-share-sns-icon {
  width: 2.2rem;
}

.product__info-wrapper {
  margin-top: 6rem;
}

@media screen and (min-width:990px) {
  .product__info-wrapper {
    margin-top: 0;
  }
}

/* 日本酒王子コメント */
.re-comment {
  display: flex;
  gap: 2rem;
  /* margin-top: 6rem; */
  line-height: 1.3125;
  font-size: 1.4rem;
}

@media screen and (min-width:990px) {
  .re-comment {
    margin-top: 0;
    font-size: 1.6rem;
  }
}


.re-comment-image {
  width: 8rem;
  flex-shrink: 0;
}

@media screen and (min-width:750px) {
  .re-comment-image {
    width: 10rem;
  }
}

.re-comment-image img {
  width: 100%;
}

.re-comment-image figcaption {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}

@media screen and (min-width:750px) {
  .re-comment-image figcaption {
    font-size: 1.4rem;
  }
}

.re-comment__comment {
  position: relative;
  background: #04294B;
  padding: 1.7rem;
  text-align: left;
  border: 1px solid #FFF;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  width: 100%;
}

.re-comment__comment:after,
.re-comment__comment:before {
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  right: 100%;
  top: 30%;
}

.re-comment__comment:after {
  border-color: rgba(4, 41, 75, 0);
  border-top-width: 20px;
  border-bottom-width: 20px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-top: -20px;
  border-right-color: #04294B;
}

.re-comment__comment:before {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 22px;
  border-bottom-width: 22px;
  border-left-width: 11px;
  border-right-width: 11px;
  margin-top: -22px;
  margin-right: 1px;
  border-right-color: #FFFFFF;
}


/* タイトル＆テキスト */
.re-title-text__title {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  font-family: "Hina Mincho", serif;
  font-size: 1.6rem;
  line-height: 2.4;
  background-color: #C7D3D9;
  color: #263C58;
  padding: 0.4rem 0.6rem;
}

@media screen and (min-width:750px) {
  .re-title-text__title {
    font-size: 1.8rem;
  }
}

.re-title-text__text {
  font-size: 1.4rem;
  line-height: 1.33;
}

@media screen and (min-width:750px) {
  .re-title-text__text {
    font-size: 1.5rem;
  }
}

/* 画像とテキスト */
.re-image-text {}

.re-image-text__image {
  width: 100%;
}

.re-image-text__image img {
  width: 100%;
  aspect-ratio: 380/214;
  object-fit: cover;
}

.re-image-text__title {
  font-size: 1.4rem;
  text-decoration: underline;
}

@media screen and (min-width:750px) {
  .re-image-text__title {
    font-size: 1.6rem;
  }
}

.re-image-text__content {
  line-height: 1.33;
  font-size: 1.4rem;
}

@media screen and (min-width:750px) {
  .re-image-text__content {
    font-size: 1.5rem;
  }

}

/* タイトル＆画像 */
.re-title-image {}

.re-title-image__title {
  font-weight: bold;
  font-size: 1.4rem;
}

@media screen and (min-width:750px) {
  .re-title-image__title {
    font-size: 1.6rem;
  }
}

.re-title-image__image {
  max-width: 50rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.re-title-image__image img {
  width: 100%;
}

/* Youtube */
.re-youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.re-youtube iframe {
  width: 100%;
  height: 100%;
}

/* スタイル-ボディ表 */
/* table gridによるレイアウトの初期化 */
table {
  display: grid;
}

table tr,
table tbody,
table thead,
table tfoot {
  display: contents;
}

table th,
table td {
  display: block;
}

/* テーブルレイアウト */
.re-table-style__table {
  -ms-grid-columns: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  height: 23.3rem;
  font-size: 1.1rem;
  line-height: 1.27;
}

.re-table-style__table th {
  font-weight: 400;
}

@media screen and (min-width:750px) {
  .re-table-style__table {
    height: 25.8rem;
    font-size: 1.3rem;
  }
}

.re-table-style__title {
  color: #001976;
  font-size: 1.4rem;
  background-color: #fff;
  font-weight: bold !important;
}

@media screen and (min-width:750px) {
  .re-table-style__title {
    font-size: 1.6rem;
  }
}

.re-table-style__center,
.re-table-style__table td {
  display: grid;
  place-items: center;
}

.re-table-style__table td {
  color: #597D93;
}

.re-table-style__table-row2 th,
.re-table-style__table-row2 td {
  background-color: #082846;
  /* border-top:  1px solid #3A5C7B; */
}

.re-table-style__left {
  display: flex;
  align-items: center;
  text-align: left;
  padding-left: 1rem;
  border-right: 1px solid #fff !important;
}

.re-table-style__table-row3 th,
.re-table-style__table-row3 td {
  background-color: #153B5F;
  border-top: 1px solid #3A5C7B;
}

.re-table-style__table-row4 th,
.re-table-style__table-row4 td {
  background-color: #254E76;
  border-top: 1px solid #3A5C7B;
}

.re-table-style__table .active {
  background-color: #C7D3D9;
  color: #031E37;
  font-weight: bold;
}

.re-table-style__table-row1 th:not(:first-child) {
  border-left: 1px solid #3A5C7B;
  border-bottom: 1px solid #fff;
}

.re-table-style__border-right {
  border-right: 1px solid #3A5C7B;
}


/* 背景色付きテキスト */
.re-text-bg {
  font-size: 1.4rem;
  font-weight: bold;
  color: #06507C;
  background-color: #F5FF00;
  padding: 1.4rem 1.5rem;
  line-height: 1.44;
  text-align: center;
}

@media screen and (min-width:750px) {
  .re-text-bg {
    font-size: 1.8rem;
    padding: 1rem 1.5rem;
    text-align-last: left;
  }
}


/* タグ */
.re-tags {}

.re-tags__items {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
/* タグのフォントサイズを1.4→1.2rem */
.re-tags__item {
  background-color: #597D93;
  font-size: 1.2rem;
  padding: 0.2rem 0.4rem;
}
/* タグのフォントサイズを1.6→1.2rem */
@media screen and (min-width:750px) {
  .re-tags__item {
    font-size: 1.2rem;
  }
}

/* 商品概要 */
.re-table-product {}

.re-table-product__main-title {
  font-size: 1.6rem;
  font-weight: bold;
}

@media screen and (min-width:750px) {
  .re-table-product__main-title {
    font-size: 1.8rem;
  }
}

.re-table-product__items {}

.re-table-product__item {
  display: flex;
  border-bottom: 1px solid #fff;
  padding: 1.4rem 0;
  font-size: 1.2rem;
}

@media screen and (min-width:750px) {
  .re-table-product__item {
    font-size: 1.5rem;
  }
}

.re-table-product__item:first-child {
  border-top: 1px solid #fff;
}

.re-table-product__title {
  width: 11.8rem;
  flex-shrink: 0;
  letter-spacing: 0em;
  line-height: 1.47;
}

.re-table-product__text {
  letter-spacing: 0em;
  line-height: 1.47;
}

/* 味わい */
.re-table-taste {}

.re-table-taste__title {
  font-size: 1.6rem;
  font-weight: bold;
}

@media screen and (min-width:750px) {
  .re-table-taste__title {
    font-size: 1.8rem;
  }
}

.re-taste-table__items {
  display: grid;
  -ms-grid-columns: repeat(4, 1fr);
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: repeat(2, 5.6rem);
  grid-template-rows: repeat(2, 5.6rem);
  gap: 0.4rem;
}

@media screen and (min-width:750px) {
  .re-taste-table__items {
    display: grid;
    -ms-grid-rows: repeat(2, 6.8rem);
    grid-template-rows: repeat(2, 6.8rem);
  }
}

.re-taste-table__item {
  text-align: center;
  font-size: 1.3rem;
}

@media screen and (min-width:750px) {
  .re-taste-table__item {
    font-size: 1.5rem;
  }
}

.re-taste-table__head {
  background-color: #263C58;
  height: 50%;
  display: grid;
  place-items: center;
}

.re-taste-table__content {
  background-color: #395880;
  height: 50%;
  display: grid !important;
  place-items: center;
}



/* 蔵元情報 */
.re-kuramoto {}

.re-kuramoto__title {
  font-weight: bold;
  font-size: 1.6rem;
}

@media screen and (min-width:750px) {
  .re-kuramoto__title {
    font-size: 1.8rem;
  }
}

.re-kuramoto__image {
  width: 100%;
}

.re-kuramoto__image img {
  width: 100%;
}

.re-kuramoto__name {
  margin-top: 2.2rem;
  font-size: 1.6rem;
}

.re-kuramoto-location {
   font-size: 1.3rem
}

@media screen and (min-width:750px) {
  .re-kuramoto__name {
    margin-top: 4rem;
    font-size: 1.8rem;
  }
}

.re-kuramoto__text {
  line-height: 1.5;
  letter-spacing: .04em;
  font-size: 1.4rem;
}

@media screen and (min-width:750px) {
  .re-kuramoto__text {
    font-size: 1.4rem;
    line-height: 1.33;
    letter-spacing: .04em;
}
  }
}

.re-link__wrapper {
  margin-bottom: 0;
}

.re-link {
  display: block;
  width: 100%;
  height: 4.3rem;
  background-color: #597D93;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

@media screen and (min-width:750px) {
  .re-link {
    height: 5rem;
    font-size: 1.6rem;
  }
}

.re-link span {
  position: relative;
  padding-right: 1rem;
}

.re-link span::after {
  content: "";
  width: 0.9rem;
  height: 1.7rem;
  position: absolute;
  top: 50%;
  right: -0.4rem;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  background: url("./icon_arrow_white.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

button.share-button__button {
  width: 100%;
  background-color: #fff;
  color: #597D93;
  display: grid;
  place-items: center;
  position: relative;
  transition: opacity 0.2s ease-in-out;
  font-size: 1.3rem;
  height: 4.3rem;

}

@media screen and (min-width:750px) {
  button.share-button__button {
    font-size: 1.6rem;
    height: 5rem;
  }
}

.share-button__button .icon-share {
  display: none;
}

button.share-button__button::before {
  content: "";
  width: 2.2rem;
  height: 1.9rem;
  position: absolute;
  top: 50%;
  left: 7%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  background: url("./icon_share.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;

}

.share-button__button:hover {
  text-decoration: none;
  opacity: 0.75;
}

/* ==========================================
  関連商品セクション
========================================== */


.re-related-products .card__heading {
  font-family: "Hina Mincho", serif;
  font-size: 1.2rem;
}

@media screen and (min-width:750px) {
  .re-related-products .card__heading {
    font-size: 1.8rem;
  }
}

.re-related-products .card-information {
  margin-top: 1.4rem;
  font-size: 1.2rem;
}

@media screen and (min-width:750px) {
  .re-related-products .card-information {
    font-size: 1.5rem;
  }
}

/* ==========================================
  商品画像モーダル
========================================== */
.modal {}

.modal-overlay {
  align-items: center;
  background: rgba(0, 0, 0, .6);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.modal-container {
  background-color: #F7F7F7;
  max-width: 100rem;
  /* overflow-y: scroll;
  overflow-x: scroll; */
  width: 90%;
  height: 90%;
  /* aspect-ratio: 1/1; */
  position: relative;
}

.modal-content {
  width: 100%;
  height: 100%;
  overflow: auto;
}

/* @media screen and (min-width:750px) {
  .modal-content {
    overflow: hidden;
  }
} */

.modal__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 18px;
  height: 18px;
}

@media screen and (min-width:750px) {
  .modal-header {
    top: 26px;
    right: 44px;
  }
}

.modal__image {
  /* aspect-ratio: 1/1; */
  object-fit: contain;
  width: 100%;
}

.modal__image.width100 {
  width: 100%;
  height: auto;
}

.modal__image.height100 {
  width: auto;
  height: 100%;
}

.modal__image.heightWidth100 {
  width: 95% !important;
  height: 95% !important;
}

/* 
@media screen and (min-width:750px) {
  .modal__image {
    width: 100%;
    height: 100%;
  }
} */

.modal-close {
  background: transparent;
  border: 0;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
  background-color: #fff;
  width: 30px;
  height: 30px;
}

@media screen and (min-width:750px) {
  .modal-close {
    width: 50px;
    height: 50px;
  }
}

.modal-close::before,
.modal-close::after {
  content: "";
  display: block;
  width: 60%;
  /*バツ線の長さ*/
  height: 1px;
  /*バツ線の太さ*/
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーダルアニメーション */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.modal-overlay {
  background-color: rgba(0, 0, 0, .6);
}

.modal-container {
  background-color: transparent;
}

.micromodal-slide[aria-hidden="false"] .modal-overlay {
  animation: mmfadeIn .3s cubic-bezier(.0, .0, .2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal-container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-overlay {
  animation: mmfadeOut .3s cubic-bezier(.0, .0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}


/* ==========================================
  商品説明にCSS追加
========================================== */
.product__description h2 {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  font-family: "Hina Mincho", serif;
  font-size: 1.6rem;
  line-height: 2.4;
  background-color: #C7D3D9;
  color: #263C58;
  padding: 0.4rem 0.6rem;
}

@media screen and (min-width:750px) {
  .product__description h2 {
    font-size: 1.8rem;
  }
}


.product__description h3 {
  font-size: 1.4rem;
  text-decoration: underline;
}

@media screen and (min-width:750px) {
  .product__description h3 {
    font-size: 1.6rem;
  }
}

.product__description p {
  font-size: 1.4rem;
  line-height: 1.33;
}

@media screen and (min-width:750px) {
  .product__description p {
    font-size: 1.5rem;
  }
}

/* ==========================================
  SP向け追従ボタン
========================================== */
.re-sticky-button {
  height: 80px;
  display: grid;
  place-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color:rgb(227, 222, 216);
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (min-width:750px) {
  .re-sticky-button {
    display: none;
  }
}

.re-sticky-button .re-submit-button {
  margin-bottom: 0;
}

/* ==========================================
  汎用ボタン
========================================== */

.re-product-button {
  text-decoration: none !important;
  display: grid;
  place-items: center;
  background-color: #597d93;
  font-size: 1.4rem;
  color: #fff;
  font-family: "Hina Mincho", serif;
  border: none;
  padding: 1.3rem 3.2rem 1.3rem 2rem;
  margin: 1rem;
  display: inline-block;
  position: relative;
}

@media screen and (min-width:750px) {
  .re-product-button {
    padding: 1.8rem 3.8rem 1.8rem 2.8rem;
  }
}

.re-product-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.7rem;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  width: 7px;
  height: 12px;
  background: url("./icon_arrow_white.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width:750px) {
  .re-blog-button::after {
    right: 2.1rem;
  }
}

/* 文中表の左paddingを削除商品説明中に */
.pdt {
  padding-left: 0rem;
}

/* 画像が横幅からはみでないように */
 img {
    max-width: 100%;
}