/**
 * Main CSS Stylesheet
 *
 * @copyright Copyright 2003-2024 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: Jeff Rutt 2024 Sep 11 Modified in v2.1.0 $
 */
/*bof basic elements*/
#maintenanceDefaultMainContent {
	line-height: 1.5em;
}

@media screen and (max-width: 768px) {
  #navColumnOneWrapper,
  #navColumnTwoWrapper {
    display: none;
  }
  #centerColumn {
    width: 100% !important;
    margin: 0 auto !important;
  }
}

/* --- 縦バナー共通 --- */
#tabbanner_herb,
#tabbanner,
#tabbanner2,
#tabbanner_otsumami,
#tabbanner_lunchbox,
#tabbanner_totoset {
  width: 130px;
  height: 200px;
  position: fixed;
  top: 25px; /* 個別に調整 */
  z-index: 999;
  background-repeat: no-repeat;
}
#tabbanner_herb { left: 0; background-image: url(/images/tate_banner/tate_harb.jpg); }
#tabbanner       { left: 0; top: 235px; background-image: url(/images/tate_banner/tate_osusowake.jpg); }
#tabbanner2      { left: 0; top: 445px; background-image: url(/images/tate_banner/tate_45g.jpg); }
#tabbanner_otsumami{ right: 0; top: 25px; background-image: url(/images/tate_banner/tate_otsumami.jpg); }
#tabbanner_lunchbox  { right: 0; top: 235px; background-image: url(/images/tate_banner/tate_lunchbox.jpg); }
#tabbanner_totoset  { right: 0; top: 445px; background-image: url(/images/tate_banner/tate_totoset.jpg); }

/* リンクをバナー全体に広げる */
#tabbanner_herb a,
#tabbanner a,
#tabbanner2 a,
#tabbanner_otsumami a,
#tabbanner_lunchbox a,
#tabbanner_totoset a {
  display: block;
  width: 100%;
  height: 100%;
}

/* PCではホバーで伸縮 */
#tabbanner_herb:hover,
#tabbanner:hover,
#tabbanner2:hover {
  width: 130px;
  transition: width ease-in-out 0.5s;
}

/* --- スマホでは完全非表示 --- */
@media screen and (max-width: 767px) {
  #tabbanner_herb,
  #tabbanner,
  #tabbanner2,
  #tabbanner_otsumami,
  #tabbanner_lunchbox,
  #tabbanner_totoset {
    display: none !important;
  }
}


body {
  margin: 0;
  font-family: verdana, arial, helvetica, sans-serif;
  font-size: 72.5%;
  line-height: 140%;
}
/*general link styles*/
a img {
  border: none;
}
a:link {
  text-decoration: underline;
}
a:visited {
  text-decoration: underline;
}
.sideBoxContent a:visited {}
a:hover, #navEZPagesTOC ul li a:hover, #navSupp ul li a:hover {}

#navMain ul li a:hover {
	color:  #ff0000 !important;
}

a:active {}
/*heading styles*/
h1 {
  font-size: 1.8em;
  line-height: 25px;
}
h2 {
  font-size: 1.5em;
}
h3 {
  font-size: 1.4em;
	padding: 5px;
}

#checkoutShipto h3 {
	background: #ffcc00;
}

#checkoutBillto h3 {
	background: #ffcc00;
}

#productAttributes h3 {
	background: #ffd38d;
}

.attribsSelect {
	font-size: 1.2em;
}

h4, h5, h6, LEGEND, .larger {
  font-size: 1.3em;
}
h1, h2, h3, h4, h5, h6 {
  margin: 20px 0;
}
.biggerText {
  font-size: 1.2em;
  line-height: 160%;
}
P, ADDRESS {
  padding: 0.5em;
}
ADDRESS {
  font-style: normal;
    line-height: 1.4em;
    font-size: 1.2em;
}
HR {
  height: 1px;
  margin-top: 0.5em;
}
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
  float: left;
}
.centeredContent, TH, #cartEmptyText, #cartBoxGVButton, #cartBoxEmpty, #cartBoxVoucherBalance, #navCatTabsWrapper, #navEZPageNextPrev, #bannerOne, #bannerTwo, #bannerThree, #bannerFour, #bannerFive, #bannerSix, #siteinfoLegal, #siteinfoCredits, #siteinfoStatus, #siteinfoIP, .center, .cartRemoveItemDisplay, .cartQuantityUpdate, .cartQuantity, .cartTotalsDisplay, #cartBoxGVBalance, .leftBoxHeading, .centerBoxHeading, .rightBoxHeading, .productListing-data, .ratingRow, LABEL#textAreaReviews, #productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsFeaturedCategories, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew, .gvBal, .attribImg {
  text-align: center;
}
#navCategoryIcon, .buttonRow {
  margin: 0.5em;
}
/*floats and clears*/
.back {
  float: left;
}
.forward, #shoppingCartDefault #PPECbutton {
  float: right;
}

@media screen and (max-width: 767px) {
  /* fieldset内を横並びに */
  #checkoutShipping fieldset {
    display: flex;
    justify-content: space-between; /* 左右に分ける */
    align-items: center;            /* 縦中央揃え */
    flex-wrap: nowrap;              /* 改行させない */
  }

  /* ラジオボタン＋ラベル */
  #checkoutShipping label.checkboxLabel {
    font-size: 1.4em;   /* 金額と同じ大きさに */
    font-weight: bold;
    margin: 0;
    white-space: nowrap; /* 宅配小荷物を折り返さない */
  }

  /* 金額部分 */
  #checkoutShipping .important.forward {
    float: none !important; /* float解除 */

    margin: 0;

  }
}

@media screen and (max-width: 767px) {
  /* 各行をflexで左右に分ける */
  #orderTotals > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
  }

  /* タイトルを左側に固定 */
  #orderTotals .lineTitle {
    order: 1;              /* 並び順を先頭に */
    margin: 0;
    text-align: left;
    flex: 1;
    white-space: nowrap;   /* 改行防止 */
  }

  /* 金額を右側に固定 */
  #orderTotals .totalBox {
    order: 2;              /* 並び順を後ろに */
    margin: 0;
    text-align: right;     /* 円を右端に寄せる */
    min-width: 5em;        /* 桁ズレ防止 */
  }

  /* clearBoth 無効化 */
  #orderTotals br.clearBoth {
    display: none;
  }
}



.clearBoth {
  clear: both;
}
.bold {
  font-weight: bold;
}
.hiddenField {
  display: none;
}
.visibleField {
  display: inline;
}
#contentColumnMain, #navColumnOne, #navColumnTwo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsFeaturedCategories, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew, .alert {
  vertical-align: top;
}
.alert {
  margin-left: 0.5em;
}
.important {
  font-weight: bold;

}
.important2 {/**/
  font-weight: bold;
    font-size: 1.2em;
    color: #cc0033;
}
.gvBal {
  float: right;
}
.centerColumn, #bannerOne, #bannerTwo, #bannerThree, #bannerFour, #bannerFive {
  padding: 0.8em;
}
.smallText, #siteinfoLegal, #siteinfoCredits, #siteinfoStatus, #siteinfoIP {
  font-size: 0.9em;
    padding: 20px;
}
.information {
  padding: 10px 3px;
  line-height: 150%;
    font-size: 1.2em;
}
.group:after {
  content: "";
  display: table;
  clear: both;
}
.no-fouc {
  display: none;
}
.italic {
  font-style: italic;
}
.back-margin {
  margin-top: 30px;
}
.onerow-fluid {
  width: 75% !important;
  margin: auto;
}
/*bof form elements*/
CODE {
  font-family: arial, verdana, helvetica, sans-serif;
  font-size: 1em;
}
FORM, SELECT, INPUT {
  display: inline;
  font-size: 1em;
  margin: 0 0.1em 0 0;
}
input {
  height: 35px;
  padding-left: 5px;
  margin-bottom: 10px;
}
select {
  padding-left: 5px;
  width: 51%;
}
TEXTAREA {
  margin: auto;
  display: block;
  width: 66%;
}
input:focus, select:focus, textarea:focus {}
legend {
  background-color: #ffa43b;
    color: #ffffff;
  display: table;
    font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 10px 0;
  font-size: 1.6em;
}
fieldset {
  padding: 20px 0;
  margin: 0 0 20px 0;
  min-width: 0;
}
body:not(:-moz-handler-blocked) fieldset {
  display: table-cell;
}
fieldset > fieldset {
               background-color: #fffef4;
}
fieldset fieldset legend {
  text-align: left;
  padding: 0;
  margin: 0;
  position: relative; /*left:20px;*/ 
    font-size: 140%;
    font-weight: bold;
  display: table;
    background-color: #fffef4;
    margin-left: 20px;
}
fieldset p {
  margin-left: 20px;
}

fieldset clearBoth {
  background-color: #fffef4;
}

fieldset label, fieldset .inputLabel, fieldset h3, fieldset address, #advSearchDefault input, fieldset .buttonRow.back, fieldset select, fieldset input[type=radio], fieldset input[type=checkbox], fieldset div {
  margin-left: 20px;
    line-height: 1.4em;

}
fieldset div, fieldset .buttonRow.forward {
  margin-right: 20px;
}
option {
  font-size: 110%;
}
LABEL {
  line-height: 1.5em;
  padding: 0.2em;
}
LABEL.checkboxLabel, LABEL.radioButtonLabel {
  margin: 0.5em 0.3em;
    font-size: 1.4em;
    font-weight: bold;
}
LABEL.inputLabel {
  width: 11em;
  float: left;
}
LABEL.inputLabelPayment {
  width: 15em;
  float: left;
}

/* 代金引換払いの説明文だけ広げる */
#checkoutPayment label.cod-table-description {
  width: 560px !important;
  max-width: 560px !important;
  float: none !important;
  display: block !important;
  margin-left: 20px !important;
  line-height: 1.7 !important;
  white-space: normal !important;
}


LABEL.selectLabel, LABEL.switchedLabel, LABEL.uploadsLabel {
  width: 12em;
  float: left;
}
LABEL#textAreaReviews {
  font-weight: normal;
  margin: 1em 0;
}
input[type=text] {
  width: 50%;
}
#password-current, #login-password, #password-new, #password-confirm {
  width: 50%;
}
input[type=radio], input[type=checkbox] {
  margin-top: 8px;
  vertical-align: middle;
  height: auto;
}
input[type=file], input[type=image] {
  width: auto;
  height: auto;
}
input[type=tel], input[type=email], input[type=password] {
  width: 50%;
}
select#country, .wrapperAttribsOptions select, #advSearchDefault select, select#stateZone {
  height: 40px;
}
select#send-to {
  font-size: 1.1em;
  margin-bottom: 10px;
  margin-left: 0;
}
select#country, select#stateZone, #state {
  margin-left: 0;
}
.ccinfo select {
  width: auto;
  height: 25px;
  margin-bottom: 10px;
}
.sideBoxContent select {
  width: 90%;
  margin: auto;
  margin-bottom: 5px;
}
#currenciesContent select {
  height: 35px;
}
/*bof warnings, errors, messages*/
.messageStackWarning, .messageStackError, .messageStackSuccess, .messageStackCaution {
  line-height: 1.8em;
  padding: 20px;
}
/*bof wrappers - page or section containers*/
html, body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 横スクロール禁止 */
}

#mainWrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto; /* センター寄せ */
  padding: 0;
  box-sizing: border-box;
}

#logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #popupAdditionalImage, #popupImage {
  margin: 0;
  padding: 0;
}
#contentMainWrapper {
  margin: 0;
  padding: 0 0 30px 0;
}
#navColumnOneWrapper, #navColumnTwoWrapper {
  margin: auto;
}
#sendSpendWrapper {
  padding: 20px 0;
  width: 100%;
}
#sendSpendWrapper .buttonRow {
  margin-right: 20px;
}
#checkoutShipto, #checkoutBillto {
  margin: 0;
  width: 47%;
}
.floatingBox {
  margin: 0;
  width: 49%;
    background-color: #fffef4;/**/
}

.floatingBox2 {/**/
  margin: 0;
  width: 49%;
}
#loginDefault .floatingBox {
  min-height: 240px;
}
.shippingEstimatorWrapper {
  padding: 0.5em;
}
/*bof header*/
#headerWrapper {
  margin: 5px;/**/
  padding: 0;
}
/*top left navigation*/
#navMainWrapper {
  margin: 0;
  padding: 5px 0 0 0;
  font-size: 120%;
  height: 1%;
  width: 100% !important;
}

/* PC のとき */
@media screen and (min-width: 768px) {
  #navMain {
    width: 100% !important;   /* 横幅いっぱいに広げる */
    margin: 0 !important;     /* 左右の自動マージンを解除 */
    text-align: left;         /* 左寄せ */
  }
}

/* スマホ用アイコン調整 */
@media screen and (max-width: 767px) {
  #navMain ul li a i {
    position: relative;
    top: -10px;        /* 10px 上に移動 */
    color: #fff !important; /* 白に固定 */
    /*font-size: 1.4em;   必要ならサイズ調整 */
  }

}


#navMain {
  width: 75%;
  margin: 0 auto;
}
#navMain ul {
  margin: 0;
  padding: 1em;
  width: 100%;
  list-style-type: none;
  text-align: left;
  line-height: 1.5em;
}
#navMain ul li {
  display: inline;
	/*color: #fff;*/
	font-weight: bold;
}
#navMain ul li a {
  text-decoration: underline;
  padding: 0 0.8em;
  margin: 0;
  white-space: nowrap;
}
#navMain ul li a.navCartContentsIndicator {
  padding: 10px 15px 10px 15px;
  border-radius: 20px;
	font-size: 1.1em;
}


/*top right search*/
#navMainSearch {
  width: 0%;
  text-align: right;
}
#navMainSearch input[type=text] {
  vertical-align: top;
  display: inline-block;
  width: 65% !important;
  height: 32px;
  margin: 0;
  font-size: 0.9em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#navMainSearch input[type=submit] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  height: 32px;
}
.cart-add input[type=text] {
  vertical-align: top;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 42px;
}
.cart-add input[type=submit], #navMainSearch input[type=submit] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  height: 32px;
}
/*top middle*/
#logo {
  margin: 10px 0;
}
#tagline {
  font-size: 1.8em;
  text-align: center;
  margin-top: 10px;
}
/*top categories tabs navigation*/
#navCatTabsWrapper {
  margin: 0;
  width: 100%;
}
#navCatTabs ul {
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
#navCatTabs li {
  font-size: 0.75rem;
  display: inline-block;
  margin-top: 0;
}
#navCatTabs ul li:last-child {}
#navCatTabs li a {
  text-decoration: none;
  padding: 1.2em 1.0em;
  display: block;

}

.last a {
	font-size: 1.4em;
	font-weight: bold;
}

#navCatTabs li a:hover {}
#navCatTabs li:hover {}
span.category-subs-selected {
  font-weight: bold;
}
/*top ezpages links*/
#navEZPagesTop {
  margin: 0;
  width: 100%;
}
#navEZPagesTop ul {
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
#navEZPagesTop li {
  font-size: 0.75rem;
  display: inline-block;
  margin-top: 0;
}
#navEZPagesTop ul li:last-child {}
#navEZPagesTop li a {
  text-decoration: underline;
  padding: 1.2em 1.0em;
  display: block;
}
#navEZPagesTop li a:hover {}
.pagination {
  margin-top: -10px;
}
.pagination ul {
  font-size: 0;
  text-align: center;
  overflow: hidden;
  padding: 0;
}
.pagination li {
  font-size: 0.7rem;
  display: inline-block;
  margin-top: 0;
}
.pagination li:first-child {
  border-left: 0;
}
.pagination li a {
  text-decoration: none;
  padding: 1.2em 1.0em;
  display: block;
}
.pagination li a:hover {}
.pagination .current {
  padding: 1.2em 1.0em;
}
/*breadcrumbs*/
#navBreadCrumb {
  margin: 0;
  padding: 0.5em;
}
#navBreadCrumb a {
  text-decoration: underline;
}
#navBreadCrumb a:visited {}
/*view cart icon for phones*/
#navMain i.fa.fa-share {
  position: relative;
  top: -10px;
  left: -10px;
}
/*bof footer*/
/*bottom ezpages links*/
#navSuppWrapper {
  margin: 0;
  width: 100%;
}
#navSupp ul {
  font-size: 0;
  text-align: center;
}
#navSupp li {
  font-size: 0.75rem;
  display: inline-block;
  margin-top: 0;
}
#navSupp ul li:last-child {}
#navSupp li a {
  text-decoration: underline;
  padding: 1.2em 1.0em;
  display: block;
}
#navSupp li a:hover {}
/*footer copyright*/

@media screen and (min-width: 768px) {/*pcの時*/
#siteinfoIP, #siteinfoLegal, #bannerSix {
  font-weight: normal;
  padding: 1.0em 0;
  margin: 0 auto; /* 左右のマージンを自動に */
  width: 900px; 
}
}



#siteinfoLegal a {}
#siteinfoLegal a:hover {}
/*bof ezpages*/
#navEZPagesTOCWrapper {
  float: right;
  padding: 0 20px 20px 20px;
  margin: 0 0 20px 20px;
  width: 47%;
}
#navEZPagesTOC ul {
  margin: 0;
  padding: 0.5em 0;
  list-style-type: none;
  line-height: 1.5em;
}
#navEZPagesTOC ul li {
  white-space: nowrap;
  font-size: 130%;
  line-height: 150%;
}
#navEZPagesTOC ul li a {
  padding: 0 0.5em;
  margin: 0;
  text-decoration: underline;
}
#navEZPageNextPrev {
  margin-bottom: 30px;
}
/*bof left and right hand columns*/
/*styles for centerbox, left and right hand headings*/
h2.centerBoxHeading, h3.rightBoxHeading, h3.leftBoxHeading {
  font-size: 1.4em;
  font-weight: normal;
}
h3.rightBoxHeading a, h3.leftBoxHeading a {
  /*font-weight: normal;
  text-decoration: underline;*//**/
}
h3.rightBoxHeading a:hover, h3.leftBoxHeading a:hover {
  /*text-decoration: underline;*//**/
}
.rightBoxHeading, .leftBoxHeading, .centerBoxHeading {
  margin: 0;
  padding: 10px;/**/
}
.rightBoxContainer{
    margin-top: 20px;
    border: 1px solid #ff7288;/**/
}
.leftBoxContainer{
   /* border: 1px solid #ff7288;/**/
}

/*sidebox content styles*/
.sideBoxContent {
  /*padding: 1.0em;*//**/
  margin-bottom: 10px;
}
.sideBoxContent a {
  padding: 0.3em 0;
  display: inline-block;
  font-size: 1.1em;
  text-decoration: underline;
}
.sideBoxContent a:hover {}
.sideBoxContentItem {
  padding: 1.0em 0;
  display: block;
  cursor: pointer;
}
.sideBoxContentItem:hover {}
.sideBoxContentItem img, .reviewsContent img {
  margin-bottom: 20px;
}
.rightBoxContent {
  margin-bottom: 1em;
}
#ezpagesContent, #informationContent, #moreinformationContent, #bestsellersContent, #documentcategoriesContent, #categoriesContent {
  padding: 0;
}
ul.list-links, ol.list-links {
  padding: 0;
  margin-top: 0;
}
ul.list-links li {
  list-style-type: none;
}
ol.list-links li {}
ul.list-links li a, ol.list-links li a {
  padding: 3px;/**/
  display: block;
 text-decoration: none;
}
ul.list-links li:hover, ol.list-links li:hover {}
.cat-count {}
#cartBoxListWrapper li, .orderHistList li {
  list-style-type: none;
  padding: 8px 0;
}
#cartBoxListWrapper li a, .orderHistList li a {
  display: inline !important;
}
.orderHistList i {
  margin-left: 10px;
  display: inline;
}
.orderHistList {
  margin: 0;
  padding: 0;
}
#shoppingcartContent hr {
  display: none;
}
.sideBoxContent .productPriceDiscount {
  font-size: 130%;
  margin-top: 3px;
}
.sideBoxContent .productSpecialPrice {
  font-size: 120%;
}
/*bof shopping cart*/
.tableHeading TH {
  padding: 10px 0;
}
.tableHeading {}
#cartSubTotal {
  text-align: right;
  line-height: 2.2em;
  padding: 10px 0 20px 0;
  font-size: 130%;
}
.tableRow, .tableHeading, #cartSubTotal {
  height: 2.2em;
}
.cartProductDisplay, .cartQuantityUpdate, .cartQuantity, #cartInstructionsDisplay, .cartTotalsDisplay {
  padding: 0.5em 0;
  /*font-size: 1.2em;*/
 font-weight: normal;
}
.cartRemoveItemDisplay {
    margin: 0 0 0 0;
}
.cartUnitDisplay {
  text-align: right;
  padding: 0.5em 0.2em 0.5em 0;
}
.cartTotalDisplay {
  text-align: right;
  /*font-size: 1.15em;*/
  padding: 0.5em 0.2em 0.5em 0;
    font-weight: normal;
}
#scUpdateQuantity {
  width: 2em;
}
.cartQuantity {
  width: 4.7em;
}
.cartNewItem {
  position: relative;
}
.cartOldItem {
  position: relative;
}
.cartBoxTotal {
  margin: 0;
  padding: 10px;
  text-align: right;
  font-weight: bold;
}
.cartRemoveItemDisplay {
  width: 3.5em;
}
.cartAttribsList {
  margin-left: 1em;
}
.normalprice, .productSpecialPriceSale {
  text-decoration: line-through;
}
.productSalePrice {}
#ezPageBoxList ul {
  list-style-type: none;
}
#ezPageBoxList li {
  margin: 0;
  padding: 0.2em 0;
}
#cartBoxEmpty, #cartBoxVoucherBalance {
  font-weight: bold;
}
.totalBox {
  width: 5.5em;
  text-align: right;
  padding: 0.2em;
}
.lineTitle, .amount {
  text-align: right;
  padding: 0.2em;
}
.amount {
  width: 5.5em;
}
#shoppingcartBody #shippingEstimatorContent {
  clear: both;
}
.seDisplayedAddressLabel {
  text-align: center;
  padding: 10px 0;
}
.seDisplayedAddressInfo {
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}
#seShipTo {
  padding: 0.2em;
}
TR.tableHeading {}
.rowOdd {
  height: 1.5em;
  vertical-align: top;
}
.rowEven {
  height: 1.5em;
  vertical-align: top;
    /*font-size: 1.2em;
    font-weight: bold;*/
}
.cartProdTitle {
  font-size: 0.8em;
    line-height: 1.4em;
}
.cartProductDisplay a {
  text-decoration: underline;
}
/*shipping estimator styles*/
#shippingEstimatorContent h2 {
  padding: 20px 0;
  font-weight: normal;
  text-align: center;
}
#shippingEstimatorContent table {
  margin-top: 30px;
}
#shippingEstimatorContent th {
  padding: 10px 0;
}
#shippingEstimatorContent tr:nth-child(odd) {}
#shippingEstimatorContent td {
  padding: 10px;
}
/*bof checkout*/
#order-comments {
  padding: 5px 20px 20px 20px;
  margin: 20px 0;
}
#checkoutConfirmDefault .cartTableHeading {
  height: 40px;
}
#checkoutShipping .important {
  margin-right: 20px;
}
#checkoutShipping input[type=radio] {
  margin-left: 20px;
}
#checkoutOrderTotals div, #csNotifications .buttonRow {
  margin-right: 20px;
}
#checkoutPayment label, #csNotifications input {
  margin-left: 20px;
}
div#checkoutShippingContentChoose {
  margin-bottom: 20px;
}
#sendSpendWrapper h2 {
  padding: 10px;
  font-weight: normal;
  margin-top: -20px;
  margin-bottom: 0;
  text-align: center;
}
/*bof images*/
#reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage {
  margin: 0 1em 1em 0;
}
.cartImage {
  margin: 0.5em 1em;
}
/*bof center boxes*/
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsSpecials, .centerBoxContentsFeaturedCategories, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {
 /* margin: 1em 0;*/
}
.specialsListBoxContents a, .centerBoxContentsAlsoPurch a, .centerBoxContentsFeatured a, .centerBoxContentsSpecials a, .centerBoxContentsFeaturedCategories a, .centerBoxContentsNew a {
  margin: 10px auto;
  font-size: 0.8em;
  display: block;
  width: 90%;
  text-decoration: underline;
}
.specialsListBoxContents, .centerBoxContentsSpecials, .centerBoxContentsFeaturedCategories, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {
  font-size: 1.6em;
  cursor: pointer;
  padding: 20px 0;
}
.specialsListBoxContents:hover, .centerBoxContentsSpecials:hover, .centerBoxContentsFeaturedCategories:hover, .centerBoxContentsAlsoPurch:hover, .centerBoxContentsFeatured:hover, .centerBoxContentsNew:hover {}
.centerBoxWrapper {
  overflow: hidden;
  margin-bottom: 30px;
  clear: both;
}
.productPriceDiscount {
  margin: 10px 0 5px 0;
  display: block;
  font-size: 90%;
}
.productPriceDiscount br {
  display: none;
}
.normalprice {
  font-size: 0.9em;
}
/*bof categories and product listing*/
#productListHeading, #indexCategoriesHeading {
  font-weight: normal;
  margin-bottom: 20px;
}
.categoryListBoxContents img {
  margin-bottom: 10px;
}
.categoryListBoxContents a {
  font-size: 1.2em;
  text-decoration: underline;
}
.categoryListBoxContents a:hover {}
.categoryListBoxContents {
  display: block;
  cursor: pointer;
}
.categoryListBoxContents:hover {}
.categoryListBoxContents:hover a {}
#categoryDescription {
  margin-left: 5%;
  float: left;
}
#indexProductListCatDescription {
  margin: 0.5em 0.5em 0.5em 5%;
  float: left;
}
#cat-top {
  margin-bottom: 20px;
}
#cat-left {
  text-align: center;
}
#filter-wrapper {
  padding: 10px;
	display: none;
}
#filter-wrapper .inputLabel {
  float: none;
}
#filter-wrapper select {
  width: 25%;
  height: 35px;
}
.navSplitPagesLinks {
  display: inline-block;
}
.navSplitPagesLinks a {
  padding: 10px;
  font-weight: bold;
  text-decoration: underline;
}
.navSplitPagesLinks a:hover {}
.navSplitEmpty3rdColumn {
  margin-left: 0 !important;
}
.current {
  padding: 10px;
}
.productListing-rowheading {
  padding: 10px 10px;
  text-align: center;
}
.productListing-rowheading a {
  display: inline-block;
  padding: 10px 30px;
  text-decoration: underline;
}
.productListing-rowheading a:hover {}
.productListing-odd {
  padding: 20px;
  overflow: hidden;
}
.productListing-even {
  padding: 20px;
  overflow: hidden;
}
.productListing-even, .productListing-odd {
  clear: both;
}
.productListing-even:hover, .productListing-odd:hover {}
.productListing-even form, .productListing-odd form {
  float: right;
}
.cart-add input[type=text] {
  width: auto !important;
}
.list-image {
  min-height: 200px;
  min-width: 20%;
  float: left;
  margin-right: 5%;
}
.list-price {
  font-size: 140%;
  margin: 5px 0;
}
.list-more {
  display: block;
  padding: 8px 20px;
  float: right;
  text-align: center;
  text-decoration: underline !important;
  width: auto;
}
.list-more:hover {}
#indexProductList .list-more {
  width: auto;
  margin-top: -50px;
}
#searchresultBody .list-more {
  width: auto;
}
.itemTitle {
  font-weight: normal;
  font-size: 150%;
  margin: 5px 0;
  width: 80%;
}
.itemTitle a {
  text-decoration: underline;
}
.itemTitle a:hover {}
.listingDescription {
  width: 75%;
  margin: 10px 0;
}
.cart-add {
  float: right;
}
.list-input {
  float: right;
  width: 10%;
}
span.list-addtext {
  display: block;
  text-align: center;
}
.list-input input[type=text] {
  width: 100%;
}
.prod-list-wrap {
  text-align: center;
  padding: 20px 10px 10px 20px;
  clear: both;
  height: 40px;
}
#productsListingListingBottomLinks, #allProductsListingTopLinks, #allProductsListingBottomLinks, #featuredProductsListingTopLinks, #featuredProductsListingBottomLinks, #newProductsDefaultListingTopLinks, #newProductsDefaultListingBottomLinks, #productsListingListingTopLinks {
  width: 47%;
  margin-left: 25%;
  text-align: center;
}
#productsListingBottomNumber, #allProductsListingBottomNumber, #allProductsListingTopNumber, #productsListingTopNumber {
  width: 25%;
  margin-left: -74%;
  margin-top: 0;
}
#newProductsDefaultListingTopNumber, #newProductsDefaultListingBottomNumber {
  width: 25%;
  margin-left: -72.5%;
  margin-top: 0;
}
#featuredProductsListingBottomNumber, #featuredProductsListingTopNumber {
  width: 25%;
  margin-left: -71%;
  margin-top: 0;
}
.button-top {
  width: 25%;
  text-align: right;
  margin: -10px 0 0 0;
}
.button-bottom {
  height: auto;
  padding: 9px 0 5px 0;
}
#specialsListing .prod-list-wrap {
  padding: 20px 20px 0 20px;
}
#productListing {
  margin-bottom: 20px;
	/*display: none;*/
}
#no-products {
  padding: 20px;
  margin: 20px 0;
}
/*product listing column-layout overrides*/
.gridlayout.centerBoxContentsProducts {
  padding: 2em 0;
}
.gridlayout.categoryListBoxContents {
  padding: 2em 0;
}
.gridlayout .list-image {
  float: none
}
.gridlayout .list-image {
  min-height: revert;
  min-width: revert
}
.gridlayout .list-image {
  margin-right: inherit;
}
.gridlayout .list-more {
  float: none;
}
#productListing .gridlayout .list-more {
  margin: auto;
  width: 30%
}
#indexCategories .gridlayout .list-more {
  margin: auto;
  width: 30%
}
.gridlayout .itemTitle {
  width: 90%;
  margin: 5px auto
}
.gridlayout .listingDescription {
  width: 90%;
  margin: 10px auto
}
.gridlayout .cart-add {
  float: none;
}
.gridlayout .list-input {
  float: none;
  width: 30%;
  margin: auto
}
/*bof new, featured, all listing (old style when each had their own listing page, not using main .productListing */
.listing-wrapper:nth-child(odd) {}
.listing-wrapper {
  padding: 20px;
}
.listing-left {
  width: 25%;
  margin-right: 2%;
}
.listings-description {
  padding-top: 20px;
}
.listing-wrapper .list-more {
  float: none;
}
.listings-description a {
  margin-left: 10px;
}
/*bof product info page*/
#prod-info-top {
  width: 100%;
  clear: both;
}
.categoryIcon {
  float: left;
  width: 35%;
}
.categoryIcon a {
  text-decoration: none;
}
.categoryIcon img {
  margin-bottom: 5px;
}
.navNextPrevWrapper {
  padding-bottom: 5px;
  float: right;
  margin-bottom: 30px;
}
.navNextPrevCounter {
  margin: 0;
  font-size: 0.9em;
}
.navNextPrevList {
  display: inline;
  white-space: nowrap;
  padding: 0.5em 0;
  list-style-type: none;
}
#pinfo-left {
  float: left;
  width: 43%;
}
#productMainImage {
  float: none;
  margin: 0;
}
#productMainImage a {
  text-decoration: none;
}
#productAdditionalImages {
  clear: both;
}
.additionalImages {
  width: 90%;
  margin: 10px auto;
}
#productName {
  font-weight: bold;
  margin-left: 30px;
  line-height: 1.4em;
  text-align: center;
    font-size: 2.5em;/**/
}
#pinfo-right {
  float: right;
  width: 55%;
  padding: 20px 0 0 0;
}
#productDetailsList li {
  list-style-type: none;
}
#productDetailsList {
    display: none;
  /*padding: 0;
  margin-left: 30px;*/
}
#productPrices {
  font-size: 1.8em;
  text-align: center;
  margin: 10px 0 10px 0;
  font-weight: bold;
    color: #cc0033 !important;
}
.productSpecialPrice {
  font-size: 120%;
}
#mediaManagerHeading {
  font-weight: normal;
}
#freeShippingIcon {
  margin: 10px 0 10px 30px;
}
#productQuantityDiscounts table {
  margin: 0 auto 20px auto;
}
#productQuantityDiscounts td {
  padding: 10px;
}
#productQuantityDiscounts tr:nth-child(even) {}
#productQuantityDiscounts table tr:first-child td {
  padding: 5px 10px;
}
#mediaManager {
  width: 50%;
  margin: 0.2em 0 0.2em 30px;
  padding: 0.5em 0;
}
.mediaTitle {
  float: left;
}
.mediaTypeLink {
  float: right;
}
#attribsOptionsText {
  font-weight: normal;
  margin-bottom: 10px;
}
#cartAdd {
  text-align: center;
}
#cartAdd input[type=text] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: top;
  display: inline-block !important;
  width: 11%;
  height: 40px;
  margin: 0;
  padding: 7px !important;
}
#cartAdd input[type=submit] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block !important;
  margin: 0;
  padding: 7px 20px !important;
  height: 40px !important;
}
#cart-box {
  padding: 1em;
  float: right;
  width: 52.5%;
}


    

h4.optionName {
  font-size: 1.1em;
  line-height: 1.5em;
  margin: 1% 30px 0 10px;
  padding: 0;
}
.attribImg {
  width: 31%;
  margin: 0.3em 4px;
}
.attributesComments {
  font-weight: normal;
}
.wrapperAttribsOptions select {
  width: 100%;
}
.wrapperAttribsOptions {
  margin: 10px 0;
}
#productDescription {
  padding: 0.5em;
  clear: both;
  /*margin: 20px 0;*//**/
  line-height: 150%;
}
.max-qty {
  margin-bottom: 10px;
}
.qty-text {
  display: none;
}
.quantity-container {
    display: flex;
    align-items: center; /* 縦方向中央揃え */
    justify-content: center; /* 横方向中央揃え */
}

.cart_qty {
    margin-right: 10px; /* inputとの間隔 */
}

.additionalImages a {
  text-decoration: none;
}
/*bof reviews*/
.reviews-wrapper {
  overflow: hidden;
  padding: 20px;
  margin: 20px 0;
}
.reviews-wrapper h2 {
  margin: 7px 0;
}
.reviews-right {
  width: 50%;
}
.reviews-wrapper .smallProductImage {
  width: 18%;
}
.reviews-middle {
  width: 40%;
  margin-right: 2%;
}
.reviews-wrapper .forward {
  width: 25%;
}
#reviewsInfoDefault .reviews-wrapper {
  padding-top: 0;
  margin-top: 50px;
}
#reviews-right {
  width: 50%;
  float: left;
}
#review-text {
  width: 100%;
  margin: 20px 0;
}
#reviewWriteMainImage {
  float: none;
  margin: 0;
}
#reviewsWritePrice {
  text-align: center;
}
#pinfo-left .buttonRow {
  width: 75%;
  margin: 10px auto;
}
#pinfo-left span.cssButton.normal_button, #pinfo-left span.normal_button:hover {
  display: block;
  text-align: center;
  padding: 12px 0;
}
#reviewsWriteReviewer {
  text-align: center;
  margin-bottom: 0;
  font-weight: normal;
}
.ratingRow {
  width: 70%;
  margin: 10px auto;
}
#reviewsWriteHeading {
  text-align: center;
  font-weight: normal;
  padding: 10px 0;
  margin-bottom: 0;
}
#reviews-write-wrapper {
  padding: 20px;
  overflow: hidden;
}
#reviewsDefault #reviews-middle {
  width: 40%;
}
#productReviewsDefaultHeading {
  margin-top: 0;
}
#reviews-top {
  margin-top: 30px;
}
.read-reviews-button {
  width: 25%;
}
#reviewsDefault .reviews-right {
  width: 70%;
}
#productReviewsDefaultNoReviews {
  clear: both;
}
#reviewsDefault .prod-list-wrap {
  padding: 20px;
}
#reviewsInfoDefault .rating {
  margin: 10px 0;
}
/*bof my account*/
#myAccountGen li, #myAccountNotify li {
  margin: 0;
  list-style-type: none;
}
#myAccountGen li a, #myAccountNotify li a {
  text-decoration: none;
}
.accountTotalDisplay, .accountTaxDisplay {
  width: 20%;
  text-align: right;
}
.accountQuantityDisplay {
  width: 10%;
  vertical-align: top;
  text-align: center;
}
#gvFaqDefaultContent, #checkoutPayAddressDefault .instructions, #checkoutShipAddressDefault .instructions, #myAccountNotify, #myAccountGen {
  padding: 20px 20px 20px 30px;
  margin-top: 0;
}
#gvFaqDefaultSubHeading, #checkoutPayAddressDefaultAddress, #checkoutShipAddressDefaultAddress, #accountLinksWrapper h2, h2#addressBookDefaultPrimary {
  padding: 10px;
  font-weight: normal;
  margin-bottom: 0;
  text-align: center;
}
#gvFaqDefaultSubHeading {
  clear: both;
}
#accountDefault #sendSpendWrapper h2 {
  padding: 10px;
  font-weight: normal;
  margin-top: -20px;
  margin-bottom: 0;
  text-align: center;
  clear: both;
}
#accountDefault #sendSpendWrapper {
  margin-top: 30px;
  width: 100%;
  border: none;
}
#accountDefault #sendSpendWrapper .buttonRow.forward {
  margin: 0 20px 20px 0;
}
#addressBookDefault .instructions {
  padding: 20px 20px 40px 30px;
  margin-top: 0;
}
#checkoutPayAddressDefault address, #checkoutShipAddressDefault address, #addressBookDefault address {
  padding: 20px 10% 20px 30px;
}
#accountLinksWrapper {
  margin: 0;
  width: 100%;
}
#prevOrders td {
  padding: 10px;
}
#accountHistoryDefault .content.back {
  margin-right: 5%;
}
#accountHistInfo table td {
  padding: 20px 10px;
    font-size: 1.2em;
}
#accountHistInfo hr {
  display: none;
}
#orderTotals {
  padding: 10px;
}
#myAccountPaymentInfo, #myAccountShipInfo {
  margin-top: 30px;
}
#myAccountPaymentInfo h3, #myAccountShipInfo h3 {
  margin-top: 0;
  padding: 10px;
  font-weight: normal;
  text-align: center;
}
#myAccountPaymentInfo h4, #myAccountShipInfo h4 {
  margin-top: 0;
  padding: 10px;
  font-weight: normal;
  text-align: center;
}
#myAccountPaymentInfo address, #myAccountShipInfo address, #myAccountPaymentInfo div, #myAccountShipInfo div {
  padding: 0 0 20px 30px;
    font-size: 1.2em;
}
#accountHistoryDefault .buttonRow {
  margin-top: 20px;
  clear: both;
}
#accountHistoryDefault .content {
  margin-left: 20px;
}
#accountHistoryDefault .content.forward {
  margin-right: 20px;
}
#accountHistoryDefault .notice {
  margin-right: 20px;
}
#createAcctSuccess div {
  margin-bottom: 30px;
}
/*bof home page*/
#indexDefaultHeading {
  font-weight: normal;
}
h2.greeting {
  margin-bottom: 20px;
}
h2.greeting a {}
h2.greeting a:hover {}
.home-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
#indexHomeBody #navBreadCrumb {
  display: none;
}
#icon {
  padding: 40px;
  margin: 100px;
  font-size: 1500%;
}
/*bof misc*/
#upProductsHeading {
  text-align: left;
}
#upDateHeading {
  text-align: right;
}
#siteMapList {
  width: 90%;
  float: right;
}
#gvFaqDefaultContent {
  line-height: 20px;
  font-size: 110%;
}
#advSearchDefault .floatingBox {
  min-height: 115px;
  margin-bottom: 30px;
}
/*bof login*/
#loginDefault {
  margin-bottom: 30px;
}
#loginDefault .inputLabel {
  margin-left: 20px;
}
#loginDefault .alert {
  margin-right: 20px;
}
.paypal-button-hidden {
  visibility: hidden;
}
/* markup for tables used to present tabular data */
.alignLeft {
  text-align: left
}
.alignCenter {
  text-align: center
}
.alignRight {
  text-align: right
}
table, .tabTable {
  width: 100%;
  padding: 0;
  margin: 0;
}
#cartContentsDisplay {
  width: 100%;
}
#myAccountOrdersStatus, #orderHistoryHeading, #prevOrders {
  width: 100%;
}
.accountOrderId {
  width: 30px;
}
.accountOrderDate, .accountOrderStatus, .accountOrderTotal {
  width: 70px;
}
#seQuoteResults {
  width: 100%;
}
#seQuoteResults td {}
.listBoxContentTable {
  width: 100%;
}
.listBoxContentTable td {}
#upcomingProductsTable {
  width: 100%;
}
.products-listing .productsAllListing, .productsNewListing, .productsFeaturedListing {
  width: 100%;
}
.tableBorder1 td {}
/* Ask a Question */
#productQuestions {
    display: none;
  /*margin-left: 20px;
  margin-bottom: 5px;*/
}
/** Brands page */
.brandCell {
  height: 126px !important;
}
.brandImage {
  margin-top: 20px;
}
.brandCell a {
  text-decoration: none;
}

@media screen and (min-width: 768px) {/*PCの時*/
.annai_title2 {
  width: 888px;
  margin: 10px 0 5px 0;
  padding: 6px;
  color: #fff;
  font-size: 1.4em;
  font-weight: bold;
  background-color: #ff8d09;
}

}
@media screen and (max-width: 767px) {/*スマホの時*/
 .annai_title2 {
  width: 89%;
  margin: 0 auto;
  padding: 6px;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  background-color: #ff8d09;
}  
}

@media (min-width: 768px) {
    /* PCのときのみ適用されるスタイル */
    .pc-only {
        display: block; /* または他の適切なスタイル */
    }

}

@media (max-width: 767px) {
    /* スマートフォンやタブレットのときは非表示 */
    .pc-only {
        display: none;
    }
}
@media (max-width: 767px) {
    /* スマホのときのみ適用されるスタイル */
    .mobile-only {
        display: block; /* または他の適切なスタイル */
    }
}

@media (min-width: 768px) {
    /* PCのときは非表示 */
    .mobile-only {
        display: none;
    }
}

.address_verification {
    font-size: 1.3em;
    line-height: 1.4em;
}
#checkoutSuccessOrderNumber {
    font-size: 1.6em;
}
#checkoutSuccessMainContent, checkoutSuccessLogoff {
    font-size: 1.2em;
    line-height: 1.4em;
}

/*商品ページの説明*/
    .highlight {
      color: red;
      font-weight: bold;
    }
    .brown {
      color: #993300;
    }
    .table-wrapper {
      width: 100%;
      margin-bottom: 30px;
    }
    
    th {
      background-color: #ffcc00;
      color: #704a00;
      white-space: nowrap; /* 折り返し禁止 */
    }
    /*td {
      background-color: #fff;
    }*/
    .details-table {
      margin-bottom: 20px;
    }
    .details-table td {
      background-color: #fff;
      color: #993300;
    }

/* ---- product-table 用テーブルスタイル ---- */
.product-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5em auto;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #6b4c3b; /* 茶色 */
  border: 1px solid #eaded2;
  border-radius: 10px;
overflow: hidden;
  table-layout: auto;   /* 自動レイアウトで文字幅調整 */
  word-wrap: break-word;
}

/* th */
.product-table th {
  background: #fff4d8;  /* 薄いオレンジ */
  font-weight: bold;
  padding: 0 10px 0 10px;
  border-bottom: 1px solid #eaded2;
  border-right: 1px solid #eaded2;
  text-align: left;
	  white-space: nowrap;  /* 改行させず最小幅 */
  width: 1%;            /* tdに幅を譲る */
}

/* td */
.product-table td {
  background: #ffffff;
  padding: 0 10px 0 10px;
  border-bottom: 1px solid #eaded2;
  border-right: 1px solid #eaded2;
  text-align: left;
}

/* 最終行・列の罫線消し */
.product-table tr > *:last-child {
  border-right: none;
}
.product-table tr:last-child > * {
  border-bottom: none;
}

/* 見出し行（colspanあり） */
.product-table thead th[colspan] {
  text-align: left;
  padding: 0 10px 0 10px;
}

/* --- スマホ調整 (600px以下) --- */
@media (max-width: 600px) {
  .product-table {
    width: 100%;
    font-size: 0.9rem;
  }
  .product-table th,
  .product-table td {
    padding: 0.45em 0.5em; /* 通常の半分 */
    word-break: break-word;
  }
}






    .social-icons img {
      width: 44px;
      height: 44px;
      margin-right: 10px;
      vertical-align: middle;
    }
    .cooking-banner img {
        margin-top: 20px;
      width: 162px;
      height: 59px;
    }

.delivery-date-description {
  margin: 5px 0 10px;
  font-size: 0.9em;
  color: #555;
}


.mobile-footer{
	margin: auto;
}
.mobile-footer table{
	display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    unicode-bidi: isolate;
    border-spacing: 2px;
    border-color: gray;
}
#navSuppWrapper table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    unicode-bidi: isolate;
    border-spacing: 2px;
    border-color: gray;
}

/*ベストセラー右メニュー*/
#bestsellers .bestseller-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

#bestsellers .bestseller-thumb img {
  max-width: 150px;
  height: auto;
  margin-right: 6px;
  border: 1px solid #ddd;
  background: #fff;
}

#bestsellers .bestseller-name {
  font-size: 12px;
  line-height: 1.4em;
	margin: 0 5px 0 5px;
}
ul.list-bestsellers {
  margin: 0;
  padding: 0;   /* ← 左の余白を消す */
  list-style: none; /* ← ドットを消す */
}

ul.list-bestsellers li {
  margin: 0;
  padding: 5px;
}

.related-products {
  margin: 15px 0;
  padding: 10px;
  background: #f8f8f8;
  border: 1px solid #ddd;
}
.related-products h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}
.related-products .related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.related-products .related-list li {
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.payment-add-image {
  margin: 8px 0 18px 42px;
}

.payment-add-image img {
  display: block;
  max-width: 560px;
  width: auto;
  height: auto;
}

/* =========================================================
   お支払い方法：カード風レイアウト
========================================================= */

#checkoutPayment fieldset.payment {
  background: transparent;
  padding-top: 10px;
}

/* 支払い方法カード */
#checkoutPayment .payment-card {
  background: #fffdf4;
  border: 1px solid #eadfbe;
  border-radius: 16px;
  padding: 18px 20px 16px;
  margin: 0 20px 24px;
  box-shadow: 0 3px 8px rgba(120, 80, 20, 0.08);
}

/* ラジオボタン */
#checkoutPayment .payment-card input[type="radio"] {
  margin-left: 0;
}

/* 支払い方法名 */
#checkoutPayment .payment-card .radioButtonLabel {
  font-size: 1.7em;
  font-weight: bold;
  color: #5a360d;
}

/* 選択中の支払い方法名 */
#checkoutPayment .payment-card input[type="radio"]:checked + .radioButtonLabel {
  color: #e27600;
}

/* 支払い画像 */
#checkoutPayment .payment-card .payment-add-image {
  margin: 12px 0 12px 32px;
}

#checkoutPayment .payment-card .payment-add-image img {
  display: block;
  max-width: 520px;
  width: auto;
  height: auto;
}

/* ひとこと説明 */
#checkoutPayment .payment-card .payment-lead {
  margin: 8px 0 12px 32px;
  padding: 8px 12px;
  background: #fff7df;
  border-left: 5px solid #ffa43b;
  border-radius: 8px;
  color: #5c4a32;
  font-size: 1.25em;
  line-height: 1.7;
}

/* 代金引換 */
#checkoutPayment .payment-card-cod_table {
  background: #fffef8;
}

/* NP後払い */
#checkoutPayment .payment-card-np_atobarai {
  background: #fffef8;
}

/* クレジットカード */
#checkoutPayment .payment-card-paygent_cc,
#checkoutPayment .payment-card-paydent_cc,
#checkoutPayment .payment-card-cc {
  background: #fffef8;
}

/* クレジットカード入力欄は元の形を維持 */
#checkoutPayment .ccinfo label.inputLabelPayment {
  width: 15em;
  float: left;
}

/* スマホ調整 */
@media screen and (max-width: 767px) {
  #checkoutPayment .payment-card {
    margin: 0 8px 18px;
    padding: 14px;
  }

  #checkoutPayment .payment-card .payment-add-image,
  #checkoutPayment .payment-card .payment-lead {
    margin-left: 18px;
  }

  #checkoutPayment .payment-card .payment-add-image img {
    max-width: 100%;
  }
}
/* 入力枠線を細くする */
#checkoutPayment input[type="text"],
#checkoutPayment textarea,
#checkoutPayment select {
  border: 1px solid #cfcfcf !important;
}

/* 使用ポイントの入力枠だけ狭くする */
#checkoutPayment input[name="use_point"] {
  width: 120px !important;
  max-width: 120px;
}
/* checkout_confirmation お支払い方法画像 */
#checkoutConfirmDefault .confirm-payment-image {
  margin: 10px 0 14px 0;
}

#checkoutConfirmDefault .confirm-payment-image img {
  display: block;
  max-width: 405px;
  width: auto;
  height: auto;
}
/* =========================================================
   checkout_confirmation 個別カード化
========================================================= */

#checkoutConfirmDefault {
  padding: 10px 20px 30px;
  box-sizing: border-box;
}

/* 既存の左右カラムは維持 */
#checkoutConfirmDefault #checkoutBillto,
#checkoutConfirmDefault #checkoutShipto {
  box-sizing: border-box;
}

/* 各カード */
#checkoutConfirmDefault .confirm-card {
  position: relative;
  background: #fffdf4;
  border: 1px solid #eadfbe;
  border-radius: 16px;
  padding: 18px 20px 16px;
  margin: 0 0 20px;
  box-shadow: 0 3px 8px rgba(120, 80, 20, 0.08);
  box-sizing: border-box;
}

/* 見出し */
#checkoutConfirmDefault .confirm-card h2,
#checkoutConfirmDefault .confirm-card h3 {
  background: #fff7df;
  border-left: 5px solid #ffa43b;
  border-radius: 8px;
  padding: 8px 14px;
  margin: 0 0 14px;
  color: #5a360d;
  font-weight: bold;
}

/* 内容タイトル */
#checkoutConfirmDefault .confirm-card h4 {
  margin: 0 0 12px;
  color: #2b1a05;
  font-weight: bold;
  line-height: 1.6;
}

/* 住所 */
#checkoutConfirmDefault .confirm-card address {
  padding: 0;
  margin: 0;
  line-height: 1.8;
  font-size: 1.2em;
}

/* 編集ボタン */
#checkoutConfirmDefault .confirm-card .buttonRow.forward {
  position: absolute;
  top: 18px;
  right: 20px;
  float: none;
  margin: 0;
}

/* 支払い方法画像 */
#checkoutConfirmDefault .confirm-payment-image {
  margin: 10px 0 14px;
}

#checkoutConfirmDefault .confirm-payment-image img {
  display: block;
  max-width: 405px;
  width: auto;
  height: auto;
}

/* 支払い詳細 */
#checkoutConfirmDefault .confirm-card-payment .important {
  margin: 8px 0 0;
  line-height: 1.7;
}

#checkoutConfirmDefault .confirm-card-payment .important .back {
  float: none;
  display: block;
  margin: 0 0 4px;
}

/* スマホ */
@media screen and (max-width: 767px) {
  #checkoutConfirmDefault {
    padding: 10px 8px 24px;
  }

  #checkoutConfirmDefault #checkoutBillto,
  #checkoutConfirmDefault #checkoutShipto {
    float: none !important;
    width: auto !important;
  }

  #checkoutConfirmDefault .confirm-card {
    padding: 16px;
    margin-bottom: 18px;
  }

  #checkoutConfirmDefault .confirm-card .buttonRow.forward {
    position: static;
    text-align: right;
    margin-bottom: 10px;
  }

  #checkoutConfirmDefault .confirm-payment-image img {
    max-width: 100%;
  }
}
/* =========================================================
   確認画面：お支払い方法画像をカード内に収める
========================================================= */

#checkoutConfirmDefault .confirm-card-payment {
  overflow: hidden;
}

#checkoutConfirmDefault .confirm-payment-image {
  width: 100%;
  max-width: 100%;
  margin: 10px 0 14px;
  overflow: hidden;
  box-sizing: border-box;
}

#checkoutConfirmDefault .confirm-payment-image img {
  display: block;
  width: auto !important;
max-width: 100% !important;
  height: auto !important;
}

/* =========================================================
   checkout_shipping：checkout_confirmation と同じカードルール
========================================================= */

/* 全体幅 */
#checkoutShipping {
  padding: 10px 20px 30px;
  box-sizing: border-box;
}

/* 見出し */
#checkoutShippingHeading {
  color: #cc0033;
  margin: 20px 0 22px;
}

/* セクション見出しはカード内に入れるので非表示 */
#checkoutShippingHeadingAddress,
#checkoutShippingHeadingMethod {
  display: none;
}

/* 左右カラムの元レイアウトを調整 */
#checkoutShipping #checkoutShipto,
#checkoutShipping .floatingBox.important.forward {
  width: calc(50% - 25px) !important;
  min-height: 180px;
  box-sizing: border-box;
}

/* お届け先住所カード */
#checkoutShipping #checkoutShipto {
  float: left !important;
  background: #fffdf4;
  border: 1px solid #eadfbe;
  border-radius: 16px;
  padding: 22px 24px;
  margin: 0 0 26px !important;
  box-shadow: 0 3px 8px rgba(120, 80, 20, 0.08);
}

/* お届け先住所カードに見出しを疑似表示 */
#checkoutShipping #checkoutShipto::before {
  content: "お届け先住所";
  display: block;
  background: #fff7df;
  border-left: 5px solid #ffa43b;
  border-radius: 8px;
  padding: 8px 14px;
  margin: 0 0 14px;
  color: #2b1a05;
  font-weight: bold;
  font-size: 1.5em;
}

/* お届け先住所の説明カード */
#checkoutShipping .floatingBox.important.forward {
  float: right !important;
  background: #fffdf4;
  border: 1px solid #eadfbe;
  border-radius: 16px;
  padding: 22px 24px;
  margin: 0 0 26px !important;
  box-shadow: 0 3px 8px rgba(120, 80, 20, 0.08);
  color: #5c4a32;
  line-height: 1.8;
}

/* 右側説明カードに見出しを疑似表示 */
#checkoutShipping .floatingBox.important.forward::before {
  content: "お届けについて";
  display: block;
  background: #fff7df;
  border-left: 5px solid #ffa43b;
  border-radius: 8px;
  padding: 8px 14px;
  margin: 0 0 14px;
  color: #2b1a05;
  font-weight: bold;
  font-size: 1.5em;
}

/* 住所 */
#checkoutShipping #checkoutShipto address {
  padding: 0;
  margin: 0;
  line-height: 1.8;
  font-size: 1.2em;
}

/* 住所変更ボタン */
#checkoutShipping #checkoutShipto .buttonRow.forward {
  float: right;
  margin: 0;
}

/* 配送方法カード */
#checkoutShipping fieldset {
  clear: both;
  background: #fffdf4;
  border: 1px solid #eadfbe;
  border-radius: 16px;
  padding: 22px 24px;
  margin: 0 0 26px;
  box-shadow: 0 3px 8px rgba(120, 80, 20, 0.08);
  box-sizing: border-box;
}

/* fieldset の見出し */
#checkoutShipping fieldset legend {
  display: block;
  width: auto;
  background: #fff7df;
  border-left: 5px solid #ffa43b;
  border-radius: 8px;
  padding: 8px 14px;
  margin: 0 0 16px;
  color: #2b1a05;
  font-weight: bold;
  text-align: left;
  font-size: 1.5em;
}

/* 配送方法の説明文 */
#checkoutShippingContentChoose {
  background: #fff8e8;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 0 0 16px !important;
  color: #8a3a00;
  line-height: 1.7;
}

/* 配送方法の選択行 */
#checkoutShipping fieldset .checkboxLabel {
  font-size: 1.4em;
  font-weight: bold;
  color: #2b1a05;
}

/* 送料 */
#checkoutShipping fieldset .important.forward {
  color: #cc0033;
  font-size: 1.4em;
  font-weight: bold;
}

/* 希望配達日 */
#checkoutShipping #order_delivery_date {
  clear: both;
}

/* 希望配達日の説明 */
#checkoutShipping .delivery-date-description {
  background: #fff8e8;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 0 0 14px;
  color: #8a3a00;
  line-height: 1.7;
}

/* 希望配達日の入力欄 */
#checkoutShipping #order_delivery_date input[type="text"] {
  width: 160px !important;
  max-width: 160px;
  border: 1px solid #cfcfcf !important;
  height: 34px;
}

/* 連絡事項 */
#checkoutShipping #comments textarea {
  width: 90%;
  max-width: 640px;
  border: 1px solid #cfcfcf !important;
}

/* ボタン行 */
#checkoutShipping > .buttonRow.forward {
  margin-right: 0;
}

/* スマホ */
@media screen and (max-width: 767px) {
  #checkoutShipping {
    padding: 10px 8px 24px;
  }

  #checkoutShipping #checkoutShipto,
  #checkoutShipping .floatingBox.important.forward,
  #checkoutShipping fieldset {
    float: none !important;
    width: auto !important;
    min-height: 0;
    margin: 0 0 18px !important;
    padding: 16px;
  }

  #checkoutShipping #comments textarea {
    width: 100%;
  }
}

/* =========================================================
   checkout_payment：ご請求先住所・ご請求についてのみカード化
========================================================= */

/* 「ご請求先住所」の大見出しはカード内見出しに置き換えるため非表示 */
#checkoutPaymentHeadingAddress {
  display: none;
}

/* ご請求先住所カード */
#checkoutPayment #checkoutBillto {
  float: left !important;
  width: calc(50% - 25px) !important;
  min-height: 180px;
  background: #fffdf4;
  border: 1px solid #eadfbe;
  border-radius: 16px;
  padding: 22px 24px;
  margin: 0 0 26px !important;
  box-shadow: 0 3px 8px rgba(120, 80, 20, 0.08);
  box-sizing: border-box;
}

/* ご請求先住所 見出し */
#checkoutPayment #checkoutBillto::before {
  content: "ご請求先住所";
  display: block;
  background: #fff7df;
  border-left: 5px solid #ffa43b;
  border-radius: 8px;
  padding: 8px 14px;
  margin: 0 0 14px;
  color: #2b1a05;
  font-weight: bold;
  font-size: 1.5em;
}

/* ご請求についてカード */
#checkoutPayment .floatingBox.important.forward {
  float: right !important;
  width: calc(50% - 25px) !important;
  min-height: 180px;
  background: #fffdf4;
  border: 1px solid #eadfbe;
  border-radius: 16px;
  padding: 22px 24px;
  margin: 0 0 26px !important;
  box-shadow: 0 3px 8px rgba(120, 80, 20, 0.08);
  box-sizing: border-box;
  color: #5c4a32;
  line-height: 1.8;
}

/* ご請求について 見出し */
#checkoutPayment .floatingBox.important.forward::before {
  content: "ご請求について";
  display: block;
  background: #fff7df;
  border-left: 5px solid #ffa43b;
  border-radius: 8px;
  padding: 8px 14px;
  margin: 0 0 14px;
  color: #2b1a05;
  font-weight: bold;
  font-size: 1.5em;
}

/* 住所文字 */
#checkoutPayment #checkoutBillto address {
  padding: 0;
  margin: 0;
  line-height: 1.8;
  font-size: 1.2em;
}

/* 住所変更ボタン */
#checkoutPayment #checkoutBillto .buttonRow.forward {
  float: right;
  margin: 0;
}

/* 次の要素が下に回るようにする */
#checkoutPayment #checkoutOrderTotals {
  clear: both;
}

/* スマホ */
@media screen and (max-width: 767px) {
  #checkoutPayment #checkoutBillto,
  #checkoutPayment .floatingBox.important.forward {
    float: none !important;
    width: auto !important;
    min-height: 0;
    margin: 0 0 18px !important;
    padding: 16px;
  }
}

/* =========================================================
   checkout_payment 支払い方法名を薄い帯にしてクリックしやすくする
========================================================= */

#checkoutPayment .payment-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  box-sizing: border-box;
  background: #fff7df;
  /*border-left: 5px solid #ffa43b;*/
  border-radius: 10px;
  padding: 12px 16px;
  margin: 0 0 16px;
  cursor: pointer;
}

#checkoutPayment .payment-card-head:hover {
  background: #fff2d8;
}

#checkoutPayment .payment-card-head input[type="radio"] {
  margin: 0;
  flex: 0 0 auto;
}

#checkoutPayment .payment-card-head-text {
  display: block;
  font-size: 1.7em;
  font-weight: bold;
  color: #2b1a05;
  line-height: 1.4;
}

/* 選択中の色 */
#checkoutPayment .payment-card-head input[type="radio"]:checked + .payment-card-head-text {
  color: #d96b00;
}

/* ラジオがない場合 */
#checkoutPayment .payment-card-head-static {
  cursor: default;
}

/* =========================================================
   checkout_payment：支払い方法のラジオボタンを大きく
========================================================= */

#checkoutPayment .payment-card-head input[type="radio"],
#checkoutPayment .payment-card input[type="radio"] {
  transform: scale(1.45);
  transform-origin: center;
  margin-right: 10px !important;
  cursor: pointer;
}

/* =========================================================
   商品ページ：買い物かごエリアを見やすくカード化
========================================================= */

#cartAdd {
  width: 100%;
  max-width: 520px;
  margin: 28px auto 0;
  padding: 22px 24px 26px;
  background: #fff7d6;
  border: 2px solid #ffd6a0;
  border-radius: 18px;
  box-shadow: 0 6px 0 #f0b36a, 0 10px 20px rgba(120, 70, 20, 0.12);
  text-align: center;
  box-sizing: border-box;
}

/* 「カートに追加：」の文字は少し自然な表現に */
#cartAdd .qty-text {
  display: block;
  margin-bottom: 10px;
  color: #7a4a00;
  font-size: 16px;
  font-weight: bold;
}

/* 数量入力まわり */
#cartAdd .quantity-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

/* 数量入力欄 */
#cartAdd input[type="text"],
#cartAdd input[name="cart_quantity"] {
  width: 72px;
  height: 46px;
  padding: 0 8px;
  border: 2px solid #e5b36a;
  border-radius: 10px;
  background: #fff;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
}

/* 買い物かご画像ボタン */
#cartAdd #addToCartButton {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

/* ホバー時 */
#cartAdd #addToCartButton:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* クリック時 */
#cartAdd #addToCartButton:active {
  transform: translateY(1px);
}

/* 補足文をCSSだけで追加 */
#cartAdd::after {
  content: "数量を確認してからボタンを押してください";
  display: block;
  margin-top: 14px;
  color: #8a5a00;
  font-size: 13px;
  line-height: 1.6;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
  #cartAdd {
    max-width: calc(100% - 24px);
    padding: 18px 16px 22px;
    border-radius: 14px;
  }

  #cartAdd .qty-text {
    font-size: 15px;
  }

  #cartAdd input[type="text"],
  #cartAdd input[name="cart_quantity"] {
    width: 66px;
    height: 44px;
    font-size: 18px;
  }

  #cartAdd #addToCartButton {
    max-width: 100%;
  }
}

/* 配送希望時間 */
.delivery-time-box {
  margin: 14px 0 0 50px;
  padding: 10px 0 0;
  font-size: 12px;
  color: #333;
}

.delivery-time-title {
  display: inline-block;
  margin-right: 12px;
  font-weight: normal;
}

.delivery-time-options {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 6px;
  vertical-align: middle;
}

.delivery-time-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
}

.delivery-time-label input {
  margin: 0;
}

/* スマホ */
@media screen and (max-width: 767px) {
  .delivery-time-box {
    margin: 14px 0 0;
  }

  .delivery-time-title {
    display: block;
    margin: 0 0 8px;
  }

  .delivery-time-options {
    display: block;
  }

  .delivery-time-label {
    display: block;
    margin: 0 0 8px;
  }
}

/* 注文確認画面：配送希望日・配送希望時間 */
#checkoutConfirmDefault .confirm-delivery-info {
  margin-top: 8px;
  padding: 10px 12px;
  background: #fffaf0;
  border: 1px solid #f0c36d;
  border-radius: 6px;
  line-height: 1.8;
}

#checkoutConfirmDefault .confirm-delivery-row {
  font-size: 15px;
  color: #333;
}

#checkoutConfirmDefault .confirm-delivery-label {
  display: inline-block;
  min-width: 100px;
  font-weight: bold;
  color: #8a4b00;
}

/* =========================================================
   checkout_success：checkout_confirmation と同じカードデザイン
========================================================= */

#checkoutSuccess .success-confirm-cards {
  clear: both;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 50px;
  width: 100%;
  max-width: 860px;
  margin: 28px auto 34px;
}

/* カード本体 */
#checkoutSuccess .success-confirm-cards .confirm-card {
  position: relative;
  background: #fffdf4;
  border: 1px solid #eadfbc;
  border-radius: 14px;
  padding: 24px;
  box-sizing: border-box;
  box-shadow: 0 2px 5px rgba(90, 70, 20, 0.08);
  min-height: 124px;
}

/* 見出し：checkout_confirmation と同じ淡い帯＋左オレンジライン */
#checkoutSuccess .success-confirm-cards .confirm-card h2,
#checkoutSuccess .success-confirm-cards .confirm-card h3 {
  margin: 0 0 18px;
  padding: 9px 16px 9px 22px;
  background: #fff6dc;
  color: #1f1600;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  text-align: left;
  border-radius: 8px;
  border-left: 6px solid #ffa534;
  box-sizing: border-box;
}

/* 本文 */
#checkoutSuccess .success-confirm-cards .confirm-card address {
  margin: 0;
  font-style: normal;
  font-size: 17px;
  line-height: 1.75;
  color: #111;
}

#checkoutSuccess .success-confirm-cards .confirm-card h4 {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  font-weight: bold;
  color: #111;
}

/* 希望配送日時は横幅いっぱい */
#checkoutSuccess .success-confirm-cards .confirm-card-delivery-date {
  grid-column: 1 / -1;
  min-height: 0;
}

/* 希望配送日時の内側 */
#checkoutSuccess .success-confirm-cards .confirm-delivery-info {
  margin-top: 6px;
  padding: 14px 18px;
  background: #fffaf0;
  border: 1px solid #f0c36d;
  border-radius: 8px;
  line-height: 1.9;
}

#checkoutSuccess .success-confirm-cards .confirm-delivery-row {
  font-size: 17px;
  color: #111;
}

#checkoutSuccess .success-confirm-cards .confirm-delivery-label {
  display: inline-block;
  min-width: 120px;
  font-weight: bold;
  color: #8a4b00;
}

/* checkout_success 上部ボタンを確認画面の編集ボタン風に寄せる */
#checkoutSuccess .buttonRow.forward a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 38px;
  margin-left: 6px;
  padding: 0 18px;
  background: #ffc7d7;
  border-radius: 22px;
  color: #b50024 !important;
  text-decoration: none !important;
  font-size: 16px;
  box-sizing: border-box;
}

#checkoutSuccess .buttonRow.forward a img {
  display: none;
}

/* スマホ */
@media screen and (max-width: 767px) {
  #checkoutSuccess .success-confirm-cards {
    display: block;
    max-width: none;
    margin: 22px 0 28px;
  }

  #checkoutSuccess .success-confirm-cards .confirm-card {
    margin-bottom: 16px;
    padding: 16px;
    min-height: 0;
  }

  #checkoutSuccess .success-confirm-cards .confirm-card h2,
  #checkoutSuccess .success-confirm-cards .confirm-card h3 {
    font-size: 18px;
    padding: 8px 14px 8px 18px;
  }

  #checkoutSuccess .success-confirm-cards .confirm-card address,
  #checkoutSuccess .success-confirm-cards .confirm-card h4,
  #checkoutSuccess .success-confirm-cards .confirm-delivery-row {
    font-size: 15px;
  }

  #checkoutSuccess .success-confirm-cards .confirm-delivery-label {
    display: block;
    min-width: 0;
    margin-bottom: 2px;
  }
}
/* =========================================================
   checkout_success：元からある下部の住所・配送・支払い情報を非表示
   ※商品明細・注文処理履歴は残す
========================================================= */

#checkoutSuccess #myAccountShipInfo,
#checkoutSuccess #myAccountPaymentInfo,
#checkoutSuccess #myAccountShipInfo + div,
#checkoutSuccess #myAccountPaymentInfo + div {
  display: none !important;
}

/* テンプレートによって class 名で出ている場合の保険 */
#checkoutSuccess .accountHistoryInfoAddress,
#checkoutSuccess .accountHistoryInfoShipping,
#checkoutSuccess .accountHistoryInfoPayment,
#checkoutSuccess .accountHistoryInfoAddressWrapper {
  display: none !important;
}

/* =========================================================
   checkout_success：完了メッセージまわり
========================================================= */

#checkoutSuccessHeading {
  margin: 26px 0 18px;
  padding: 0 0 0 14px;
  border-left: 6px solid #d3002a;
  color: #c00024;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}

#checkoutSuccessOrderNumber {
  margin: 0 0 22px;
  padding: 12px 18px;
  background: #fffdf4;
  border: 1px solid #eadfbc;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
}

#checkoutSuccessMainContent {
  margin: 0 0 28px;
  padding: 22px 26px;
  background: #fffdf4;
  border: 1px solid #eadfbc;
  border-radius: 14px;
  box-shadow: 0 2px 5px rgba(90, 70, 20, 0.08);
  line-height: 1.8;
}

#checkoutSuccessMainContent p {
  margin: 0 0 12px;
}

#checkoutSuccessLogoff {
  margin: 22px 0 12px;
  line-height: 1.8;
}
/* =========================================================
   注文履歴：商品画像付き
========================================================= */

#orderhistoryContent .orderHistListImage {
  margin: 0;
  padding: 0;
  list-style: none;
}

#orderhistoryContent .orderHistListImage li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 3px;
  border-bottom: 1px solid #f1d98a;
  box-sizing: border-box;
}

#orderhistoryContent .orderHistListImage li:last-child {
  border-bottom: none;
}

#orderhistoryContent .orderHistItem {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: #cc0000;
  line-height: 1.45;
  min-width: 0;
}

#orderhistoryContent .orderHistImage {
  flex: 0 0 54px;
  width: 140px;
  height: 140px;
  display: block;
  background: #fff;
  border: 1px solid #f0c36a;
  box-sizing: border-box;
  overflow: hidden;
}

#orderhistoryContent .orderHistImage img {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
}

#orderhistoryContent .orderHistText {
  flex: 1;
  font-size: 13px;
  color: #cc0000;
  line-height: 1.45;
  word-break: break-word;
}

#orderhistoryContent .orderHistCart {
  flex: 0 0 18px;
  color: #cc0000;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
}

#orderhistoryContent .orderHistItem:hover .orderHistText,
#orderhistoryContent .orderHistCart:hover {
  text-decoration: underline;
}

/* =========================================================
   右サイド：カートの中身 見出し表示
========================================================= */

#shoppingcart {
  width: 170px;
  margin-bottom: 24px;
}

/* 見出しのオレンジ帯 */
#shoppingcartHeading,
.rightBoxHeading#shoppingcartHeading {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  background: #ffa533 !important;
  background-image: none !important;

  border: none !important;
  overflow: visible !important;
  text-indent: 0 !important;
  box-sizing: border-box !important;
}

/* 中のリンク文字を強制表示 */
#shoppingcartHeading a,
.rightBoxHeading#shoppingcartHeading a {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  width: 100% !important;
  height: auto !important;

  padding: 8px 8px !important;

  background: transparent !important;
  background-image: none !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: normal !important;
  line-height: 1.4 !important;
  text-align: center !important;
  text-decoration: none !important;

  text-indent: 0 !important;
  white-space: normal !important;
  overflow: visible !important;

  box-sizing: border-box !important;
}

/* ホバー時 */
#shoppingcartHeading a:hover {
  color: #fff !important;
  text-decoration: underline !important;
}
/* =========================================================
   注文履歴：画像右下にカートマーク、商品名は100%
========================================================= */

/* 1商品ごとのブロック */
#orderhistoryContent .orderHistBestsellerStyle .orderHistItem {
  position: relative;
  display: block !important;
  padding: 0 0 12px !important;
  margin: 0 0 14px !important;
  border-bottom: 1px solid #f1d98a;
  box-sizing: border-box;
}

/* 画像リンク */
#orderhistoryContent .orderHistImageLink {
  position: relative;
  display: block !important;
  width: 100% !important;
  text-decoration: none;
}

/* 画像枠 */
#orderhistoryContent .orderHistThumb {
  position: relative;
  display: block !important;
  width: 100% !important;
  margin: 0 0 6px !important;
  text-align: center;
  box-sizing: border-box;
}

/* 商品画像 */
#orderhistoryContent .orderHistThumb img {
  display: block !important;
  width: 100% !important;
  max-width: 170px !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain;
}

/* 商品名エリア：100% */
#orderhistoryContent .orderHistTextArea {
  display: block !important;
  width: 100% !important;
  padding: 0 4px !important;
  box-sizing: border-box !important;
  line-height: 1.5;
}

/* 商品名：100%で表示 */
#orderhistoryContent .orderHistName {
  display: block !important;
  width: 100% !important;
  color: #cc0000 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  text-decoration: underline;
  box-sizing: border-box;
}

/* カートマーク：画像の右下に重ねる */
#orderhistoryContent .orderHistCart {
  position: absolute !important;

  /* 画像幅 max-width:170px の右下に合わせる */
  right: 6px !important;
  bottom: 8px !important;

  display: block !important;
  width: 24px !important;
  height: 24px !important;

  margin: 0 !important;
  padding: 0 !important;

  color: #cc0000 !important;
  background: rgba(255, 255, 210, 0.9) !important;
  border-radius: 50%;

  font-size: 16px !important;
  line-height: 24px !important;
  text-align: center !important;
  text-decoration: none !important;

  z-index: 5;
}
#categoryImgListing {
  scroll-margin-top: 40px;
}
/* =========================================================
   右下：このページのトップへ戻るボタン
========================================================= */

#backToTopBtn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;

  width: 96px;
  height: 54px;

  border: none;
  border-radius: 999px;
  background: #d6003c;
  color: #ffffff;

  font-size: 13px;
  font-weight: bold;
  line-height: 1.35;
  text-align: center;

  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

#backToTopBtn.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTopBtn:hover {
  background: #b80034;
}

/* スマホ */
@media screen and (max-width: 767px) {
  #backToTopBtn {
    right: 12px;
    bottom: 12px;
    width: 88px;
    height: 50px;
    font-size: 12px;
  }
}

/* 商品名：<br>より前のキャッチ部分 */
.catch {
  color: #8b4a2b;
  font-weight: bold;
}

/* 商品一覧：商品名・価格をさらに小さく */
#featuredProducts .centerBoxContentsFeatured a,
#featuredProducts .centerBoxContentsFeatured .productBasePrice {
  font-size: 12px !important;
  line-height: 1.45 !important;
}

/* =========================================================
   商品一覧見出し：オレンジ帯・白文字・角丸
========================================================= */

#featuredProducts h2.centerBoxHeading,
.centerBoxWrapper#featuredProducts h2.centerBoxHeading {
  background: #f5a623 !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 12px 18px !important;
  margin: 0 0 24px !important;
  font-size: 17px !important;
  font-weight: bold !important;
  text-align: center !important;
  line-height: 1.5 !important;
  box-sizing: border-box !important;
}

/* h2内のリンクがある場合も白に固定 */
#featuredProducts h2.centerBoxHeading a,
.centerBoxWrapper#featuredProducts h2.centerBoxHeading a {
  color: #ffffff !important;
  text-decoration: none !important;
}


/* =========================================================
   商品一覧画像：角丸
========================================================= */

#featuredProducts .centerBoxContentsFeatured img,
.centerBoxWrapper#featuredProducts .centerBoxContentsFeatured img {
  border-radius: 10px !important;
  overflow: hidden !important;
  display: block !important;
}

/* =========================================================
   商品ID 53〜73 グッズ商品ページ専用
========================================================= */

body.goods-product {
  background: #fff8cc !important;
}

body.goods-product #mainWrapper {
  background: #fff8cc !important;
}

/* 中央エリアを白くする場合 */
body.goods-product #contentMainWrapper,
body.goods-product .centerColumn {
  background: #fff8cc !important;
}

/* 商品画像を角丸にする場合 */
body.goods-product img {
  border-radius: 10px;
}



/* =========================================================
   右サイド：ベストセラーを必ず 画像→商品名 の縦並びにする
========================================================= */

#bestsellersContent .list-bestsellers {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

#bestsellersContent .bestseller-item {
  display: block !important;
  width: 100% !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  text-align: center !important;
  clear: both !important;
  float: none !important;
  box-sizing: border-box !important;
}

/* 画像を囲むリンク */
#bestsellersContent .bestseller-item > a {
  display: block !important;
  width: 100% !important;
  margin: 0 auto 8px !important;
  padding: 0 !important;
  text-align: center !important;
  float: none !important;
  clear: both !important;
}

/* 画像 */
#bestsellersContent .bestseller-item > a img {
  display: block !important;
  width: 100% !important;
  max-width: 140px !important;
  height: auto !important;
  margin: 0 auto !important;
  float: none !important;
  clear: both !important;
  border-radius: 8px !important;
}

/* 商品名ブロック */
#bestsellersContent .bestseller-name {
  display: block !important;
  width: 100% !important;
  max-width: 140px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  text-align: left !important;
  float: none !important;
  clear: both !important;
  line-height: 1.55 !important;
  font-size: 10px !important;
  box-sizing: border-box !important;
}

/* 商品名リンク */
#bestsellersContent .bestseller-name a {
  display: block !important;
  width: 100% !important;
  color: #8b4a2b !important;
  text-decoration: underline !important;
  float: none !important;
}

/* catch部分 */
#bestsellersContent .bestseller-name .catch {
  display: inline !important;
  color: #8b4a2b !important;
}


/* =========================================================
   右サイド：見出し・カート・ベストセラー調整
========================================================= */

/* ベストセラー見出し：白文字＋オレンジ帯 */
#bestsellersHeading,
#bestsellers h3.rightBoxHeading {
  background: #f5a623 !important;
  color: #ffffff !important;
  padding: 10px 12px !important;
  margin: 0 0 14px !important; /* オレンジ帯の下に余白 */
  font-size: 16px !important;
  font-weight: normal !important;
  text-align: center !important;
  line-height: 1.5 !important;
}

/* ベストセラー枠 */
#bestsellersContent {
  padding-top: 0 !important;
}

/* ベストセラー商品名：画像下表示・通常文字 */
#bestsellersContent .bestseller-name {
  padding: 0 8px !important;
  font-weight: normal !important;
  box-sizing: border-box !important;
}

#bestsellersContent .bestseller-name a {
  font-weight: normal !important;
}

#bestsellersContent .bestseller-name .catch {
  font-weight: normal !important;
}


/* =========================================================
   カートの中身：商品名左右余白・価格グレー背景削除
========================================================= */

/* カートの中身 見出し */
#shoppingcartHeading,
#shoppingcart h3.rightBoxHeading {
  background: #f5a623 !important;
  color: #ffffff !important;
  padding: 10px 12px !important;
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: normal !important;
  text-align: center !important;
  line-height: 1.5 !important;
}

/* カート商品名に左右余白 */
#shoppingcartContent {
  padding: 10px 12px !important;
  box-sizing: border-box !important;
}

/* 商品名をnormalに */
#shoppingcartContent a,
#shoppingcartContent .cartBoxListWrapper,
#shoppingcartContent .cartBoxListWrapper a {
  font-weight: normal !important;
  line-height: 1.6 !important;
}

/* 価格部分のグレー背景を削除 */
#shoppingcartContent .cartBoxTotal,
.cartBoxTotal {
  background: transparent !important;
  padding: 8px 0 0 !important;
  margin: 8px 0 0 !important;
  font-weight: normal !important;
  text-align: right !important;
}

/* =========================================================
   カテゴリーページ：商品一覧の商品名を画像下に表示
========================================================= */

#indexProductList .centerBoxContentsFeatured,
#indexProductList .centeredContent,
#featuredProducts .centerBoxContentsFeatured,
#productListing .centeredContent {
  text-align: center !important;
  box-sizing: border-box !important;
}

/* 商品画像リンク */
#indexProductList .centerBoxContentsFeatured > a,
#featuredProducts .centerBoxContentsFeatured > a,
#productListing .centeredContent > a {
  display: block !important;
  text-align: center !important;
  text-decoration: none !important;
}

/* 商品画像 */
#indexProductList .centerBoxContentsFeatured img,
#featuredProducts .centerBoxContentsFeatured img,
#productListing .centeredContent img {
  display: block !important;
  margin: 0 auto 14px !important;
  border-radius: 10px !important;
}

/* 商品名を必ず表示 */
#indexProductList .itemTitle,
#featuredProducts .itemTitle,
#productListing .itemTitle,
#indexProductList h3.itemTitle,
#featuredProducts h3.itemTitle,
#productListing h3.itemTitle {
  display: block !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  visibility: visible !important;
  opacity: 1 !important;

  margin: 0 auto 8px !important;
  padding: 0 8px !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  font-weight: bold !important;
  color: #cc0000 !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

/* 商品名リンク */
#indexProductList .itemTitle a,
#featuredProducts .itemTitle a,
#productListing .itemTitle a {
  display: block !important;
  color: #cc0000 !important;
  font-weight: bold !important;
  text-decoration: none !important;
}

/* span.catch も表示 */
#indexProductList .catch,
#featuredProducts .catch,
#productListing .catch {
  display: inline !important;
  /*color: #333333 !important;*/
  font-weight: bold !important;
}

/* =========================================================
   ヘッダー上部ナビ：ログイン・カート・レジへ進むをボタン化
========================================================= */

#navMain ul.back {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 8px 12px !important;
  list-style: none !important;
}

#navMain ul.back li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border-right: none !important;
}

/* 基本ボタン */
#navMain ul.back li a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-height: 34px !important;
  padding: 7px 16px !important;

  background: #ffffff !important;
  color: #ff9900 !important;
  border: 1px solid #ff9900 !important;
  border-radius: 18px !important;

  font-size: 15px !important;
  font-weight: bold !important;
  line-height: 1.2 !important;
  text-decoration: none !important;

  box-sizing: border-box !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.12) !important;
}

/* hover */
#navMain ul.back li a:hover {
  background: #ff6c00 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* =========================================================
   1個目：満月ポンオフィシャルホームページへ移動
   元のまま：ピンク背景＋白抜き文字
========================================================= */

#navMain ul.back li:first-child a {
  background: #ff9900 !important;
  color: #ffffff !important;
  border: 1px solid #ff9900 !important;
  border-radius: 18px !important;
  box-shadow: none !important;
}

#navMain ul.back li:first-child a:hover {
  background: #ff6c00 !important;
  color: #ffffff !important;
  border-color: #ff6c00 !important;
}

/* カートを見る */
#navMain ul.back li a[href*="shopping_cart"] {
  background: #fff7f7 !important;
  border-color: #cc0000 !important;
  color: #b00000 !important;
}

/* レジへ進む */
#navMain ul.back li.last a,
#navMain ul.back li a[href*="checkout_shipping"] {
  background: #ff9900 !important;
  color: #ffffff !important;
  border-color: #ff9900 !important;
}

#navMain ul.back li.last a:hover,
#navMain ul.back li a[href*="checkout_shipping"]:hover {
  background: #ff6c00 !important;
  color: #ffffff !important;
}

/* =========================================================
   右サイド：再注文 画像と商品名だけ調整
========================================================= */

/* 商品ごとの余白 */
#orderhistoryContent .orderHistItem {
  margin: 0 0 24px !important;
  padding: 0 8px !important;
  box-sizing: border-box !important;
}

/* 画像まわりに余白＋角丸 */
#orderhistoryContent .orderHistThumb img,
#orderhistoryContent .orderHistImageBox img,
#orderhistoryContent .orderHistImageLink img {
  display: block !important;
  width: 100% !important;
  max-width: 140px !important;
  height: auto !important;
  margin: 0 auto 10px !important;
  padding: 0 !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
}

/* 商品名を小さく・normal */
#orderhistoryContent .orderHistTextArea,
#orderhistoryContent .orderHistTextArea a,
#orderhistoryContent .orderHistTextArea .catch {
  font-size: 12px !important;
  font-weight: normal !important;
  line-height: 1.5 !important;
  color: #8b4a2b !important;
}

/* 商品名の左右余白 */
#orderhistoryContent .orderHistTextArea {
  padding: 0 8px !important;
  box-sizing: border-box !important;
}

/* =========================================================
   おすすめカテゴリ：PC左バナー内・スマホ風 白い細めボタン
========================================================= */

/* 全体 */
.featuredCategoryButtons {
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 6px 0 10px !important;
  margin: 0 !important;
  text-align: center !important;
}

/* 1件ごとの枠 */
.featuredCategoryButtonItem,
.sideBoxContentItem.featuredCategoryButtonItem {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  text-align: center !important;
}

/* ボタン本体 */
a.featuredCategoryButton,
.sideBoxContent a.featuredCategoryButton {
  display: block !important;
  width: 100% !important;
  max-width: 170px !important;
  box-sizing: border-box !important;

  padding: 7px 8px !important;
  margin: 0 auto !important;

  background: #fff9df !important;
  color: #8b4a2b !important;

  border: 1px solid #e5b45a !important;
  border-radius: 17px !important;

  font-size: 13px !important;
  font-weight: normal !important;
  line-height: 1.3 !important;
  text-align: center !important;
  text-decoration: none !important;

  box-shadow: none !important;
}

/* 訪問済みでも同じ色 */
a.featuredCategoryButton:visited,
.sideBoxContent a.featuredCategoryButton:visited {
  color: #8b4a2b !important;
}

/* ホバー */
a.featuredCategoryButton:hover,
.sideBoxContent a.featuredCategoryButton:hover {
  background: #fff3d5 !important;
  color: #8b4a2b !important;
  text-decoration: none !important;
  transform: none !important;
  box-shadow: none !important;
}

/* 押した時 */
a.featuredCategoryButton:active,
.sideBoxContent a.featuredCategoryButton:active {
  background: #ffe8b7 !important;
  transform: none !important;
  box-shadow: none !important;
}

/* 画像が残っていても非表示 */
.featuredCategoryButtons img {
  display: none !important;
}


/* =========================================================
   メールマガジン設定
========================================================= */

#acctNewslettersDefault fieldset {
  margin-bottom: 12px;
}

#acctNewslettersDefault legend {
  display: block;
  width: 100%;
  background: #ffa12b;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 10px 15px;
  box-sizing: border-box;
}

#acctNewslettersDefault .newsletter-status-note {
  margin: 0 0 24px;
  padding: 14px 18px;
  background: #fffdf2;
  border: 1px solid #f3d89a;
  color: #333333;
  font-size: 15px;
  line-height: 1.7;
  font-weight: bold;
}

#acctNewslettersDefault input[type="checkbox"]#newsletter {
  width: 22px;
  height: 22px;
  transform: scale(1.3);
  margin: 0 14px 0 25px;
  vertical-align: middle;
  cursor: pointer;
}

#acctNewslettersDefault .checkboxLabel {
  font-size: 16px;
  line-height: 1.8;
  cursor: pointer;
}

/* =========================================================
   スマホ：商品一覧を2列表示に固定
========================================================= */

@media screen and (max-width: 767px) {

  #featuredProducts {
    overflow: hidden !important;
  }

  #featuredProducts .centerBoxContentsFeatured,
  #featuredProducts .centerBoxContentsFeatured.centeredContent,
  #featuredProducts .centerBoxContentsFeatured.centeredContent.back {
    width: 50% !important;
    max-width: 50% !important;
    float: left !important;
    clear: none !important;
    display: block !important;
    padding: 8px !important;
    margin: 0 0 18px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  #featuredProducts .centerBoxContentsFeatured:nth-of-type(2n+1) {
    clear: left !important;
  }

  #featuredProducts .centerBoxContentsFeatured img {
    width: 100% !important;
    max-width: 170px !important;
    height: auto !important;
    margin: 0 auto 8px !important;
    display: block !important;
    border-radius: 8px !important;
  }

  #featuredProducts .centerBoxContentsFeatured a {
    display: block !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    font-weight: normal !important;
    text-align: center !important;
  }

  #featuredProducts .productBasePrice {
    display: block !important;
    font-size: 12px !important;
    margin-top: 6px !important;
    text-align: center !important;
  }
}

/* =========================================================
   スマホ：おすすめカテゴリを画像なし・細いボタン表示に変更
========================================================= */

@media screen and (max-width: 767px) {

  /* おすすめカテゴリ全体 */
  #featuredCategories {
    margin: 24px auto !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
  }

  /* 見出し */
  #featuredCategories h2.centerBoxHeading {
    background: #f5a623 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 10px 12px !important;
    margin: 0 0 14px !important;
    font-size: 16px !important;
    font-weight: normal !important;
    text-align: center !important;
    line-height: 1.4 !important;
  }

  /* カテゴリ1個分 */
  #featuredCategories .centerBoxContentsFeaturedCategories {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: both !important;
    display: block !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* カテゴリ画像を非表示 */
  #featuredCategories .centerBoxContentsFeaturedCategories img {
    display: none !important;
  }

  /* 画像リンク側は非表示 */
  #featuredCategories .centerBoxContentsFeaturedCategories > a:first-child {
    display: none !important;
  }

  /* カテゴリ名リンクを細いボタン化 */
  #featuredCategories .centerBoxContentsFeaturedCategories a {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 8px 12px !important;

    background: #ffffff !important;
    color: #8b4a2b !important;
    border: 1px solid #e5b45a !important;
    border-radius: 18px !important;

    font-size: 13px !important;
    font-weight: normal !important;
    line-height: 1.4 !important;
    text-align: center !important;
    text-decoration: none !important;

    box-sizing: border-box !important;
  }

  /* hover / tap */
  #featuredCategories .centerBoxContentsFeaturedCategories a:hover {
    background: #fff3d5 !important;
    color: #8b4a2b !important;
    text-decoration: none !important;
  }

  /* brによる余分な隙間を抑える */
  #featuredCategories .centerBoxContentsFeaturedCategories br {
    display: none !important;
  }
}

/* =========================================================
   スマホ：おすすめカテゴリーページ
   画像なし・カテゴリ名だけ細いボタン化
   対象：main_page=featured_categories
========================================================= */

@media screen and (max-width: 767px) {

  body#featuredcategoriesBody .centerBoxContentsFeatured,
  body#featuredcategoriesBody .centerBoxContentsFeatured.centeredContent,
  body#featuredcategoriesBody .centerBoxContentsFeatured.centeredContent.back {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: both !important;
    display: block !important;
    margin: 0 0 9px !important;
    padding: 0 14px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* 画像だけ非表示。aは消さない */
  body#featuredcategoriesBody .centerBoxContentsFeatured img {
    display: none !important;
  }

  /* a全体をボタンの外枠にする */
  body#featuredcategoriesBody .centerBoxContentsFeatured > a {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }

  /* カテゴリ名を細いボタン化 */
  body#featuredcategoriesBody .centerBoxContentsFeatured .categoryName {
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 7px 12px !important;

    background: #ffffff !important;
    color: #8b4a2b !important;
    border: 1px solid #e5b45a !important;
    border-radius: 18px !important;

    font-size: 13px !important;
    font-weight: normal !important;
    line-height: 1.35 !important;
    text-align: center !important;

    box-sizing: border-box !important;
  }

  body#featuredcategoriesBody .centerBoxContentsFeatured > a:hover .categoryName {
    background: #fff3d5 !important;
    color: #8b4a2b !important;
  }

  /* brがあれば余白を消す */
  body#featuredcategoriesBody .centerBoxContentsFeatured br {
    display: none !important;
  }
}

/* =========================================================
   商品一覧：商品詳細へボタンを常時角丸にする
========================================================= */

a.moreinfoLink.list-more,
.centerBoxContentsProducts a.moreinfoLink.list-more,
.centeredContent a.moreinfoLink.list-more {
  display: inline-block !important;
  min-width: 160px !important;
  padding: 10px 22px !important;
  box-sizing: border-box !important;

  background: #ffa83a !important;
  color: #ffffff !important;

  border: none !important;
  border-radius: 20px !important;

  font-size: 15px !important;
  line-height: 1.4 !important;
  text-align: center !important;
  text-decoration: none !important;

  transition: background 0.2s ease, transform 0.2s ease !important;
}

/* 訪問済みでも白文字 */
a.moreinfoLink.list-more:visited,
.centerBoxContentsProducts a.moreinfoLink.list-more:visited,
.centeredContent a.moreinfoLink.list-more:visited {
  color: #ffffff !important;
}

/* マウスオーバー */
a.moreinfoLink.list-more:hover,
.centerBoxContentsProducts a.moreinfoLink.list-more:hover,
.centeredContent a.moreinfoLink.list-more:hover {
  background: #ffb553 !important;
  color: #ffffff !important;
  border-radius: 20px !important;
  text-decoration: none !important;
  transform: translateY(1px) !important;
}

/* =========================================================
   スマホ：カテゴリ一覧をおすすめ商品と同じ2列表示にする
   対象：#indexProductList / #productListing 両対応
========================================================= */
@media screen and (max-width: 767px) {

  /* 親エリア */
  #indexProductList,
  #productListing,
  #featuredProducts {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* 商品一覧の1商品枠：おすすめ商品と同じ2列 */
  #indexProductList .centerBoxContentsFeatured,
  #indexProductList .centerBoxContentsNew,
  #indexProductList .centerBoxContentsProducts,
  #productListing .centerBoxContentsFeatured,
  #productListing .centerBoxContentsNew,
  #productListing .centerBoxContentsProducts,
  #productListing .productListing-odd,
  #productListing .productListing-even {
    float: left !important;
    clear: none !important;

    width: 50% !important;
    max-width: 50% !important;

    display: block !important;
    box-sizing: border-box !important;

    margin: 0 0 26px !important;
    padding: 0 8px !important;

    text-align: center !important;
    overflow: visible !important;
  }

  /* 画像 */
  #indexProductList .centerBoxContentsFeatured img,
  #indexProductList .centerBoxContentsNew img,
  #indexProductList .centerBoxContentsProducts img,
  #productListing .centerBoxContentsFeatured img,
  #productListing .centerBoxContentsNew img,
  #productListing .centerBoxContentsProducts img,
  #productListing .productListing-odd img,
  #productListing .productListing-even img {
    display: block !important;

    width: 100% !important;
    max-width: 140px !important;
    height: auto !important;

    margin: 0 auto 10px !important;
    padding: 0 !important;

    border-radius: 10px !important;
    box-sizing: border-box !important;
  }

  /* 商品名 */
  #indexProductList .itemTitle,
  #productListing .itemTitle,
  #indexProductList h3.itemTitle,
  #productListing h3.itemTitle {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 auto 6px !important;
    padding: 0 !important;

    font-size: 11px !important;
    line-height: 1.45 !important;
    font-weight: bold !important;
    color: #cc0000 !important;

    text-align: center !important;
    box-sizing: border-box !important;

    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  #indexProductList .itemTitle a,
  #productListing .itemTitle a {
    display: block !important;
    color: #cc0000 !important;
    text-decoration: none !important;
    font-weight: bold !important;
  }

  /* キャッチコピー */
  #indexProductList .catch,
  #productListing .catch {
    display: inline !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    font-weight: bold !important;
    color: #cc0000 !important;
  }

  /* 価格 */
  #indexProductList .productBasePrice,
  #indexProductList .productSpecialPrice,
  #indexProductList .normalprice,
  #productListing .productBasePrice,
  #productListing .productSpecialPrice,
  #productListing .normalprice,
  #productListing .list-price {
    display: block !important;

    margin: 6px auto 8px !important;
    padding: 0 !important;

    font-size: 11px !important;
    line-height: 1.4 !important;
    color: #cc0000 !important;
    text-align: center !important;
  }

  /* 説明文はおすすめ商品風に非表示 */
  #indexProductList .listingDescription,
  #productListing .listingDescription {
    display: none !important;
  }

  /* 注文ボタン */
  #indexProductList .list-more,
  #productListing .list-more,
  #indexProductList .buttonRow a,
  #productListing .buttonRow a {
    display: inline-block !important;
    float: none !important;

    width: auto !important;
    min-width: 108px !important;
    max-width: 100% !important;

    margin: 6px auto 0 !important;
    padding: 8px 14px !important;

    background: #f5a623 !important;
    color: #ffffff !important;
    border-radius: 18px !important;

    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: bold !important;
    text-align: center !important;
    text-decoration: none !important;

    box-sizing: border-box !important;
  }

  #indexProductList .list-more:hover,
  #productListing .list-more:hover,
  #indexProductList .buttonRow a:hover,
  #productListing .buttonRow a:hover {
    background: #ffb23c !important;
    color: #ffffff !important;
    border-radius: 18px !important;
    text-decoration: none !important;
  }

  /* 2列崩れ防止 */
  #indexProductList br.clearBoth,
  #productListing br.clearBoth,
  #indexProductList .clearBoth,
  #productListing .clearBoth {
    display: none !important;
    clear: none !important;
  }
}
/* =========================================================
   売り切れボタンを画像表示に変更
========================================================= */

span.cssButton.button_sold_out,
span.cssButton.normal_button.button_sold_out,
span.button_sold_out {
  display: inline-block !important;

  width: 180px !important;
  height: 92px !important;

  margin: 6px auto 0 !important;
  padding: 0 !important;

  background: url("/onlineshop/images/button_sold_out.gif") center center / contain no-repeat !important;

  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  text-indent: -9999px !important;
  overflow: hidden !important;

  cursor: default !important;
}

/* マウスオーバーしても変化させない */
span.cssButton.button_sold_out:hover,
span.cssButton.normal_button.button_sold_out:hover,
span.button_sold_out:hover {
  background: url("/onlineshop/images/button_sold_out.gif") center center / contain no-repeat !important;
  border: none !important;
  border-radius: 0 !important;
  color: transparent !important;
}
/* 会社概要ページ：表組を見やすく整える */
#aboutUs table {
  width: 100% !important;
  max-width: 620px !important;
  border-collapse: collapse !important;
  margin: 20px 0 30px !important;
  background: #fffdf0 !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
}

/* セル共通 */
#aboutUs table td {
  border-bottom: 1px solid #e6d7a8 !important;
  padding: 10px 14px !important;
  vertical-align: top !important;
  color: #5a3318 !important;
}

/* 左側の項目名 */
#aboutUs table td:first-child {
  width: 110px !important;
  background: #f6e8b8 !important;
  color: #8a3d16 !important;
  font-weight: bold !important;
  white-space: nowrap !important;
}

/* 右側の内容 */
#aboutUs table td:last-child {
  background: #fffaf0 !important;
}

/* 一番上に少し角丸 */
#aboutUs table tr:first-child td:first-child {
  border-top-left-radius: 8px !important;
}

#aboutUs table tr:first-child td:last-child {
  border-top-right-radius: 8px !important;
}

/* 一番下に少し角丸 */
#aboutUs table tr:last-child td:first-child {
  border-bottom-left-radius: 8px !important;
}

#aboutUs table tr:last-child td:last-child {
  border-bottom-right-radius: 8px !important;
  border-bottom: none !important;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  #aboutUs table {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 13px !important;
  }

  #aboutUs table td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 8px 10px !important;
  }

  #aboutUs table td:first-child {
    background: #ec6700 !important;
    color: #ffffff !important;
    border-bottom: none !important;
  }

  #aboutUs table td:last-child {
    border-bottom: 1px solid #e6d7a8 !important;
    margin-bottom: 6px !important;
  }
}
/* =========================================================
   ポンちゃんグッズ一覧：ご注文ページへボタンを小さく戻す
========================================================= */

#indexProductList .centerBoxContentsProducts a.moreInfoLink,
#indexProductList .centerBoxContentsProducts a.list-more,
#indexProductList a.moreInfoLink.list-more {
  display: inline-block !important;

  width: 92px !important;
  min-width: 92px !important;
  max-width: 92px !important;

  height: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;

  padding: 0 !important;
  margin: 6px auto 0 !important;

  font-size: 11px !important;
  line-height: 24px !important;
  font-weight: normal !important;
  text-align: center !important;

  border-radius: 12px !important;
  box-sizing: border-box !important;
}

/* =========================================================
   配送と返品について：会社概要に合わせる・戻るボタンは変更しない
========================================================= */

/* 全体 */
#shippingInfo {
  max-width: 700px !important;
  color: #5a3318 !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
}

/* 見出し：会社概要に近い赤 */
#shippingInfoHeading,
#shippingInfo h1 {
  color: #c40024 !important;
  font-size: 20px !important;
  font-weight: bold !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 26px !important;
}

/* 外側の古い装飾を消す */
#shippingInfoMainContent {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* 基本文字：会社概要と同じ茶色・サイズ */
#shippingInfoMainContent p,
#shippingInfoMainContent blockquote p {
  color: #5a3318 !important;
  font-size: 14px !important;
  line-height: 1.85 !important;
  font-weight: normal !important;
  margin: 0 0 1em !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

/* 送料の赤い案内 */
#shippingInfoMainContent > p:first-child {
  color: #c40024 !important;
  font-size: 15px !important;
  font-weight: bold !important;
  line-height: 1.8 !important;
  margin: 0 0 8px !important;
}

/* 送料無料おすすめ文：送料案内の下に同じ扱いで表示 */
#shippingInfoMainContent > p:nth-of-type(2) {
  color: #c40024 !important;
  font-size: 14px !important;
  font-weight: bold !important;
  line-height: 1.8 !important;
  margin: 0 0 28px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

/* 「お届けについて」「返品について」 */
#shippingInfoMainContent > p:nth-of-type(3),
#shippingInfoMainContent > p:nth-of-type(4) {
  color: #5a3318 !important;
  font-size: 14px !important;
  font-weight: bold !important;
  line-height: 1.8 !important;
  margin: 24px 0 12px 52px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

/* 説明文だけ薄いベージュのベースに入れる */
#shippingInfoMainContent blockquote {
  max-width: 620px !important;
  margin: 0 0 28px 52px !important;
  padding: 16px 20px !important;
  background: #fff8df !important;
  border: none !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
}

/* blockquote内の文字 */
#shippingInfoMainContent blockquote p {
  color: #5a3318 !important;
  font-size: 14px !important;
  line-height: 1.85 !important;
  font-weight: normal !important;
  margin: 0 0 0.9em !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

/* 空のpを消す */
#shippingInfoMainContent p:empty,
#shippingInfoMainContent blockquote p:empty {
  display: none !important;
}
/* =========================================================
   スマホ：SNSアイコンブロック右寄せ・30px
   UTF-8
========================================================= */
@media screen and (max-width: 767px) {

  .header_sns_block {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 8px !important;
    box-sizing: border-box !important;
    padding-right: 12px !important;
    margin: 0 !important;
    line-height: 0 !important;
  }

  .header_sns_block a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
  }

  .header_sns_block img,
  .header_sns_block .luna_pon_icon {
    display: block !important;
    width: 30px !important;
    height: 30px !important;
    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
  }

}

/* =========================================================
   スマホ：上部ナビのアイコンを文字入り角丸ボタンに変更
   UTF-8
========================================================= */

@media screen and (max-width: 767px) {

  /* 赤いナビ全体 */
  #navMainWrapper {
    min-height: 56px !important;
  }

  /*#navMain {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: 100% !important;
    min-height: 56px !important;
    box-sizing: border-box !important;
    padding: 0 8px 0 64px !important; /* 左のハンバーガー分を確保 */
 /*}*/

  #navMain ul {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 6px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  #navMain ul li {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
  }

  /* 対象リンク共通：ログイン・ログアウト・マイページ・カート・レジ */
  #navMain ul li a[href*="main_page=login"],
  #navMain ul li a[href*="main_page=logoff"],
  #navMain ul li a[href*="main_page=account"],
  #navMain ul li a[href*="main_page=shopping_cart"],
  #navMain ul li a[href*="main_page=checkout_shipping"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    height: 30px !important;
    min-width: 62px !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;

    background: #ffffff !important;
    color: #d7262d !important;
    border: 1px solid #ffffff !important;
    border-radius: 18px !important;

    font-size: 12px !important;
    font-weight: bold !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  /* 元アイコンを非表示 */
  #navMain ul li a[href*="main_page=login"] i,
  #navMain ul li a[href*="main_page=logoff"] i,
  #navMain ul li a[href*="main_page=account"] i,
  #navMain ul li a[href*="main_page=shopping_cart"] i,
  #navMain ul li a[href*="main_page=checkout_shipping"] i {
    display: none !important;
  }

  /* ログイン前 */
  #navMain ul li a[href*="main_page=login"]::before {
    content: "ログイン" !important;
  }

  /* ログイン後 */
  #navMain ul li a[href*="main_page=logoff"]::before {
    content: "ログアウト" !important;
  }

  #navMain ul li a[href*="main_page=account"]::before {
    content: "マイページ" !important;
  }

  /* カート内に商品がある時 */
  #navMain ul li a[href*="main_page=shopping_cart"]::before {
    content: "カート" !important;
  }

  #navMain ul li a[href*="main_page=checkout_shipping"]::before {
    content: "レジへ" !important;
  }

  /* レジへ進むだけ赤ボタン */
  #navMain ul li a[href*="main_page=checkout_shipping"] {
    background: #ffffff !important;
    color: #d7262d !important;
  }

  /* hover / tap */
  #navMain ul li a[href*="main_page=login"]:hover,
  #navMain ul li a[href*="main_page=logoff"]:hover,
  #navMain ul li a[href*="main_page=account"]:hover,
  #navMain ul li a[href*="main_page=shopping_cart"]:hover,
  #navMain ul li a[href*="main_page=checkout_shipping"]:hover {
    background: #fff4f4 !important;
    color: #d7262d !important;
    text-decoration: none !important;
  }
}

/* =========================================================
   スマホ：ヘッダー下〜ロゴ上の余白を詰める
   UTF-8
========================================================= */

@media screen and (max-width: 767px) {

  /* ナビ下の余白を詰める */
  #navMainWrapper {
    margin-bottom: 0 !important;
  }

  /* ロゴエリア上の余白を詰める */
  #logoWrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  #logo {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* スマホ用ロゴ画像の上余白を詰める */
  #logo a[href="/onlineshop/"] img {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
}

/* =========================================================
   スマホ：ログインページ順番変更 強制版
========================================================= */

@media screen and (max-width: 767px) {

  #loginDefault {
    display: flex !important;
    flex-direction: column !important;
  }

  #loginDefault fieldset.forward {
    order: 1 !important;
  }

  #loginDefault fieldset.back {
    order: 2 !important;
  }
}

/* =========================================================
   スマホ：新規会員登録フォーム調整
   国名非表示・都道府県ずれ修正・入力欄・送信ボタン
   UTF-8
========================================================= */

@media screen and (max-width: 767px) {

  /* -----------------------------
     国名を非表示
  ----------------------------- */

  #createAcctDefault label[for="country"],
  #createAcctDefault #country {
    display: none !important;
  }

  /* 国名の下にある余分な改行分を詰める */
  #createAcctDefault label[for="country"] + select + br,
  #createAcctDefault label[for="country"] + select + br + br {
    display: none !important;
  }

  /* -----------------------------
     フォーム全体
  ----------------------------- */

  #createAcctDefault {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  #createAcctDefault fieldset {
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 0 18px !important;
    padding: 14px 12px 16px !important;
    border: none !important;
    background: #fffdf2 !important;
  }

  #createAcctDefault legend {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 0 12px !important;
    padding: 9px 12px !important;

    background: #f7a12d !important;
    color: #ffffff !important;
    border-radius: 4px !important;

    font-size: 15px !important;
    font-weight: bold !important;
    line-height: 1.4 !important;
  }

  /* -----------------------------
     ラベル：左ずれ防止
  ----------------------------- */

  #createAcctDefault label.inputLabel,
  #createAcctDefault #zoneLabel,
  #createAcctDefault #stateLabel {
    display: block !important;
    float: none !important;
    clear: both !important;

    width: 100% !important;
    margin: 0 0 5px !important;
    padding: 0 !important;

    text-align: left !important;
    font-size: 14px !important;
    font-weight: bold !important;
    color: #5a3318 !important;
    line-height: 1.5 !important;
  }

  /* 都道府県だけ左にずれる対策 */
  #createAcctDefault #zoneLabel,
  #createAcctDefault #stateLabel {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  /* -----------------------------
     入力欄：細い罫線＋少し角丸
  ----------------------------- */

  #createAcctDefault input[type="text"],
  #createAcctDefault input[type="email"],
  #createAcctDefault input[type="password"],
  #createAcctDefault input[type="tel"],
  #createAcctDefault select,
  #createAcctDefault textarea {
    display: block !important;
    float: none !important;
    clear: both !important;

    width: 100% !important;
    max-width: 100% !important;
    height: 42px !important;
    box-sizing: border-box !important;

    margin: 0 0 12px !important;
    padding: 8px 10px !important;

    background: #ffffff !important;
    border: 1px solid #d8c9aa !important;
    border-radius: 5px !important;

    font-size: 16px !important;
    color: #333333 !important;
    line-height: 1.4 !important;

    box-shadow: none !important;
    outline: none !important;
  }

  #createAcctDefault textarea {
    height: auto !important;
    min-height: 90px !important;
  }

  /* フォーカス時 */
  #createAcctDefault input[type="text"]:focus,
  #createAcctDefault input[type="email"]:focus,
  #createAcctDefault input[type="password"]:focus,
  #createAcctDefault input[type="tel"]:focus,
  #createAcctDefault select:focus,
  #createAcctDefault textarea:focus {
    border-color: #ec6700 !important;
    box-shadow: 0 0 0 2px rgba(236, 103, 0, 0.15) !important;
  }

  /* -----------------------------
     都道府県入力欄のずれ修正
  ----------------------------- */

  #createAcctDefault #stateZone,
  #createAcctDefault #state {
    float: none !important;
    clear: both !important;
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* 不要な回り込み解除 */
  #createAcctDefault br.clearBoth {
    clear: both !important;
  }

  /* -----------------------------
     必須マーク・注意文
  ----------------------------- */

  #createAcctDefault .alert {
    display: inline-block !important;
    margin-left: 4px !important;
    color: #cc0033 !important;
    font-size: 12px !important;
  }

  /* -----------------------------
     送信ボタンを大きく押しやすく
  ----------------------------- */

  #createAcctDefault .buttonRow,
  #createAcctDefault .buttonRow.forward,
  #createAcctDefault .buttonRow.back {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    margin: 22px 0 10px !important;
    text-align: center !important;
  }

  #createAcctDefault input[type="submit"],
  #createAcctDefault button,
  #createAcctDefault .buttonRow a,
  #createAcctDefault .buttonRow input,
  #createAcctDefault .cssButton,
  #createAcctDefault .cssButtonSubmit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 92% !important;
    max-width: 320px !important;
    min-height: 48px !important;
    box-sizing: border-box !important;

    margin: 8px auto !important;
    padding: 12px 20px !important;

    background: #ec6700 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 24px !important;

    font-size: 16px !important;
    font-weight: bold !important;
    line-height: 1.3 !important;
    text-align: center !important;
    text-decoration: none !important;

    box-shadow: 0 3px 0 rgba(120, 55, 0, 0.25) !important;
  }

  #createAcctDefault input[type="submit"]:hover,
  #createAcctDefault button:hover,
  #createAcctDefault .buttonRow a:hover,
  #createAcctDefault .cssButton:hover,
  #createAcctDefault .cssButtonSubmit:hover {
    background: #d85e00 !important;
    color: #ffffff !important;
    text-decoration: none !important;
  }
}

/* =========================================================
   スマホ：ログインページ入力欄をアカウント作成フォームと統一
   UTF-8
========================================================= */

@media screen and (max-width: 767px) {

/* 登録済みのお客様：入力欄 */
#loginDefault fieldset.forward input[type="text"],
#loginDefault fieldset.forward input[type="email"],
#loginDefault fieldset.forward input[type="password"] {
  display: block !important;
  float: none !important;
  clear: both !important;

  width: 90% !important;
  max-width: 90% !important;
  height: 42px !important;
  box-sizing: border-box !important;

  /* 90%幅を中央配置 */
  margin: 0 auto 12px auto !important;
  padding: 8px 10px !important;

  background: #ffffff !important;
  border: 1px solid #d8c9aa !important;
  border-radius: 5px !important;

  font-size: 16px !important;
  color: #333333 !important;
  line-height: 1.4 !important;

  box-shadow: none !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

  /* 入力中 */
  #loginDefault fieldset.forward input[type="text"]:focus,
  #loginDefault fieldset.forward input[type="email"]:focus,
  #loginDefault fieldset.forward input[type="password"]:focus {
    border-color: #ec6700 !important;
    box-shadow: 0 0 0 2px rgba(236, 103, 0, 0.15) !important;
  }

  /* ラベルもアカウント作成側に合わせる */
  #loginDefault fieldset.forward label.inputLabel {
    display: block !important;
    float: none !important;
    clear: both !important;

    width: 100% !important;
    margin: 0 0 5px !important;
    padding: 0 !important;

    text-align: left !important;
    font-size: 14px !important;
    font-weight: bold !important;
    color: #5a3318 !important;
    line-height: 1.5 !important;
  }
}
/* =========================================================
   スマホ：ログイン画面 ラベルと入力欄の左位置をそろえる
   UTF-8
========================================================= */

@media screen and (max-width: 767px) {

  /* Eメールアドレス：／パスワード： */
  #loginDefault fieldset.forward label.inputLabel {
    display: block !important;
    float: none !important;
    clear: both !important;

    width: 90% !important;
    max-width: 90% !important;
    box-sizing: border-box !important;

    margin: 0 auto 6px auto !important;
    padding: 0 !important;

    text-align: left !important;
  }

  /* 入力欄 */
  #loginDefault fieldset.forward input[type="text"],
  #loginDefault fieldset.forward input[type="email"],
  #loginDefault fieldset.forward input[type="password"] {
    display: block !important;
    float: none !important;
    clear: both !important;

    width: 90% !important;
    max-width: 90% !important;
    box-sizing: border-box !important;

    margin: 0 auto 16px auto !important;
  }
}

/* =========================================================
   スマホ：マイページの黒い見出し帯をステップ1/3風に変更
   UTF-8
========================================================= */

@media screen and (max-width: 767px) {

  /* マイページの黒い帯見出し */
  #accountDefault h2,
  #accountDefault h3,
  #accountDefault .centerBoxHeading,
  #accountDefault .accountBoxHeading,
  #accountDefault .sectionHeading {
    display: block !important;
    width: 92% !important;
    box-sizing: border-box !important;

    margin: 28px auto 0 !important;
    padding: 14px 10px !important;

    background: #f7a12d !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;

    font-size: 20px !important;
    font-weight: bold !important;
    line-height: 1.4 !important;
    text-align: center !important;
  }

  /* 黒背景が残る場合の上書き */
  #accountDefault h2 *,
  #accountDefault h3 *,
  #accountDefault .centerBoxHeading *,
  #accountDefault .accountBoxHeading *,
  #accountDefault .sectionHeading * {
    color: #ffffff !important;
    background: transparent !important;
  }

  /* 見出し下の白い内容ブロック */
  #accountDefault .content,
  #accountDefault .accountBox,
  #accountDefault .centerBoxContents,
  #accountDefault .information {
    width: 92% !important;
    box-sizing: border-box !important;

    margin: 0 auto 28px !important;
    padding: 22px 18px !important;

    background: #fffdf2 !important;
    border: none !important;

    color: #3a2418 !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
  }
}
/* =========================================================
   スマホ：カート画面 商品行デザイン調整
   商品名拡大・画像にかからない・交互グレー削除・細線区切り
   UTF-8
========================================================= */

@media screen and (max-width: 767px) {

  /* カートテーブル全体 */
  #shoppingCartDefault #cartContentsDisplay {
    width: 90% !important;
    margin: 0 auto 24px !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    background: transparent !important;
  }

  /* 見出し行は非表示 */
  #shoppingCartDefault #cartContentsDisplay .tableHeading {
    display: none !important;
  }

  /* 商品ごとの背景色を統一：交互グレーを削除 */
  #shoppingCartDefault #cartContentsDisplay tr,
  #shoppingCartDefault #cartContentsDisplay tr.rowEven,
  #shoppingCartDefault #cartContentsDisplay tr.rowOdd,
  #shoppingCartDefault #cartContentsDisplay tr:nth-child(even),
  #shoppingCartDefault #cartContentsDisplay tr:nth-child(odd) {
    background: transparent !important;
  }

  /* 商品ごとに細い罫線で区切る */
  #shoppingCartDefault #cartContentsDisplay tr:not(.tableHeading) {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;

    margin: 0 !important;
    padding: 18px 0 20px !important;

    border-bottom: 1px solid #d8c9aa !important;
  }

  /* 商品セル */
  #shoppingCartDefault td.cartProductDisplay {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;

    padding: 0 !important;
    background: transparent !important;
    border: none !important;
  }

  /* 商品リンク全体 */
  #shoppingCartDefault td.cartProductDisplay > a {
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;

    width: 100% !important;
    box-sizing: border-box !important;

    text-decoration: none !important;
  }

  /* 左の商品画像 */
  #shoppingCartDefault .cartImage,
  #shoppingCartDefault .cartImage.back {
    display: block !important;
    float: none !important;
    flex: 0 0 120px !important;

    width: 120px !important;
    max-width: 120px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #shoppingCartDefault .cartImage img {
    display: block !important;
    width: 120px !important;
    max-width: 120px !important;
    height: auto !important;
  }

  /* 商品名：画像にかからないよう右側に固定 */
  #shoppingCartDefault .cartProdTitle {
    display: block !important;
    float: none !important;
    flex: 1 1 auto !important;

    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 2px 0 0 !important;

    color: #5a3318 !important;
    font-size: 17px !important;
    font-weight: bold !important;
    line-height: 1.45 !important;
    text-align: left !important;
    word-break: break-word !important;
  }

  #shoppingCartDefault .cartProdTitle .alert {
    display: inline !important;
    margin-left: 4px !important;
  }

  /* 数量・更新・価格・合計・削除を背景なしに */
  #shoppingCartDefault td.cartQuantity,
  #shoppingCartDefault td.cartQuantityUpdate,
  #shoppingCartDefault td.cartUnitDisplay,
  #shoppingCartDefault td.cartTotalDisplay,
  #shoppingCartDefault td.cartRemoveItemDisplay {
    background: transparent !important;
    border: none !important;
  }

  /* 数量欄 */
  #shoppingCartDefault td.cartQuantity {
    display: inline-block !important;
    width: 32% !important;
    box-sizing: border-box !important;
    padding: 14px 0 0 0 !important;
    vertical-align: middle !important;
  }

  #shoppingCartDefault td.cartQuantity input[type="text"] {
    width: 70px !important;
    height: 44px !important;
    box-sizing: border-box !important;

    border: 1px solid #d8c9aa !important;
    border-radius: 5px !important;
    background: #ffffff !important;

    font-size: 16px !important;
    text-align: center !important;
  }

  /* 更新ボタン */
  #shoppingCartDefault td.cartQuantityUpdate {
    display: inline-block !important;
    width: 22% !important;
    padding: 14px 0 0 !important;
    vertical-align: middle !important;
  }

  /* 価格・合計 */
  #shoppingCartDefault td.cartUnitDisplay,
  #shoppingCartDefault td.cartTotalDisplay {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;

    padding: 8px 0 0 !important;

    color: #3a2418 !important;
    font-size: 16px !important;
    text-align: right !important;
  }

  #shoppingCartDefault td.cartTotalDisplay {
    color: #cc0033 !important;
    /*font-weight: bold !important;*/
  }

  /* 削除アイコン */
  #shoppingCartDefault td.cartRemoveItemDisplay {
    display: block !important;
    width: 100% !important;
    padding: 6px 0 0 !important;
    text-align: right !important;
  }
}
/* =========================================================
   スマホ：三本線メニュー復活＋右側ボタン維持
   UTF-8
========================================================= */

@media screen and (max-width: 767px) {

  /* ナビ全体 */
  #navMainWrapper {
    position: relative !important;
    min-height: 50px !important;
    background: #ff9900 !important;
    overflow: visible !important;
  }

  /* 三本線メニュー：左側を専用領域にする */
  .header.Fixed {
    position: Fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;

    width: 100% !important;
    height: 58px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #ff9900 !important;
    pointer-events: auto !important;
  }

  .header.Fixed a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 55px !important;

    color: #ffffff !important;
    text-decoration: none !important;
    pointer-events: auto !important;
  }

  .header.Fixed i {
    display: block !important;
    color: #ffffff !important;
    line-height: 1 !important;
  }

  /* 右側のログイン・カート・レジボタン群 */
  #navMain {
    position: relative !important;
    z-index: 1 !important;

    width: auto !important;
    min-height: 56px !important;
    margin-left: 64px !important;
    padding: 0 8px 0 0 !important;
    box-sizing: border-box !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    background: #ff9900 !important;
    overflow: visible !important;
  }

  #navMain ul {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 6px !important;

    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
    background: transparent !important;
  }

  #navMain ul li {
    display: flex !important;
    align-items: center !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* ログイン・ログアウト・マイページ・カート・レジだけボタン化 */
  #navMain ul li a[href*="main_page=login"],
  #navMain ul li a[href*="main_page=logoff"],
  #navMain ul li a[href*="main_page=account"],
  #navMain ul li a[href*="main_page=shopping_cart"],
  #navMain ul li a[href*="main_page=checkout_shipping"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    height: 30px !important;
    min-width: 62px !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;

    background: #ffffff !important;
    color: #d7262d !important;
    border: 1px solid #ffffff !important;
    border-radius: 18px !important;

    font-size: 12px !important;
    font-weight: bold !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  /* ボタン内のFontAwesomeだけ非表示 */
  #navMain ul li a[href*="main_page=login"] i,
  #navMain ul li a[href*="main_page=logoff"] i,
  #navMain ul li a[href*="main_page=account"] i,
  #navMain ul li a[href*="main_page=shopping_cart"] i,
  #navMain ul li a[href*="main_page=checkout_shipping"] i {
    display: none !important;
  }

  #navMain ul li a[href*="main_page=login"]::before {
    content: "ログイン" !important;
  }

  #navMain ul li a[href*="main_page=logoff"]::before {
    content: "ログアウト" !important;
  }

  #navMain ul li a[href*="main_page=account"]::before {
    content: "マイページ" !important;
  }

  #navMain ul li a[href*="main_page=shopping_cart"]::before {
    content: "カート" !important;
  }

  #navMain ul li a[href*="main_page=checkout_shipping"]::before {
    content: "レジへ" !important;
  }
}

/* =========================================================
   スマホ：お届け先情報ページ 三本線クリック領域の補正
   UTF-8
========================================================= */

@media screen and (max-width: 767px) {

  body#checkoutshippingBody .header.Fixed {
    z-index: 1 !important;
    pointer-events: auto !important;
  }

  body#checkoutshippingBody .header.Fixed a {
    width: 64px !important;
    height: 56px !important;
    pointer-events: auto !important;
  }

  body#checkoutshippingBody .header.Fixed i {
    pointer-events: none !important;
  }

  body#checkoutshippingBody #navMain {
    margin-left: 64px !important;
    width: calc(100% - 64px) !important;
    padding-left: 0 !important;
  }
}
/* =========================================================
   スマホ：お支払い方法エリア幅調整
   使用ポイントなど上部エリアと左右位置をそろえる
   UTF-8
========================================================= */
@media screen and (max-width: 767px) {

  /* お支払い方法の外枠 */
  #checkoutPayment fieldset.payment {
    float: none !important;
    clear: both !important;
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 0 16px !important;
    padding: 0 !important;

    border: none !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    text-align: left !important;
  }

  /* 「お支払い方法」の見出し帯 */
  #checkoutPayment fieldset.payment legend {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 0 10px !important;
    padding: 8px 10px !important;

    box-sizing: border-box !important;
    text-align: center !important;
  }

  /* 説明文 */
  #checkoutPayment fieldset.payment p.important {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 0 10px !important;
    padding: 0 !important;

    box-sizing: border-box !important;
    text-align: left !important;
  }

  /* 各支払いカード本体 */
  #checkoutPayment fieldset.payment .payment-card {
    float: none !important;
    clear: both !important;
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 10px 0 16px !important;
    padding: 10px !important;

    box-sizing: border-box !important;
    overflow: hidden !important;
    text-align: left !important;
  }

  /* カード見出し */
  #checkoutPayment fieldset.payment .payment-card-head {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 0 10px !important;
    padding: 10px !important;

    box-sizing: border-box !important;
  }

  /* カード内テキストのはみ出し防止 */
  #checkoutPayment fieldset.payment .payment-card p,
  #checkoutPayment fieldset.payment .payment-card div,
  #checkoutPayment fieldset.payment .payment-card span,
  #checkoutPayment fieldset.payment .payment-card label,
  #checkoutPayment fieldset.payment .payment-card li {
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }

  /* 画像のはみ出し防止 */
  #checkoutPayment fieldset.payment .payment-card img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
  }

  /* 入力欄のはみ出し防止 */
  #checkoutPayment fieldset.payment .payment-card input,
  #checkoutPayment fieldset.payment .payment-card select {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}