/* tkym pull down */
.pull-down-select-container .option-select-area {
  margin-bottom: 12px;
}

.pull-down-select-container .option-select-area label {
  display: block;
  font-size: 1.4rem;
}

.pull-down-select-container .option-select-area select {
  display: block;
  outline: none;
  border-radius: 0;
  width: 80%;
  height: 35px;
  padding-left: 10px;
  font-size: 1.6rem;
  color: #666666;
  background-color: white;
  border: solid 1px #666666;
}

.pull-down-select-container .option-select-area .pull-down-note {
  font-size: 1.2rem;
  color: #7e7e7e;
}

/* パスワード入力フォーム */
/* グローバルなスタイルは汎用的に戻すか、SPのデフォルトに近いものにする */
.password_area{
  background-color: #f0f0f0; /* Added background color */
  border: 4px double #333; /* Added double border */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.password_text{
  font-size: 11px;
  text-align: center;
  color: #333; /* 元のスタイルに戻すことを想定 */
  line-height: normal; /* 元のスタイルに戻すことを想定 */
  margin-bottom: 0; /* 元のスタイルに戻すことを想定 */
}

.password_note{
  font-size: 10px;
  padding-bottom: 24px;
  text-align: center;
  color: #7E7E7E; /* 元のSPスタイルに近い色 */
  margin-top: 0; /* 元のスタイルに戻すことを想定 */
  display: block; /* SPで表示されるように */
}

.password_field{ /* <{$product.password_field}> が生成するinput想定 */
  width: 80%;
  height: 32px;
  padding: 0 10px;
  font-size: 1.4rem;
  border: 1px solid #666666;
  outline: none;
  color: #333;
  box-sizing: border-box;
  margin-bottom: 10px;
  background-color: white; /* デフォルトに戻す */
  border-radius: 0; /* デフォルトに戻す */
  box-shadow: none; /* デフォルトに戻す */
}

.password_label { /* <label class="password_label"> のスタイル */
  font-size: 11px;
  color: #333; /* 元の色に戻す */
  display: inline; /* デフォルトのインラインに戻すか、コンテキスト依存 */
  margin-bottom: 0; /* デフォルトに戻す */
}

@media (max-width: 767px) {
  .review-summary-container .starRating span:last-child {
    font-size: 10px !important;
  }
  .password_area {
    position: relative;
    background: #EAE3DC; /* SP用背景 */
    border: 2px double #BCAB9A; /* SP用二重枠線 */
    box-sizing: border-box;
    padding: 12px 8px 10px 8px;
    margin: 0;
    margin-top: 16px;
    height: 80px;
    z-index: 0 !important;
    border-radius: 0; /* SPでは角丸なし */
    outline: none; /* SPではアウトラインなし */
  }
  
  .password_area::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid #BCAB9A; /* SP用内側枠線 */
    background: #EAE3DC;
    pointer-events: none;
    z-index: -1;
    display: block; /* 表示を保証 */
  }
  
  .password_text {
    color: #333;
    font-size: 10px; /* SP用フォントサイズ */
    line-height: 1.7;
    margin: 0;
    text-align: left; /* SP用テキスト左揃え */
    margin-bottom: 0; /* SP用マージンなし */
  }
  
  .password_note {
    color: #7E7E7E;
    font-size: 12px; /* SP用フォントサイズ */
    margin: 4px 0 0 0; /* SP用マージン */
    padding-bottom: 0;
    text-align: left; /* SP用テキスト左揃え */
    display: block; /* SPでは表示 */
  }

  .password_note .pc_none {
    display: block;
  }  
}

/* .password_note .pc_none はSPでは上記で display: block, PCでは下記で display: none */
.password_note .pc_none { 
  display: none;
}

/* パスワードモーダル用スタイル (これは主にSPモーダルウィンドウ自体のスタイルなので影響は少ないはず) */
.password-modal-container {
  background-image: url(https://img07.shop-pro.jp/PA01396/535/etc_base64/svGw97jCxOqloqWkpcal4F9tb2RhbA.png?cmsp_timestamp=20250331013757);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent !important;
  max-width: 600px !important;
  width: 100%;
  padding: 0 !important;
  border-radius: 0;
  overflow: visible !important;
}

.password-modal-content {
  background-color: transparent !important;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.password-modal-inner {
  width: 100%;
  max-width: 400px;
  padding: 40px 20px;
  margin: 0 auto;
  text-align: center;
}

.password-modal-title {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 20px;
  color: #333;
}

.password-modal-form input[type="password"] {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 0;
  box-sizing: border-box;
}

.password-modal-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 320px;
  margin: 0 auto;
}

.password-submit-btn {
  display: block;
  width: 150px;
  height: 32px;
  background-color: #2d5986;
  color: white;
  border: none;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
}

.password-back-btn {
  display: block;
  width: 150px;
  height: 32px;
  background-color: #999999;
  color: white;
  border: none;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
}

.line-bnr-box {
  margin: 8px 0;
  width: 100%;
}

.line-bnr-box a img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* ここまで tkym 追加 */

/****** 画像下カートボックス ******/
/*******************************/

.Flex {
  display: flex;
  flex-wrap: wrap;
}

.pdg_b5 {
  padding-bottom: 5px;
}

.mrn_b20 {
  margin-bottom: 20px;
}

/* font color */
.txt_red {
  color: #d22300;
}

.txt_333 {
  color: #333;
}

.txt12 {
  font-size: 12px;
}

.txt10 {
  font-size: 10px;
  line-height: 1.2em;
  color: #333;
  letter-spacing: 1px;
  display: block;
}

.line_bot {
  border-bottom: 1px solid #ebebeb;
}

.cart_box,
.cart_infomation {
  border-top: 1px solid #ebebeb;
  padding-top: 10px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .line_bot {
    border-bottom: none;
  }
  .cart_box,
  .cart_infomation {
    border-top: none;
  }
}

.cart_box .label {
  font-size: 10px;
  padding: 3px 5px;
  color: #484848;
}

.cart_product_name {
  font-size: 18px;
  line-height: 1.5em;
  color: #333;
  letter-spacing: 1px;
  margin: 0px;
  padding: 10px 0 4px;
}

.cart_price_old,
.cart_price_new {
  display: block;
  font-weight: 500;
  line-height: 1.5em;
  padding: 4px 10px 4px 0;
}

.btn_blue {
  display: block;
  width: 100%;
  height: 40px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  border: 1px solid #00577b;
  background: #00577b;
  margin: 10px auto 10px;
}

.cart_time_ship {
  font-size: 14px;
  text-align: left;
  font-weight: 500;
  line-height: 1.5em;
  color: #d22300;
  letter-spacing: 0px;
  margin: 0px;
  padding-top: 10px;
}

.cart_promotion {
  font-size: 16px;
  width: 100%;
  text-align: center;
  font-weight: 500;
  line-height: 1.5em;
  margin: 10px 0 0;
  color: #d22300;
  letter-spacing: 1px;
  padding: 10px;
  padding-bottom: 10px;
  border: 1px solid #d22300;
}

.cart_infomation_txt1 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1em;
  color: #00577b;
  letter-spacing: 1px;
  padding: 0px 0 10px 5px;
}

.cart_infomation .txt_dou_one {
  flex-basis: 49%;
  padding: 10px;
  border: 1px solid #333;
  font-size: 13px;
  line-height: 1.2em;
}

.cart_infomation .txt_dou_one:not(:nth-child(even)) {
  margin-right: 2%;
}

.cart_payment_img {
  display: flex;
  flex-wrap: wrap;
  padding: 3%;
}

.cart_payment_img img {
  max-height: 40px;
}

@media only screen and (max-width: 767px) {
  .page_item .sec_1 .dv_l .info_detail {
    padding: 0 !important;
  }
}

/* モーダル */
.modal__header button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

@media only screen and (min-width: 40.063em) {
  .pc_none {
    display: none;
  }

  .modal {
    display: block !important;
    overflow: visible !important;
    position: static !important;
    z-index: 0 !important;
  }
}

@media only screen and (max-width: 40em) {
  .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: 0px;
    z-index: 100;
  }

  .modal__container {
    background-color: #fff;
    max-height: 80vh;
    max-width: 500px;
    overflow-y: auto;
    padding: 0px;
    width: 90%;
  }

  .modal__header {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }

  /* 閉じるボタン */
  .modal__close {
    background: transparent;
    border: 0;
  }

  .batsu {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
  }

  .batsu::before,
  .batsu::after {
    /* 共通設定 */
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    /* 棒の幅（太さ） */
    height: 25px;
    /* 棒の高さ */
    background: #333;
  }

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

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

  /* // */
  .modal__content {
    background-color: #fff;
    max-height: 85vh;
    max-width: 500px;
    overflow-y: auto;
    padding: 20px;
    width: 95%;
    margin: 0 auto;
  }

  .modal__open {
    display: block;
    margin: 100px auto;
  }

  /* モーダルアニメーション */
  @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;
  }

  .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;
  }
}

/* スマホ専用のスタイル */
@media only screen and (max-width: 40em) {
  .sp_none {
    display: none;
  }

  .infomation {
    border-bottom: 1px solid transparent !important;
  }

  /* SPモーダルCTAの金額下のレビューを非表示 (より特定的なセレクタに変更) */
  .modal__content .infomation .price + .review-summary-container {
    display: none !important;
  }
}

/* タブレット専用のスタイル */
@media only screen and (min-width: 40.063em) and (max-width: 64em) {
  .container {
    padding: 0 15px !important;
    margin-top: 100px !important;
  }

  .page_item .sec_1 .dv_l {
    max-width: 58%;
    width: 100%;
  }

  .page_item .sec_1 .dv_r {
    max-width: 42%;
    width: 100% !important;
    padding-left: 15px !important;
  }

  .page_item .sec_1 .dv_r .infomation .amount {
    max-width: 320px;
    width: 100% !important;            
  }

  .page_item .sec_1 .dv_r .infomation .promotion {
    max-width: 320px;
    width: 100% !important;
  }

  .page_item .sec_1 .dv_r .infomation2 .txt_dou_one {
    max-width: 320px;
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 10px !important;
  }
}

/* タブレット・スマホ専用のスタイル */
@media only screen and (max-width: 64em) {
  .info_detail iframe {
    max-width: 640px;
    width: 100% !important;
  }
}

/* Medium screens - タブレット スタート */
@media only screen and (min-width: 40.063em) {
  .page_item .sec_1 .dv_l {
    height: auto !important;
    overflow: visible !important;
  }

  .dv_r {
    top: 170px;
  }
}

@media only screen and (min-width: 920px) and (max-width: 1024px) {
  .container {
    padding: 0 15px !important;
    margin-top: 40px !important;
  }
}

@media only screen and (min-width: 64em) {
  .dv_r {
    top: 120px;
  }
}

/* Large screens - デスクトップ スタート */
@media only screen and (min-width: 64.063em) {
  .dv_r {
    top: 90px;
  }

  .page_item .sec_1 .dv_r .infomation2 .txt_dou_one {
    width: calc((100% / 2) - 4px) !important;
  }

  /* 小さい文字がないボタンのパディング調整 (デスクトップ) */
  .page_item .sec_1 .dv_r .infomation2 .txt_dou_one:not(.txt_dou_one--with-sm-text) {
    padding-top: 20px; /* (56px - 15.6px) / 2 ≒ 20px */
    padding-bottom: 20px; /* (56px - 15.6px) / 2 ≒ 20px */
    padding-left: 10px; 
    padding-right: 25px; 
  }

  /* 小さい文字があるボタンのパディングをデスクトップでも中央揃え */
  .page_item .sec_1 .dv_r .infomation2 .txt_dou_one.txt_dou_one--with-sm-text {
    padding-left: 10px;
    padding-right: 25px; 
  }

  .page_item .sec_1 .dv_r .infomation .amount {
    width: 100% !important;
  }

  .page_item .sec_1 .dv_r .infomation .amount .btn {
    width: 100% !important;
  }

  .page_item .sec_1 .dv_r .infomation .promotion {
    width: 100% !important;
  }

  .page_item .sec_1 .dv_r .infomation .amount .btn {
    margin-left: 0 !important;
  }
}

.page_item .sec_1 .dv_l .slider_item_detail .slick-prev {
  width: 40px !important;
  height: 40px !important;
  left: 10px !important;
}

.page_item .sec_1 .dv_l .slider_item_detail .slick-prev:before {
  content: "" !important;
  padding: 0 !important;
  width: 40px !important;
  height: 40px !important;
  display: block;
  background: url(https://file002.shop-pro.jp/PA01396/535/renew/img/icon/arrow_left.svg)center center/cover no-repeat !important;
}

.page_item .sec_1 .dv_l .slider_item_detail .slick-next {
  width: 40px !important;
  height: 40px !important;
  right: 10px !important;
}

.page_item .sec_1 .dv_l .slider_item_detail .slick-next:before {
  content: "" !important;
  padding: 0 !important;
  width: 40px !important;
  height: 40px !important;
  display: block;
  background: url(https://file002.shop-pro.jp/PA01396/535/renew/img/icon/arrow_right.svg) center center / cover no-repeat !important;
}

.amount {
  justify-content: space-between;
}

.page_item .sec_1 .dv_r .infomation .amount {
  margin-top: 8px !important;
}


.header {
  position: fixed;
  background: white;
  border-bottom: 1px solid #ccc;
  left: 0;
  top: 0;
  padding: 0px 15px 0px;
}

.header .hNavi ul li a,
.fix_page .header .hNavi ul li a {
  color: #333;
  display: block;
}

.header .hNavi .txt_top_left,
.fix_page .header .hNavi .txt_top_left {
  color: #00577b;
}

.header #logo img,
.fix_page .header #logo img {
  transform: translateY(-45px);
}

.header .gNavi li a,
.fix_page .header .gNavi li a {
  color: #000 !important;
}

.header .gNavi li .header_search,
.fix_page .header .gNavi li .header_search {
  border-bottom-color: #00577b;
}

.header_icon img,
.fix_page .header_icon img {
  transform: translateY(-16px);
}

.slick-dots li button:before {
  width: 11px;
  height: 11px;
}


#option_tbl {
  border-collapse: collapse;
  margin: 0px 0 15px;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
}

#option_tbl th {
  padding: 7px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  background: #215678;
}

#option_tbl td input {
  float: none;
  margin: 0;
  width: auto;
}

#option_tbl th,
#option_tbl td.none {
  background: #215678;
  color: #fff;
  font-size: 10px;
}


#option_tbl td {
  padding: 7px;
  text-align: center;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

#option_tbl td label {
  display: none !important;
}

.stock_zero {
  color: red;
}

.table_price {
  display: none;
}

.quantity {
  display: inline-block;
  height: 40px;
  padding: 5px 10px;
}

.sec_2 .container {
  display: block !important;
}

.sec_2 {
  background: #fff !important;
}

.page_item .sec_1 .dv_r .infomation2 .txt_dou_one {
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .breadcrumb {
    border-bottom: none !important;
  }

  .page_item .sec_1 .dv_r .infomation .amount .btn {
    -webkit-appearance: none !important;
    -webkit-border-radius: 0px;
    border-radius: 0px;
  }

  .quantity {
    -webkit-border-radius: 0px;
    border-radius: 0px;
  }

  #option_tbl {
    width: 100%;
  }
}

span.money {
  color: #ED3939;
  font-size: 18px;
}


.sec_ranking .list_5 .item img {
  width: 100% !important;
}

.sec_ranking .des_name {
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.5em !important;
  color: #333 !important;
  margin: 0 !important;
  padding: 5px 0 !important;
}

.sec_ranking .des {
  margin-bottom: 20px !important;
}

.des_price_old,
.des_price_new {
  font-family: 'Sawarabi Gothic', sans-serif !important;
}

.des_price_new {
  color: #d22300 !important;
}

.sec_ranking .list_5 .des_price_old,
.list_5 .des_price_new {
  font-size: 12px !important;
  text-align: left !important;
  font-weight: 500 !important;
  line-height: 1.5em !important;
  color: #333;
  margin: 0px !important;
  padding: 0px !important;
  display: block !important;
}

.sec_ranking .list_5 .item span {
  max-width: initial !important;
}

@media only screen and (max-width: 750px) {
  .list_sp_3 .item {
    width: calc(100% / 3 - 5px) !important;
    padding: 1px !important;
  }

  .list_sp_3 .item:nth-of-type(n+4) {
    display: none;
  }

  .sec_ranking .list_5 .des_price_old,
  .list_5 .des_price_new {
    font-size: 10px !important;
  }
}


.td_line {
  color: #333 !important;
  text-decoration: line-through !important;
  width: 60px;
  display: inline-block;
}

.td_line.money {
  width: auto;
}

@media (max-width: 767px) {
  .money_title {
    font-size: 10px;
    width: 64px;
    display: inline-block;
  }

  .money {
    font-size: 18px;
  }

  .review-area {
    display: none !important;
  }
}

.label-group {
  display: none;
}

.label-group[data-group-name="生成り(白)"],
.label-group[data-group-name="柿渋染"],
.label-group[data-group-name="藍染(インド藍)"],
.label-group[data-group-name="藍染（すくも発酵建）"],
.label-group[data-group-name="草木染"],
.label-group[data-group-name="西尾の抹茶染"],
.label-group[data-group-name="ベンガラ染"],
.label-group[data-group-name="プリント"],
.label-group[data-group-name="先染め(化学染料)"],
.label-group[data-group-name="KURO"] {
  display: inline;
}

.searchbox_accordion .list_5 {
  display: none;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .searchbox_accordion .list_5 .item {
    width: calc(100% / 4 - 5px);
  }

  .searchbox_accordion .list_5 .item a {
    display: flex;
    align-items: center;
  }
}

.searchbox_accordion .title-trigger {
  display: block;
  max-width: 800px;
  margin: 0 auto 10px;
  text-align: center;
  background: #f2f2f2;
  padding: 10px;
  cursor: pointer;
  position: relative;
}

.searchbox_accordion .list_5+.title-trigger {
  margin-top: 10px;
}

.searchbox_accordion .title-trigger::after,
.searchbox_accordion .title-trigger::before {
  content: "";
  width: 11px;
  height: 2px;
  background: #333;
  position: absolute;
  top: 50%;
  right: 20px;
  transition: .3s;
  transform: translateY(-50%);
}

.searchbox_accordion .title-trigger::before {
  transform: translateY(-50%) rotate(90deg);
}

.searchbox_accordion .title-trigger.open::before {
  transition: .3s;
  opacity: 0;
  transform: translateY(-50%) rotate(0);
}

@media (max-width: 991px) {
  #searchbox {
    display: none;
  }
}

/*add_topSearch2303*/
.keywordSearch--typeB .ks__searchForm {
  width: 600px;
  max-width: 100%;
  margin: 0 auto 30px;
}

.ks__searchForm {
  padding-right: 7.5px;
  margin-bottom: 15px !important;
}

.searchForm {
  position: relative;
  width: 100%;
}

.searchForm .searchForm__inner {
  position: relative;
  height: 55px;
  background: #EAEAEC;
}

.searchForm .searchForm__inner {
  height: 47px;
}

.searchForm.searchFormB .searchForm__inner {
  border: 1px solid #dfdfdf;
  border-radius: 100px;
}

.searchForm .searchForm__submit {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  line-height: 1;
  padding: 0 6px;
}

.add_topSearch .searchForm .searchForm__submit {
  left: 0;
  right: auto;
}

.searchForm input[type="text"] {
  padding: 18px 45px 18px 14px;
  background: transparent;
  border: none;
  width: 100%;
  display: block;
}

.add_topSearch .searchForm input[type="text"] {
  padding: 14px 14px 14px 35px;
}

.searchForm.searchFormB .searchForm__inner input[type="text"] {
  border-radius: 100px;
  vertical-align: middle;
}

.keywordSearch--typeB .ks__keywords {
  padding-top: 0;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.keywordList {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: flex-start;
}

.keywordList li {
  margin: 0 2.5px 5px;
}

.keywordList li a {
  display: block;
  font-size: 12px;
  line-height: 16px;
  padding: 3px 0.5em;
  text-align: center;
  border-radius: 6px;
  background: #eee;
}

.add_topSearch {
  margin: 15px 0 30px;
}

/*カート追従*/

#fixedCartBtn {
  cursor: pointer;
}

@media (min-width: 768px) {
  #fixedCart {
    display: none !important;
  }
}

@media (max-width: 767px) {

  #fixedCart {
    position: fixed;
    z-index: 999;
    bottom: 0;
    width: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
  }

  .fixedCart_inner {
    display: flex;
    padding: 10px;
    align-items: center;
  }

  .fixedCart_inner>* {
    max-width: 40%;
    flex-basis: 40%;
  }

  .fixedCart_inner .fixedCart_price {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
  }

  .fixedCart_inner .fixedCart_price small {
    font-size: 12px;
    font-weight: normal;
  }

  #fixedCartBtn {
    background: #1792c8;
    color: #fff;
    display: block;
    text-align: center;
    width: 100%;
    padding: 5px;
  }

  #fixedCart .fixedCart_inner .fixedCart_fav {
    max-width: 20%;
    flex: 0 0 20%;
    padding: 0 10px;
  }

  #fixedCart .fixedCart_inner .fixedCart_fav .detail__favBtn i span {
    /* 追従CTA内のfavBtn */
    color: lightgray;
    display: inline-block;
    font-size: 32px;
  }

  #fixedCart .fixedCart_inner .fixedCart_fav .detail__favBtn.is-added i span {
    color: #f0868d;
    font-size: 32px;
  }

  #fixedCart .fixedCart_inner .fixedCart_fav .detail__favBtn {
    width: 100%;
    height: 35px;
    display: block;
    text-align: center;
    border: none;
    padding: 0;
    background: unset;
  }

  #fixedCart .fixedCart_inner .fixedCart_fav .detail__favBtn.is-added {
    background: unset;
  }

}

.modal__header button {
  position: absolute !important;
  right: 20px !important;
}

@media only screen and (max-width: 40em) {
  .modal__header {
    justify-content: inherit !important;
  }
}

.page_item .sec_1 .dv_r .infomation .label {
  margin-right: 5px;
}

/* PC CTAラベルの枠線を削除 */
.modal__header .sp_none .label {
  border: none !important;
}

/* PC CTAラベル内のアイコンに右余白を追加 */
.modal__header .sp_none .label .fas.fa-tag.icon {
  margin-right: 4px;
}

/* PC CTA ポイントとレビューを横並びにする */
.pc_point_review_row {
  display: flex;
  align-items: center;
  margin-bottom: 10px; /* 商品価格との間隔 */
}

.pc_point_review_row .product_point.pc_view_item {
  border: 1px solid #7e7e7e;
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 12px;
  color: #7e7e7e;
  margin-right: 10px; /* レビューとの間隔 */
  /* SP版の.product_pointはposition:absoluteなのでリセット */
  position: static;
}

.pc_point_review_row .review-summary-container.pc_view_item {
  min-width: 100px; /* SP版と同様 */
  height: 24px; /* SP版と同様 */
  display: flex; /* SP版と同様 */
  align-items: center; /* SP版と同様 */
}

/* PC CTA スターレーティングのパディング調整 */
.pc_point_review_row .review-summary-container.pc_view_item .starRating {
  padding: 2px 0;
}

/* お気に入りボタンの基本スタイル */
.favorite_btn {
  text-align: right;
  margin-top: 10px;
}

.favorite_btn button {
  background-color: #fff;
  border: 1px solid #767676;
  color: #333;
  width: 100%;
  box-sizing: border-box;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
}

.favorite_btn button i span {
  color: #f0868d;
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
}

.favorite_btn button.is-added {
  background-color: #f0868d;
  border: 1px solid #f0868d;
  color: #fff;
}

.favorite_btn button.is-added i span {
  color: #fff;
}

/* モバイル対応 (767px以下) */
@media only screen and (max-width: 767px) {
  .favorite_btn {
    margin-top: 5px;
    margin-bottom: 10px;
  }

  .favorite_btn button {
    margin-left: 0;
  }

  .favorite_btn.not-modal button i span {
    color: lightgray;
  }

  .favorite_btn.not-modal button {
    border: white;
    background-color: white;
  }

  .favorite_btn.not-modal button.is-added {
    border: white;
    background-color: white;
  }

  .favorite_btn.not-modal button.is-added i span {
    color: #f0868d;
  }
}

/* タブレット対応 (768px - 1024px) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .favorite_btn {
    text-align: left;
    padding-left: 90px;
  }

  .favorite_btn button {
    width: 225px;
  }

  .quantity {
    max-width: 90px;
    flex-basis: 90px;
  }

  .page_item .sec_1 .dv_r .infomation .amount .btn {
    max-width: calc(100% - 95px);
    flex-basis: calc(100% - 95px);
  }
}
@media only screen and (max-width: 767px) {
  .page_item .sec_1 .dv_r .infomation .amount .btn {
    width: 100% !important;
    margin-left: 0 !important;
  }
}

.button {
  display: block;
  margin: 0 auto;
  width: 270px;
  border: none;
  border-radius: 50px;
  text-align: center;
  background: #ebebeb;
  line-height: 1.5em;
  padding: 5px;
  font-family: Montserrat;
  position: relative;
}

.button:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #444444;
  border-right: 1px solid #444444;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
}

.list_4.ranking {
  counter-reset: item;
}

.list_4.ranking .item {
  position: relative;
}

.list_4.ranking .item:before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: +1;
  top: 1px;
  left: 1px;
  border-top: 20px solid #00577B;
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #00577B;
}

.list_4.ranking .item:after {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  top: 3px;
  left: 6px;
  font-size: 16px;
  color: #fff;
  font-family: "Roboto", sans-selif;
  z-index: +2;
}

.list_4.ranking .item:nth-of-type(1):before {
  border-top: 20px solid #B29E00;
  border-left: 20px solid #B29E00;
}

.list_4.ranking .item:nth-of-type(2):before {
  border-top: 20px solid #A0A0A0;
  border-left: 20px solid #A0A0A0;
}

.list_4.ranking .item:nth-of-type(3):before {
  border-top: 20px solid #936C00;
  border-left: 20px solid #936C00;
}

.list_4.ranking .item a {
  display: block;
}

.list_4.ranking .item a::after {
  /*content: "詳しく見る";*/
  display: block;
  text-align: center;
  background: #f2f2f2;
  padding: 2px;
  font-size: 12px;
}

@media (max-width: 768px) {

  .sec_1{
    top: -15px;
  }

  .page_item .sec_1 .dv_l,
  .page_item .sec_1 {
    border-bottom: none !important;
  }

  .page_item .sec_1 .dv_l{
    overflow: visible !important;
  }

  .page_item .sec_1 {
    padding-top: 0 !important;
  }

  .page_item .sec_1 .dv_r {
    padding: 0 !important;
    z-index: 100;
  }

  .page_item .sec_2 {
    padding: 0 !important;
    border-bottom: none !important;
  }
}

.highlight.add_topSearch {
  padding: 20px 0;
}

.highlight.add_topSearch .keywordList li a,
.highlight.add_topSearch .searchForm.searchFormB .searchForm__inner {
  background: #fff !important;
}

.review-container {
  margin: 0 !important;
  font-family: 'Sawarabi Gothic', sans-serif !important;
}

.reviewWidget_inner {
  padding: 0 !important;
}

.reviewWidget_title {
  padding: 0 !important;
  margin-top: 0 !important;
  border-bottom: 1px solid #ccc !important;
  padding-bottom: 10px !important;
  color: #333 !important;
  margin-bottom: 20px !important;
}

.uKomiTitleSeparator {
  display: none !important;
}

@media(min-width: 768px) {
  .review-container {
    padding: 80px 0 !important;
  }

  .reviewWidget_title {
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 1em !important;
  }
}

@media (max-width: 769px) {
  .sec_ranking {
    margin-bottom: 30px;
  }

  .review-container {
    padding: 40px 0 !important;
  }

  .reviewWidget_title {
    letter-spacing: 0px !important;
    line-height: 1.5em !important;
    font-size: 16px !important;
  }

  .searchbox_accordion .list_5 .item img {
    height: 50px !important;
  }

  .list_5 .des_name {
    text-decoration: underline;
  }
}

.js-includebnr .div_type_5:nth-of-type(n + 3) {
  display: none;
}

.name_product img {
  display: none !important;
}

@media (max-width: 767px) {
  .flipdesk.flipdesk_target_width_mobile.mobile_button_lower_right .flipdesk-trigger {
    bottom: 70px !important;
  }
}

/* 240305 */
.cart_postage_text {
  text-decoration: underline;
  margin-top: 10px;
  font-size: 14px;
}

.cart_postage_text+.time_ship,
.cart_postage_text+.cart_time_ship {
  padding-top: 5px !important;
}

/* 20240403 */
.red {
  color: #ff0000 !important;
}

/* 20240703 */
.regiBnr {
  margin-bottom: 30px;
}

/* 20240805 */
.mt15 {
  margin-top: 15px;
}

#detail__productImage {
  position: relative;
}

@media (max-width: 767px) {
  /* 商品画像部分だけ左右の余白を消して画面いっぱいに */
  #detail__productImage .detailSlider {
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
    background: #fff;
  }

  #detail__productImage .detailSlider img {
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}

#detail__productImage .slick-dots {
  display: none !important;
}

#detail__productImage .slick-prev,
#detail__productImage .slick-next {
  width: 40px !important;
  height: 40px !important;
  transform: translateY(-50%);
  z-index: 9;
}

#detail__productImage .slick-prev {
  left: 10px !important;
}

#detail__productImage .slick-next {
  right: 10px !important;
}

#detail__productImage .slick-prev:before,
#detail__productImage .slick-next:before {
  content: "" !important;
  padding: 0 !important;
  width: 40px !important;
  height: 40px !important;
  display: block;
}

#detail__productImage .slick-prev:before {
  background: url(https://file002.shop-pro.jp/PA01396/535/renew/img/icon/arrow_left.svg)center center/cover no-repeat !important;
}

#detail__productImage .slick-next:before {
  background: url(https://file002.shop-pro.jp/PA01396/535/renew/img/icon/arrow_right.svg) center center / cover no-repeat !important;
}

#detail__productImage .detail_pager {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 155px;
}

.price_new .money,
.product-price .cart_price_new .money {
  font-size: 18px;
}

.price,
.product-price {
  position: relative;
}

.price .product_point,
.product-price .product_point {
  display: none !important;
}

@media(max-width: 768px) {

  .price .product_point,
  .product-price .product_point {
    display: none !important;
  }
}

.h2F {
  padding-bottom: 10px;
  border-bottom: 3px solid #00577B;
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  /* tkym change from 20px */
}

.h2F small {
  font-size: 12px;
  color: #00577B;
}

@media (max-width: 768px) {
  #detail__productImage .detail_pager {
    bottom: 105px;
  }

  #detailTab .tab {
    display: block !important;
  }

  .tabContent {
    display: none;
  }

  .tabContent.active {
    display: block;
  }

  .tabSwitch {
    padding-bottom: 15px;
    margin-bottom: 10px;
  }

  .tabSwitch span {
    display: block;
    text-align: center;
  }

  .tabSwitch li {
    text-align: center;
  }

  .tabSwitch,
  .tabSwitch>li {
    list-style: none;
    transition: 0.15s;
    cursor: pointer;
  }

  .tabSwitch:hover,
  .tabSwitch>li:hover {
    transition: 0.15s;
  }

  .cartBox {
    display: flex;
    align-items: center;
    margin-top: 5px;
    /* tkym change from 15px */
  }

  .cartBox .favorite_btn {
    width: 30px;
    margin: 0 10px 0 0;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .cartBox .favorite_btn button {
    padding: 0;
    width: 48px;
    height: 48px;
  }

  .cartBox .favorite_btn button i span {
    font-size: 32px;
  }
}

#detailTab .tab--typeA .tabSwitch {
  display: flex;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}

#detailTab .tab--typeA .tabSwitch li {
  pointer-events: all;
  justify-content: center;
  background: #f2f2f2;
  font-size: 14px;
  padding: 12px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 0;
  position: relative;
  max-width: 50%;
  flex: 0 0 50%;
  box-sizing: border-box;
  margin: 0;
  border: none;
}

@media (max-width: 767px) {
  #detailTab .tab--typeA .tabSwitch li {
    padding: 8px;
    line-height: 1.5;
  }
}

#detailTab .tab--typeA .tabSwitch li:not(:last-child) {
  border-right: 1px solid #dfdfdf;
}

#detailTab .tab--typeA .tabSwitch li:hover {
  color: #1b1b1b;
}

#detailTab .tab--typeA .tabSwitch li:after {
  transition: 0.15s;
  content: "";
  display: block;
  position: absolute;
  inset: auto 0 -12px 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 15px 0 15px;
  border-color: transparent transparent transparent transparent;
}

#detailTab .tab--typeA .tabSwitch li.active {
  background: #00577B;
  color: #ffffff;
  border-right: 1px solid #00577B;
  transition: 0.15s;
}

#detailTab .tab--typeA .tabSwitch li.active:after {
  transition: 0.15s;
  border-color: #00577B transparent transparent transparent;
}

#detailTab .tab--typeA .tabSwitch.bottom li:after {
  inset: -12px 0 auto 0;
  border-width: 0 15px 12px 15px;
}

#detailTab .tab--typeA .tabSwitch.bottom li.active:after {
  border-color: transparent transparent #00577B transparent;
}

.des .des_name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.7em * 2);
}

.des .des_price br {
  display: none !important;
}

.list_4 .item .des {
  margin-bottom: 15px !important;
}

.specTableWrap {
  overflow: auto;
  margin-bottom: 40px;
}

.specTableWrap table {
  border-collapse: collapse;
  border: 1px solid #dfdfdf;
}

.specTableWrap th {
  background: #f2f2f2;
}

.specTableWrap th,
.specTableWrap td {
  border: 1px solid #dfdfdf;
  font-weight: normal;
  font-size: 13px;
  padding: 10px;
  min-width: 50px;
  text-align: center;
}

/* 20240905 */
#thumList .slick-slide {
  margin-right: 5px !important;
}

/* tkym #4 */
#thumList button.slick-arrow {
  margin-top: 0;
  /* 高さ調節のmagic number */
}

#detail__productImage .detail_pager {
  bottom: 16%;
  /* tkym #4 */
  margin-top: -40px;
  margin-bottom: 22px;
  display: flex;
  justify-content: flex-end;
  /* tkym #4 */
}

/* tkym #4 */
#zoomer {
  margin-bottom: 0;
}

/* tkym #4 */
#thumList {
  margin-bottom: 0;
}

/* tkym #4 */
.detail_pager .pager-area {
  width: fit-content;
  padding: 0 10px;
  background-color: white;
  opacity: 0.5;
  margin-right: 10px;
  color: black;
  border-radius: 30px;
}

@media (max-width: 768px) {
  #detail__productImage .detail_pager {
    bottom: 15.5%;
  }
}

#detail__productImage .detail_pager {
  position: relative;
}

.specTableWrap>br:first-child,
.specTableWrap br+br {
  display: none;
}

.desc>br:first-child,
.desc br+br {
  display: none;
}

/* tkym */
/* enhance 2024/11 #1 */
.price-privilege {
  font-size: 1.2rem;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .price-privilege {
    font-size: 10px;
    color: #7E7E7E;
  }
}

.ship-lead-time {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: right;
}

.review-area {
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  align-items: center;
  margin-top: 5px;
}

.review-area .review-summary-container {
  width: fit-content;
}

.review-area .link-to-review {
  width: fit-content;
  height: fit-content;
}

.review-area .link-to-review a {
  text-decoration: underline;
  font-size: 1.2rem;
}

/*  for color variation */
@media screen and (min-width: 700px) {
  .product-explain .head-color-options {
    display: none;
  }
}

.product-explain #title-color {
  line-height: 1.6rem;
  font-size: 1.6rem;
  margin: 8px 0 15px 0;
}

.product-explain .head-color-options {
  font-size: 1.0rem;
  /* margin: 0 0 -50px 0; */
  margin: 0;
  padding: 2px 0 0 0;
  line-height: 0;
}

.product-explain .head-color-options ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.product-explain .head-color-options ul li {
  list-style: none;
  height: fit-content;
  width: fit-content;
  padding: 0;
  margin: 0;
  line-height: 0;
  /* max-width: 50px; */
  /* max-height: 50px; */
}

.product-explain .head-color-options ul li a {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 65px;
  margin: 0;
  padding: 5px 0 0 0;
  line-height: 0;
}

.product-explain .head-color-options ul li a.selected {
  border: solid 1px gray;
}

.product-explain .head-color-options ul li .icon-area {
  max-width: 30px;
  max-height: 30px;
  line-height: 0;
  display: block;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.product-explain .head-color-options ul li .color-name {
  width: 70px;
  text-align: center;
  padding: 0;
  margin: 3px 0 0 0;
  line-height: 1rem;
}

/* enhance 2024/11 #2 */
.size-link-wrapper1 {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: end;
}

.size-link-wrapper1 .size-link-wrapper2 {
  width: fit-content;
}

.size-link-wrapper1 .size-link-wrapper2 a {
  text-decoration: underline;
}

/* tkym 2025.1 */
.direct-form {
  display: block;
  width: 100%;
}

.direct-form .amount .addCart {
  width: 100%;
  height: 40px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  border: 1px solid #00577b;
  background: #00577b;
  margin: 10px auto 10px;
  border-radius: 0;
}

/* for fixed cart btn*/
#fixedCart .direct-form .directAddCartBtn {
  border: none;
  background: #1792c8;
  color: #fff;
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px;
  line-height: 1.0em;
  border-radius: 0;
}

/* 商品説明タブのスタイル */
.product-detail-tabs {
  margin: 30px 0;
  background: #fff;
}

.product-detail-tabs__nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 72px;
  /* z-index: 1; */
}

.product-detail-tabs__nav li {
  flex: 1;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  background: #f2f2f2;
  color: #333;
}

.product-detail-tabs__nav li:not(:last-child) {
  border-right: 1px solid #dfdfdf;
}

.product-detail-tabs__nav li.is-active {
  background: #00577B;
  color: #fff;
  border: 1px solid #00577B;
  position: relative;
}

.product-detail-tabs__nav li.is-active::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 12px 15px 0 15px;
  border-color: #00577B transparent transparent transparent;
}

.product-detail-tabs__content {
  display: none;
  padding: 20px;
}

.product-detail-tabs__content.is-active {
  display: block;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .product-detail-tabs__nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    top: 70px;
  }

  .product-detail-tabs__nav li {
    flex: 1;
    padding: 8px 4px;
    font-size: 13px;
    border-right: 1px solid #dfdfdf;
  }

  .product-detail-tabs__nav li:last-child {
    border-right: none;
  }

  .product-detail-tabs__nav li.is-active::after {
    display: block;
  }

  .product-detail-tabs__content {
    padding: 15px;
  }
}

/* PC・タブレット表示の最適化 */
@media screen and (min-width: 768px) {
  .product-detail-tabs__contents {
    max-width: 800px;
    margin: 0 auto;
  }
}

.reviewWidget_title {
  display: none;
}

/* ★ポイント・評価横並び用ラッパー */
.point-review-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0 4px 0;
}
.point-review-row .product_point {
  border: 1px solid #7E7E7E;
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 8px;
  color: #7E7E7E;
  font-weight: 500;
}
.point-review-row .review-summary-container {
  min-width: 100px;
  height: 24px;
  display: flex;
  align-items: center;
}

hr {
  display: none;
}
@media (max-width: 767px) {
  .point-review-row {
    gap: 8px;
    margin: 0px 0 2px 0;
  }
  .point-review-row .product_point {
    font-size: 8px;
    padding: 2px 12px;
  }
  .point-review-row .review-summary-container {
    min-width: 80px;
    height: 20px;
  }
  .review-summary-container .starRating {
    padding: 0;
  }
  .review-summary-container .starRating span {
    font-size: 14px !important;
  }
  .cart_box {
    margin-top: 8px;
  }
  hr {
    display: block;
    width: 100vw !important;
    margin: 8px 0;
    padding: 0;
    border: none;
    border-top: 1px solid #ebebeb;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
    background: #fff;
  }
}

/* PC CTA 特典情報の文字色を指定 (非赤色部分) */
.sp_none .price-privilege .free-shipping,
.sp_none .price-privilege .first-purchase {
  color: #7e7e7e;
}

/* PC CTA 特典情報の文字色を指定 (赤色部分) */
.sp_none .price-privilege .free-shipping span,
.sp_none .price-privilege .first-purchase span {
  color: #ED3939;
}

/* PC CTA Dropdown Styles */
.sp_none .pull-down-select-container .option-select-area label {
  color: #7e7e7e; /* Label text color */
  margin-bottom: 4px; /* Space below label */
}

.sp_none .pull-down-select-container .option-select-area select {
  width: 100%; /* Full width */
  color: #7e7e7e; /* Select text color */
  border: 1px solid #7e7e7e; /* Set full border property */
  font-size: 12px; /* Select text font size */
  padding-right: calc(8px + 1em); /* Space for arrow + 8px. Assuming arrow is ~1em */
  /* appearance: none; If a custom arrow was to be added, this would be needed */
}

/* PC CTA下部情報リンク (.infomation2.sp_none) のスタイル調整 */
.infomation2.sp_none > p.txt_dou {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; /* ボタン間の隙間 (水平・垂直) を8pxに変更 */
  margin-bottom: 15px; /* 各txt_douブロック間のマージン */
}

.infomation2.sp_none .txt_dou_one {
  height: 56px; 
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  justify-content: center; 
  text-align: left; 
  box-sizing: border-box;
  font-size: 12px; 
  width: 144px; 
  border: 1px solid #eee; 
  padding-top: 5px; /* 基本の上下パディング (2行ボタンでflexが効くように) */
  padding-bottom: 5px; /* 基本の上下パディング (2行ボタンでflexが効くように) */
  padding-left: 10px; /* 左パディングを10pxに統一 */
  padding-right: 25px; /* 矢印用に右パディングを拡張 */
  line-height: 1.3; 
  margin-right: 0 !important; 
  position: relative; 
}

/* 1行テキストボタンの上下パディング調整 */
.infomation2.sp_none .txt_dou_one:not(.txt_dou_one--with-sm-text):not(.txt_dou_one--br-line) {
  padding-top: 20px; 
  padding-bottom: 20px;
}

/* <br>タグで2行になっているボタンの上下パディング調整 */
.infomation2.sp_none .txt_dou_one--br-line {
  padding-top: 10px !important; /* 微調整 */
  padding-bottom: 11px; /* 微調整 */
}

/* 小さい文字があるボタンのパディング調整 */
.infomation2.sp_none .txt_dou_one--with-sm-text {
  /* 上下パディングは基本の5pxとflexによる中央揃えに任せる */
}

/* 情報リンクボタン右端の矢印 */
.infomation2.sp_none .txt_dou_one::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px; /* ボタン右端からの距離 */
  width: 6px;  /* 矢印の線の太さに関連 */
  height: 6px; /* 矢印の線の太さに関連 */
  border-top: 2px solid #777; /* 矢印の上半分 */
  border-right: 2px solid #777; /* 矢印の右半分 */
  transform: translateY(-50%) rotate(45deg); /* 中央揃えと回転 */
}

/* 新しいルールを追加します */
.pc_promotion_hide_area {
  display: none !important;
}

/* PC CTA固有のスタイル調整 */
.dv_r .modal:not(.is-open) .name_product {
  margin-top: 8px; /* ラベルから商品名までの余白 */
}

.dv_r .modal:not(.is-open) .pc_point_review_row {
  margin-top: 0px; /* 商品名からポイント獲得までの余白 */
  justify-content: space-between; /* ポイント獲得とレビューを両端揃え */
  margin-bottom: 8px; /* ポイント獲得行から金額までの余白 */
}

/* PC CTAのオプション表示エリアの調整 */
.dv_r .modal:not(.is-open) .infomation .sp_none .pull-down-select-container {
  margin-top: 8px; /* オプションのタイトル上の余白 */
}

/* .page_item .sec_1 .dv_r の padding-top を 0px にする */
.page_item .sec_1 .dv_r {
  padding-top: 0px !important; 
  position: sticky;
}

/* PC CTA 商品名のpadding調整 */
.page_item .sec_1 .dv_r .infomation .name_product {
  padding: 8px 0 !important;
}

.sp_none .password_area {
  background-color: #EAE3DC !important;
  border: 2px double #BCAB9A !important;
  background-image: none !important;
  background: #EAE3DC;
  display: block;
  height: 157px;
  margin-bottom: 16px;
}

.sp_none .password_area::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid #BCAB9A;
  background: #EAE3DC;
  pointer-events: none;
  z-index: -1;
  display: block;
}

.sp_none .password_area .password_text {
  text-align: left;
  margin: 14px auto 8px auto;
  display: table;
}

.sp_none .password_area label.password_label {
  display: table;
  margin: 0 auto 4px auto;
  text-align: left;
  width: 280px;
}

.sp_none .password_area .password_note {
  padding-bottom: 0;
  text-align: left;
  display: table;
  margin: 0 auto 14px auto;
  width: 278px;
}

.sp_none .password_area .password_field {
  display: block;
  width: 100%;
  max-width: 278px;
  margin-bottom: 4px;
  box-sizing: border-box;
}

.modal__header .pc_none .label {
    border: none !important;
}
.modal__header .pc_none .label .icon {
    margin-right: 5px;
}

.modal#modal-1 .modal__container {
    position: relative;
    overflow: visible !important;
}

.modal#modal-1 .batsu--sp-modal-top-right {
    position: absolute;
    top: -48px;
    right: 0px;
    width: 48px;
    height: 48px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 1050;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PCではバツボタンを非表示にする */
@media (min-width: 768px) {
    .modal#modal-1 .batsu--sp-modal-top-right.pc_none {
        display: none !important;
    }
}

.modal#modal-1 .batsu--sp-modal-top-right::before,
.modal#modal-1 .batsu--sp-modal-top-right::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 2px;
    background-color: black;
    transform-origin: center;
}

.modal#modal-1 .batsu--sp-modal-top-right::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal#modal-1 .batsu--sp-modal-top-right::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.modal#modal-1 .modal__header {
    position: relative;
}

@media (max-width: 767px) {
  .pc_point_review_row {
    display: none !important;
  }
  .modal#modal-1 .modal__content .infomation .price {
    display: none !important;
  }
  .modal#modal-1 .modal__content .infomation .cart_postage_text {
    display: none !important;
  }
  .modal#modal-1 .modal__content .infomation .time_ship {
    display: none !important;
  }
  .modal#modal-1 .modal__header {
    display: none !important;
  }
  .modal#modal-1 .password_area {
    display: block !important;
  }

  .modal#modal-1 .password_label {
    font-size: 10px !important;
    margin-top: 12px !important;
    display: block !important;
  }

  .modal#modal-1 .password_area {
    padding: 24px 16px 24px 16px;
    height: 160px;
  }

  .modal#modal-1 .password_field {
    width: 100% !important;
  }

  .modal#modal-1 .infomation {
    padding-bottom: 0px !important;
  }
}