/* ルール */

/* ・yenクラスはそのままでは使わず、他クラスと組み合わせて使うこと */
/* ・taxinクラスはそのままでは使わず、他クラスと組み合わせて使うこと */
/* ・openクラスは動的に付与されるクラス */
/* ・noScrollクラスは動的に付与されるクラス */
/* ・sidebarクラスは動的に付与されるクラス */
/* ・pc、mobileクラスは他クラスと組み合わせて使用し、pcはスマホで非表示、mobileはpcで非表示にすること */

/* 共通部分 */
* {
  min-width: 0;
  min-height: 0;
}

body {
  font-family: Georgia, "Times New Roman", Times, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro',
               'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  background: #fff;
  color: #000;
}

h1 {
  font-size: 200%;
}
h2 {
  font-size: 150%;
}
h3 {
  font-size: 120%;
}
h4 {
  font-size: 100%;
}
h5 {
  font-size: 80%;
}
h6 {
  font-size: 70%;
}

img,
video {
  width: 100%;
  height: auto;
}

main {
  min-height: 100vh;
}

pre {
  white-space: pre-wrap;
  word-break: break-all;
}

.bold {
  font-weight: bold;
}

.txtCenter {
  text-align: center;
}

.nodisplay {
  display: none;
}

.min-device {
  display: none;
}

.noScroll {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.noScroll-overlay {
  display: none;
  opacity: 1;
  background-color: rgba(0,0,0,.8);
  position: absolute;
  will-change: opacity;
  height: 100%;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  z-index: 2;
}

.wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.all-container {
  margin: 20px auto 0;
  padding-bottom: 500px;
  /* margin: 20px 5% 0; */
  /* margin: 20px 14% 0; */
  width: 1030px;
}

#err_div,
#login_err_div,
#msg_div {
  color: rgb(255, 0, 0);
  background: #edf;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.contents-title {
  margin: 20px auto;
}

.contents-title h2 {
  text-align: center;
}

.general-title {
  margin-top: 50px;
}

.general-title h2 {
  width: 90%;
  margin: 0 auto 30px;
  padding-bottom: 20px;
  border-bottom: solid 3px #E4DAD2;
}

.specialty-title {
  padding-bottom: 1px;
  border-bottom: solid 1px #000;
}

.specialty-title h3 {
  font-size: 1em;
}

.article-title {
  padding-bottom: 1px;
  border-bottom: dotted 2px #000;
}

.article-title h4 {
  font-weight: bold;
}

.information-title {
  border-bottom: 2px solid #E4DAD2;
  margin-bottom: 10px;
}

.information-title h3 {
  font-size: 1em;
  font-weight: bold;
}

.cartBtn {
  text-align: center;
  background: #f4d078;
  background: linear-gradient(to bottom, #f7dfa5, #f0c14b);
  background: -webkit-linear-gradient(to bottom, #f7dfa5, #f0c14b);
  border-style: solid;
  border-width: 1px;
  border-color: #a99734 #9c7e31 #846a29;
  border-radius: 3px;
}

.cartBtn:hover {
  background: #f2c861;
  background: linear-gradient(to bottom, #f5d78e, #eeb933);
  background: -webkit-linear-gradient(to bottom, #f5d78e, #eeb933);
}

.optionBtn {
  text-align: center;
  background: #eff1f3;
  background: linear-gradient(to bottom, #f7f8fa, #e7e9ec);
  background: -webkit-linear-gradient(to bottom, #f7f8fa, #e7e9ec);
  border-style: solid;
  border-width: 1px;
  border-color: #ADB1B8 #A2A6AC #8D9096;
  border-radius: 3px;
}

.optionBtn:hover {
  background: #e0e3e9;
  background: linear-gradient(to bottom,#e7eaf0,#d9dce1);
  background: -webkit-linear-gradient(to bottom,#e7eaf0,#d9dce1);
}

.cartBtn a,
.cartBtn p,
input[type='submit'].cartBtn,
.cartBtn input[type='button'],
button.cartBtn,
.optionBtn a,
.optionBtn p,
input[type='submit'].optionBtn {
  padding: 6px 10px;
  display: block;
}

.seeMore {
  overflow: hidden;
  position: relative;
}

.seeMore.open {
  max-height: 100%;
  overflow: visible;
  position: inherit;
}

.moreBtn {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 35%);
  padding: 20px 0;
}

.seeMore.open .moreBtn {
  display: none;
}

.closeBtn {
  display: none;
}

.seeMore.open .closeBtn {
  display: block;
}

.moreBtn a,
.closeBtn a {
  color: #0066c0;
}

.moreBtn a:hover,
.closeBtn a:hover {
  text-decoration: underline;
}

form p > span {
  margin-left: 1%;
  background:rgb(255, 0, 0);
  color: #fff;
  font-weight: lighter;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="password"],
form textarea {
  padding: 10px;
  border: solid 1px #ddd;
  border-radius: 4px;
  width: 100%;
  transition: all 100ms;
}

form textarea {
  height: 300px
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form input[type="password"]:focus,
textarea:focus {
  border-color: #e77600;
  box-shadow: 0 0 3px 2px rgba(228,121,17,.5);
}

form .separateForm2 input {
  width: 45%;
}

form .separateForm2 input:first-of-type {
  margin-right: 10px;
}
form .separateForm2 input:last-of-type {
  margin-left: 10px;
}

form .separateForm3 input {
  width: 30%;
}

form .separateForm3 input:nth-of-type(1) {
  margin-right: 10px;
}
form .separateForm3 input:nth-of-type(2) {
  margin: 0 10px
}
form .separateForm3 input:nth-of-type(3) {
  margin-left: 10px;
}

.linkArea {
  margin-top: 100px;
  display: flex;
  flex-direction: row-reverse;
}

.linkArea .linkNext,
.linkArea .linkBack {
  width: 40%;
  margin: 0 auto;
}

.linkArea .linkNext input[type="submit"] {
  width: 100%;
  display: block;
  padding: 6px 10px;
}

.customer-form {
  margin-top: 50px;
}

form .customer-form > div {
  margin-bottom: 20px;
}

form .customer-form > div > p {
  font-weight: bold;
  margin-bottom: 10px;
}

form .customer-form select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

#user-form label.error {
  display: block;
  margin-top: 10px;
  color:rgb(255, 0, 0);
}

.customer-confirmed > p {
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 80px;
  border-bottom: solid 1px #ddd;
}

.customerConfirmed-item {
  margin-bottom: 50px;
}

.customerConfirmed-item p:first-of-type {
  font-weight: bold;
  margin-bottom: 10px;
}

.customerConfirmed-item.mobile {
  display: none;
}

.customerConfirmed-item select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

.customerConfirmed-linkArea {
  display: flex;
  flex-direction: row-reverse;
}

.customerConfirmed-linkNext,
.customerConfirmed-linkBack {
  margin: 0 auto;
  width: 40%;
}

.order-infoTable table {
  width: 100%;
  margin: 0 auto;
  border: solid 1px #ddd;
}

.order-infoTable table caption {
  background: #E4DAD2;
  padding: 5px;
  border: solid 1px #ddd;
  text-align: center;
}

.order-infoTable table th {
  background: #F8F5F3;
  border: solid 1px #ddd;
  padding: 3px;
  font-weight: normal;
}

.order-infoTable table td {
  border: solid 1px #ddd;
  padding: 3px;
  vertical-align: middle;
}

.order-infoTable table td.order-infoTable__image {
  text-align: center;
  border: none;
}

.order-infoTable table td.order-infoTable__image img {
  margin: 5px;
  width: 50px;
}

.order-infoTable table td.order-infoTable__itemName {
  border: none;
}

.order-infoTable table td.order-infoTable__itemName a {
  color: #b29148;
}

.order-infoTable table td.order-infoTable__itemName a:hover {
  color: #ebd088;
}

.order-infoTable__unitPrice {
  width: 17%;
}

.order-infoTable__point {
  width: 10%;
  text-align: center;
}

.order-infoTable__itemNumber {
  width: 8%;
  text-align: center;
}

.order-infoTable__itemNumber input {
  width: 80%;
  border: solid 1px #ddd;
  border-radius: 4px;
}

.order-infoTable__subtotal {
  width: 13%;
  text-align: right;
}

.order-infoTable__delete {
  text-align: center;
}

/* ここから試験終わり次第消去〜 */

.order-infoTable__option {
  width: 30%;
}

ul.table-optionList {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}

ul.table-optionList li {
  margin: 1px 5px;
}

.order-infoTable__message {
  width: 25%;
}

.order-infoTable__package {
  width: 10%;
}

.order-infoTable__itemNumber02 {
  width: 5%;
  text-align: center;
}

.order-infoTable__itemNumber02 input {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  border: solid 1px;
  border-radius: 2px;
}

.order-infoTable__point02 {
  width: 7%;
}

/* ここまで */

.order-subInfo__table.mobile {
  display: none;
}

.order-subInfo__table table {
  width: 100%;
}

.order-subInfo__table caption {
  background: #E4DAD2;
  padding: 5px;
  border: solid 1px #ddd;
  text-align: center;
}

.order-subInfo__table th {
  border: solid 1px #ddd;
  background: #F8F5F3;
  font-weight: normal;
  text-align: right;
  width: 40%;
  padding: 5px;
}

.order-subInfo__table td {
  border: solid 1px #ddd;
  text-align: right;
  padding: 5px;
}

.order-subInfo__table .b-bottom {
  border-bottom: solid 3px #ddd;
}

.contents-display select {
  border: solid 1px #000;
  border-radius: 4px;
  padding: 2px 5px;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

.star-rating {
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
  color: #ccc;
}

.star-rating::before,
.star-rating::after {
  content: '★★★★★'
}

.star-rating::after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #ffcf32;
}

.star-rating[data-rate='5']::after {
  width: 100%;
}
.star-rating[data-rate='4.5']::after {
  width: 90%;
}
.star-rating[data-rate='4']::after {
  width: 80%;
}
.star-rating[data-rate='3.5']::after {
  width: 70%;
}
.star-rating[data-rate='3']::after {
  width: 60%;
}
.star-rating[data-rate='2.5']::after {
  width: 50%;
}
.star-rating[data-rate='2']::after {
  width: 40%;
}
.star-rating[data-rate='1.5']::after {
  width: 30%;
}
.star-rating[data-rate='1']::after {
  width: 20%;
}
.star-rating[data-rate='0.5']::after {
  width: 10%;
}
.star-rating[data-rate='0']::after {
  width: 0%;
}

/* これ以降は個別部分 */
/* ---------------------------------------------------------------------------------------------------------------------------- */

/* グローバルナビ */
#global-nav {
  position: absolute;
  top: 0;
  width: 30%;
  height: 100vh;
  left: -30%;
  background: #fff;
  transition: visibility 0s ease 0s,-webkit-transform 666ms ease;
  transition: transform 666ms ease,visibility 0s ease 0s;
  transition: transform 666ms ease,visibility 0s ease 0s,-webkit-transform 666ms ease;
  z-index: 3;
  overflow: scroll;
}

#global-nav.open {
  transform: translateX(100%);
}

.globalNav-wrap {
  position: relative;
}

.globalNav-close {
  position: absolute;
  top: 0;
  right: 5%;
  cursor: pointer;
  font-size: 4em;
  font-weight: 100;
}

.globalNav-contents {
  padding-top: 20%;
}

.globalNav-topLink {
  padding-bottom: 10px;
  border-bottom: solid 1px #d5dbdb
}

.globalNav-topLink a {
  padding: 15px;
  display: block;
}

.globalNav-topLink a:hover {
  background-color: #eaeded;
}

.globalNav-category {
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: solid 1px #d5dbdb
}

.globalNav-customer {
  margin-top: 20px;
}

.globalNav-category > p,
.globalNav-customer > p {
  padding: 10px 15px 5px;
  font-size: 18px;
  font-weight: 900;
  line-height: 24px;
}

.globalNav-category ul,
.globalNav-customer ul {
  margin-top: 10px;
}

.globalNav-category ul li a,
.globalNav-customer ul li a {
  padding: 10px;
  display: block;
}

.globalNav-category ul li a:hover,
.globalNav-customer ul li a:hover {
  background-color: #eaeded;
}

.globalNav-category ul li p,
.globalNav-customer ul li p {
  width: 95%;
  display: inline-block;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* サーチ */
#search {
  position: absolute;
  top: 0;
  width: 30%;
  height: 100vh;
  left: -30%;
  background: #fff;
  transition: visibility 0s ease 0s,-webkit-transform 666ms ease;
  transition: transform 666ms ease,visibility 0s ease 0s;
  transition: transform 666ms ease,visibility 0s ease 0s,-webkit-transform 666ms ease;
  z-index: 3;
  overflow: scroll;
}

#search.open {
  transform: translateX(100%);
}

.search-wrap {
  position: relative;
}

.search-close {
  position: absolute;
  top: 0;
  right: 5%;
  cursor: pointer;
  font-size: 4em;
  font-weight: 100;
}

.search-contents {
  padding-top: 20%;
  margin: 0 5%;
}

.search-contents > form {
  margin: 0 6px;
  padding: 10px 4px 10px 3px;
  height: 60px;
}

.search-form__container {
  display: flex;
}

.search-form__container:focus-within {
  box-shadow: 0 0 0 2px #f90, 0 0 0 3px rgba(255, 153, 0, .5);
  border-radius: 4px;
}

.search-area {
  border: solid 1px #ddd;
  border-radius: 4px 0 0 4px;
  width: 100%;
}

.search-area input {
  padding: 10px;
  width: 100%;
  display: block;
}

.search-button {
  padding: 10px 20px;
  position: relative;
  background: -webkit-linear-gradient(top,#fcbb6a,#fcbb6a);
  background: linear-gradient(to bottom,#fcbb6a,#fcbb6a);
  background: #fcbb6a;
  border-radius: 0 4px 4px 0;
}

.search-button:hover {
  background: #f3a847;
}

.search-button button {
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* header */
noscript p {
  margin-top: 350px;
  text-align: center;
  font-size: 3em;
  font-weight: bold;
  word-wrap: break-word;
  color:rgb(255, 0, 0);
  width: 100%;
  height: 100000px;
}

.header-top {
  width: 100%;
  height: 100px;
  background: #000;
}

.header-top__inner {
  width: 1030px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.header-top__left {
  position: absolute;
  width: auto;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

#nav-toggle {
  width: 100%;
  height: 15px;
  cursor: pointer;
}

.nav-button {
  width: 18px;
  height: 2px;
  position: relative;
}

.nav-button span {
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
}

.nav-button span:nth-child(1) {
  top: 0;
}
.nav-button span:nth-child(2) {
  top: 6px;
}
.nav-button span:nth-child(3) {
  top: 12px;
}

.header-top__middleLeft {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 10%;
}

.header-top__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.header-top__center a img {
  width: 100px;
  height: 50px;
}

.header-top__right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.header-top__inner #cart_num {
  position: absolute;
  top: 35%;
  right: -2%;
  transform: translateY(-35%);
  -webkit-transform: translateY(-35%);
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  line-height: 20px;
}

.header-top__middleRight {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.header-icon {
  color: #fff;
}

.header-bottom {
  font-family: 'Times New Roman';
}

.header-bottom.pc {
  height: auto;
  width: 1030px;
  margin: 20px auto 0;
}

.header-bottom__submenu {
  display: flex;
  /* background: url(../img/header/header-list_image9.jpg) left top repeat-x; */
  justify-content: center;
  align-items: center;
  width: 100%;
  white-space: nowrap;
  border-top: 0px solid #BA9E6F;
}

.header-bottom li {
  margin: 0 1%;
  width: 100%;
}

.header-bottom a {
  background: #f0eee6;
  color: #92722d;
  display: block;
  text-align: center;
}

.header-bottom a p {
  padding: 5% 0;
}

.header-bottom a:hover {
  color: #ebd088;
}

.header-bottom.mobile {
  display: none;
}

/* 20210623　中山追加　ヘッダーリンクpadding付与 */

.header-mypage__link a,
.header-cart__link a  {
  padding:10px;
}


/* 20210623　中山追加　ヘッダーリンクpadding付与 */

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* サイドバー */
.sidebar-contents {
  max-width: 200px;
  margin-right: 5%;
}

.sidebar-contents img {
  margin-bottom: 5px;
}

.sidebar-contents a:hover img {
  opacity: .70;
}

.sidebar-registration__top,
.sidebar-categoryList,
.sidebar-clientsList,
.sidebar-pickup,
.sidebar-media {
  padding-bottom: 10px;
}

.sidebar-registration__follow ul {
  display: flex;
  justify-content: center;
}

.sidebar-registration__follow ul li {
  padding: 0 10px;
}

.sidebar-registration__follow ul li a {
  display: block;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* レビュー */
.review {
  margin-top: 50px;
}

.review h3 {
  margin-bottom: 20px;
}

.review-contents {
  margin: 0 auto;
  width: 50%;
}

.review-user {
  margin-bottom: 4px;
}

.review-user__contents {
  display: flex;
}

.review-user__icon {
  color: #000;
}

.review-user__image {
  border: 2px solid #fff;
  border-radius: 34px;
  padding-right: 9px;
}

.review-title a:hover p {
  color: #C7511F;
  text-decoration: underline;
}

.review-title p {
  color: #111;
  font-weight: 900;
}

.review-rate,
.review-date,
.review-productsType {
  margin-bottom: 4px;
}

.review-title {
  margin-bottom: 10px;
}

.review-date p,
.review-productsType p {
  color: #565959;
}

.review-explain {
  max-height: 300px;
  margin-bottom: 20px;
}

.review-explain__textArea p {
  line-height: 1.2em;
}

.review-image img {
  width: auto;
  height: 88px;
  border-radius: 5px;
}

.review-bottomLink {
  width: 50%;
  margin: 50px auto 0;
  border-bottom: solid 1px #aaa;
}

.review-link__all {
  text-align: center;
  border-top: solid 1px #aaa;
  border-bottom: solid 1px #aaa;
}

.review-link__all a,
.review-link__write a {
  display: block;
  padding: 20px 0;
}

.review-link__all p,
.review-link__write p {
  display: inline;
}

.review-link__all i,
.review-link__write i {
  vertical-align: text-bottom;
  padding-left: 10%;
}

.review-link__write {
  margin: 20px 0;
  padding: 0;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* レコメンド */
.recommend-list {
  margin-top: 50px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.recommend-slider__container {
  margin-top: 20px;
  text-align: center;
}

.rSlider-item {
  text-align: start;
  width: 160px!important;
  color: #007185;
}

.rSlider-image,
.rSlider-title,
.rSlider-rate {
  margin-bottom: 4px;
}

.rSlider-image img {
  max-width: 160px;
  max-height: 160px;
}

.rSlider-title a:hover,
.rSlider-rate a span:hover {
  color: #C7511F;
  text-decoration: underline;
}

.rSlider-price {
  color: #B12704;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 購入エリア */
.purchase-area {
  position: fixed;
  width: 160px;
  bottom: 10%;
  right: 0;
  background: #fff;
  z-index: 1;
  border: 1px solid #ccc;
  box-shadow: 0 0 9px #ccc;
}

.purchase-area__productInfo {
  padding: 0 6px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
}

.purchase-area__productInfo .purchase-area__name {
  padding: 12px 0 4px;
}

.purchase-area__productInfo .purchase-area__price {
  text-align: right;
}

.purchase-area__productInfo .purchase-area__price p {
  padding-bottom: 1%;
}

/* .purchase-area__productInfo .purchase-area__price p:first-of-type {
  color: #bf0000;
  font-size: 20px;
}

.purchase-area__productInfo .purchase-area__price p:last-of-type {
  color: #bf0000;
} */

.purchase-area__main {
  padding: 4px 6px 0;
}

.purchase-area__cart {
  margin: 4px 0;
  background: #f4d078;
  background: linear-gradient(to bottom,#f7dfa5,#f0c14b);
  background: -webkit-linear-gradient(top,#f7dfa5,#f0c14b);
  border-color: #a88734 #9c7e31 #846a29;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
}

.purchase-area__cart a,
.purchase-area__buyNow a {
  display: block;
  position: relative;
  text-align: center;
  height: 35px;
}

.purchase-area__cart a p,
.purchase-area__buyNow a p {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.purchase-area__cart:hover {
  background: #f2c861;
  background: linear-gradient(to bottom, #f5d78e, #eeb933);
  background: -webkit-linear-gradient(to bottom, #f5d78e, #eeb933);
}

.purchase-area__buyNow {
  margin: 4px 0;
  background: #f2ad58;
  background: linear-gradient(to bottom,#f6c88f,#ed9220);
  background: -webkit-linear-gradient(top,#f6c88f,#ed9220);
  border-color: #ca7c1b #be751a #a56616;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
}

.purchase-area__buyNow:hover {
  background: #eba145;
  background: linear-gradient(to bottom,#f4bc77,#e18512);
  background: -webkit-linear-gradient(top,#f4bc77,#e18512);
}

.purchase-area__favorite {
  margin: 4px 0;
}

.purchase-area__stopSale {
  padding: 0 6px;
  margin: 10px 0;
}

.purchase-area__stopSale p {
  border: 1px dotted #FF3300;
  color: #FF3300;
  padding: 0 5px;
  text-align: center;
}

.purchase-area__restock {
  font-size: 0.8em;
}


/*セール価格および会員価格表示対応　 20210615 中山追加[START] */
.priceDisp {
  font-size: 14px;
  background: transparent;
  color:rgb(0, 0, 0);
}

.saleDisp {
  color:rgb(255, 0, 0)!important;
}

.purchase-area__bottom {
  margin-bottom:6px;
}

.purchase-area__font_color {
  color: #bf0000;
}

.purchase-area__font_size14 {
  font-size: 14px;
}

.purchase-area__font_size20 {
  font-size: 20px;
}

.purchase-area__productInfo .purchase-area__font p {
  color: #bf0000;
  font-size: 20px;
}

/* .purchase-area__productInfo .purchase-area__price p:last-of-type {
  color: #bf0000;
  font-size: 20px;
} */
/*セール価格および会員価格表示対応　 20210615 中山追加[END] */

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* slick */
.slick-arrow {
  position: absolute;
  top: 50%;
  cursor: pointer;
}

.prev-arrow {
  left: 0;
  z-index: 1;
}

.next-arrow {
  right: 0;
}

.slick-dots li button:hover:before {
  opacity: 1;
  text-shadow: 0 0 10px #ffa724;
  color: #ffa724;
}

.slick-dots li.slick-active button:hover:before {
  color: #000;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* トップページ */
.home-banner__container {
  text-align: center;
}

.home-banner__container .row div,
.home-macaron__container .row div,
.home-chocolat__container .row div,
.home-bItem__container .row div {
  margin-bottom: 5%;
}

.home-bItem__container a {
  display: block;
  margin: 5% auto 0;
  width: 100px;
  text-align: center;
}

.home-bItem__container a p {
  border: solid 1px #000;
  padding: 10px;
}

.home p,
.home a {
  word-break: break-all;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* ログイン */
.signin {
  margin-top: 30px;
}

.signin-campaign__present {
  margin-top: 30px;
}

.signin-campaign__present p {
  margin-bottom: 10px;
  text-align: center;
}

.signin-campaign__present p span {
  font-size: 1.2em;
  color: rgb(255, 0, 0);
}

.signin-main {
  margin-top: 30px;
}

.signin-main__container {
  display: flex;
}

.signin-form {
  width: 100%;
  margin: 0 5% 0 auto;
}

.signin-unregistered {
  width: 100%;
  margin: 0 auto 0 5%;
}

.signin-form__mail,
.signin-form__next,
.signin-form__keep {
  margin: 20px 0 30px 0;
}

.signin-form__mail p,
.signin-form__pass p {
  font-weight: bold;
  margin-bottom: 10px;
}

.signin-form__mail input,
.signin-form__pass input {
  padding: 10px;
  border: solid 1px #ddd;
  border-radius: 4px;
  width: 100%;
  transition: all 100ms;
}

.signin-form__mail input:focus,
.signin-form__pass input:focus {
  border-color: #e77600;
  box-shadow: 0 0 3px 2px rgba(228,121,17,.5);
}

.signin-form__pass {
  margin: 20px 0 30px 0;
  position: relative;
}

.signin-form__pass a {
  position: absolute;
  top: 0;
  right: 0;
  color: #007185;
}

.signin-form__pass a:hover {
  color: #C7511F;
  text-decoration: underline;
}

.signin-form__next input[type="submit"] {
  width: 100%;
}

.signin-form__keep a {
  margin-left: 5%;
  color: #007185;
}

.signin-form__keep a:hover {
  color: #C7511F;
  text-decoration: underline;
}

.signin-unregistered__purchase,
.signin-unregistered__registration {
  margin: 10% 0;
}

.signin-unregistered__purchase a,
.signin-unregistered__registration a {
  font-weight: bold;
}

.signin-unregistered__agreement p a {
  color: #007185;
}

.signin-unregistered__agreement p a:hover {
  color: #C7511F;
  text-decoration: underline;
}

.signin-keep_description {
  display: none;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 会員登録 */
.registration {
  margin-top: 100px;
}

.customer-postal .separateForm2 input:first-of-type {
  width: 20%;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 会員登録確認 */
.registration-confirmed {
  margin-top: 100px;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 会員登録完了 */
.registration-done {
  margin-top: 50px;
}

.rDone-container {
  width: 90%;
  margin: 0 auto;
}

.rDone-service ul {
  padding-left: 15px;
}

.rDone-service p {
  margin-top: 20px;
}

.rDone-link {
  margin: 100px auto 0;
  width: 50%;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 全商品 */
.products-item__list {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 10%;
}

.products-item {
  transition: all .1s ease-in-out;
  padding: 2%;
  margin-bottom: 5%;
}

.products-item:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.products-item__image {
  text-align: center;
}

.products-item__image img {
  padding: 0 .9em .9em .9em;
  max-width: 100%;
  width: auto;
  transition: all .1s ease-in-out;
}

.products-item:hover img {
  transform: scale(1.05);
}

.products-item h2 {
  margin: 6px 0;
  font-size: 16px;
  overflow: hidden;
  overflow-wrap: break-word;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.products-item__price p {
  font-size: 24px;
  line-height: 1.4em;
}

.products-item__price .yen {
  font-size: .5em;
  bottom: .7em;
  position: relative;
}

.products-item__price .taxin {
  font-size: 13px;
  color: #555;
  font-weight: 400;
}

.products-item .cartBtn p {
  width: 100%;
}

.pager a {
  padding: 8px 12px 7px 13px;
  margin: 0 5px;
  border-radius: 3px;
  box-shadow: 0 1px 0 rgb(255 255 255 / 60%) inset;
  background: #eff1f3;
  background: -webkit-linear-gradient(top,#f7f8fa,#e7e9ec);
  background: linear-gradient(to bottom,#f7f8fa,#e7e9ec);
  border: 1px solid #6c6e73;
  border-color: #adb1b8 #a2a6ac #8d9096;
}

.pager a:hover {
  background: #e0e3e9;
  background: linear-gradient(to bottom,#e7eaf0,#d9dce1);
  background: -webkit-linear-gradient(to bottom,#e7eaf0,#d9dce1);
}

.pagerActive {
  font-weight: 700;
  padding: 8px 12px 7px 13px;
  margin: 0 5px;
  border-radius: 3px;
  box-shadow: 0 1px 0 rgb(255 255 255 / 60%) inset;
  background-color: #fff;
  color: #c45500;
  border: 1px solid #e77600;
}

#notice-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: solid 1px #555;
  background: #555;
  color: #fff;
  opacity: 0.8;
  border-radius: 3px;
}

.notice-modal__inner {
  padding: 10px;
  width: 400px;
  height: 200px;
  display: flex;
  position: relative;
}

.notice-modal__inner button {
  position: absolute;
  top: 0;
  right: 0;
}

.notice-modal__inner p {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 商品詳細 */
.product-detail.sidebar {
  display: flex;
}

.product-detail.sidebar .product-detail__contents {
  width: 100%;
}

.pDetail-top {
  display: flex;
}

.pDetail-slider__container,
.pDetail-info {
  width: 50%;
}

.pDetail-slider img {
  margin: 0 auto;
  /* width: auto; */
  max-width: 100%;
}

.pDetail-slider__container {
  margin-right: 10px;
}

.pDetail-info {
  margin-left: 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pDetail-info__name h3 {
  font-size: 27px;
  font-weight: 300;
  line-height: 1.333;
}

.pDetail-info__price {
  margin: 20px 0;
  font-size: 20px;
  text-align: center;
}

.pDetail-info__price span.pDetail-info__price-dOption {
  display: block;
  margin-top: 3px;
  font-size: 14px;
}

.pDetail-info__deliveryDay {
  margin-left: 10%;
  font-weight: bold;
}

.pDetail-info__deliveryCaution {
  margin-top: 30px;
  color:rgb(255, 0, 0);
}

.pDetail-info__deliveryCaution::before {
  content: '';
}

.pDetail-cancel,
.pDetail-info__variation,
.pDetail-number,
.pDetail-option,
.pDetail-message__option,
.pDetail-package {
  margin-top: 50px;
}

.pDetail-cancel__unable {
  margin-bottom: 30px;
}

.pDetail-cancel__unable > p {
  font-weight: bold;
  line-height: 1.5em;
}

.pDetail-info__variation select,
.pDetail-cancel__unable select {
  width: 100%;
  margin: 10px auto 0;
  padding: 10px 5px;
  display: block;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

.pDetail-info__variation select::-ms-expand {
  display: block;
}

.pDetail-info__stopSale p {
  border: 1px dotted #FF3300;
  color: #FF3300;
  padding: 0 5px;
  text-align: center;
}

.pDetail-number__area input {
  padding: 11px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 18px;
  width: auto;
  vertical-align: middle;
  /* デフォルトのスピナーを消す */
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.pDetail-number__area input.pNumber-counter1 {
  width: 30%;
}

.pNumber-btn {
  -ms-user-select: none;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.pDetail-number__area input[type="button"] {
  cursor: pointer;
}

.pDetail-itemStock {
  margin-top: 10px;
  font-weight: bold;
}

.pDetail-option {
  margin-top: 50px;
}

.pDetail-option__area {
  margin-top: 10px;
}

.pDetail-option__area > span {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.pDetail-option__area input[type="checkbox"] {
  display: none;
}

.pDetail-option__label {
  margin-right: 10px;
  padding: 5px;
  border: 1px solid #000;
  width: 100%;
  display: inline-block;
  border-radius: 3px;
  /* 検証用 */
  word-break: break-all;
}

.pDetail-option__area input[type="checkbox"]:checked + .pDetail-option__label {
  background: #31A9EE;
  color: #fff;
}

.pDetail-option__area span select {
  width: 15%;
  margin-left: 10px;
  padding: 3px;
  vertical-align: top;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

.pDetail-message__option input[type='text'] {
  margin-bottom: 5px;
}

.msgplate_err {
  font-size: 0.9em;
  margin-top: 5px;
  color: rgb(255, 0, 0);
  font-weight: bold;
  margin-bottom: 5px;
}

.pDetail-package__item {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}

.pDetail-package__item > label {
  width: 100%;
}

.pDetail-package__item > select {
  width: 15%;
  margin-left: 10px;
  padding: 3px;
  vertical-align: inherit;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

.select_err {
  margin-top: 5px;
  color: rgb(255, 0, 0);
  font-weight: bold;
}

.pDetail-main {
  margin: 50px auto 0;
  text-align: center;
  width: 680px;
}

.pDetail-main__salesDay p {
  margin-bottom: 10px;
}

.pDetail-main__line {
  margin-top: 50px;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}

.pDetail-main__lineTitle {
  font-weight: bold;
  font-size: 200%;
  padding-bottom: 10px;
  border-bottom: 1px dotted;
  width: 80%;
  margin: 0 auto;
}

.pDetail-main__lineText {
  font-size: 130%;
  margin: 14px auto 18px;
  width: 80%;
  text-align: left;
}

.pDetail-main__line a img {
  width: 25%;
  height: auto;
}

.pDetail-main__imageArea {
  margin-top: 50px;
}

.pDetail-main__imageArea img,
.pDetail-main__cautionArea img {
  margin-bottom: 20px;
}

.pDetail-main__spec table {
  margin: 0 auto;
  width: 80%;
  font-size: 14px;
}

.pDetail-main__spec table th {
  width: 30%;
  font-weight: bold;
  text-align: center;
  /* color: #CEB899;
  background: #452b2b; */
  background: #fff;
  color: #000;
  border-left:1px solid #ccc;
  border-right:1px solid #ccc;
  border-bottom:1px solid #ccc;
  padding: 15px 10px;
}

.pDetail-main__spec table tr:first-of-type > th {
  text-align: center;
  /* background: #301800;
  color: #EEEADD; */
  background: #fff;
  color: #000;
  border:1px solid #ccc;
  width: 100%;
  padding: 15px;
  font-size: 20px;
}

.pDetail-main__spec td {
  width: auto;
  font-weight: lighter;
  padding: 15px 10px;
  text-align: left;
  color: #CEB899;
  background: #4c322c;
  background: #fff;
  color: #000;
  border-right:1px solid #ccc;
  border-bottom:1px solid #ccc;
}

.lp_form {
  word-break: break-all;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* spシーズナブル */
.spSeason-item {
  margin-bottom: 20px;
}

.spSeason-item__top {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.spSeason-itemTop__box {
  padding: 10px;
  width: 100%;
}

.spSeason-item__main {
  margin-top: 10px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  border-bottom: 5px solid #d5dbdb;
  /* align-items: center; */
}

.spSeason-itemMain__left,
.spSeason-itemMain__right {
  width: 50%;
}

.spSeason-itemMain__left {
  display: flex;
  align-items: center;
}

.spSeason-slider img {
  margin: 0 auto;
  width: 80%;
  /* height: fit-content; */
}

.spSeason-itemMain__right {
  padding-left: 25px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.spSeason-item__title,
.spSeason-item__price {
  margin-bottom: 10px;
}

.spSeason-item__title a {
  display: block;
}

.spSeason-item__title a:hover {
  color: #c45500;
}

.spSeason-item__title h3 {
  font-size: 27px;
  font-weight: 300;
  line-height: 1.333;
}

.spSeason-item__price {
  font-size: 30px;
}

.spSeason-item__price .yen {
  font-size: .5em;
  bottom: .7em;
  position: relative;
}

.spSeason-item__price .taxin {
  font-size: 13px;
  color: #555;
  font-weight: 400;
}

.spSeason-item__explain {
  margin-bottom: 20px;
  max-height: 90px;
}

.spSeason-item__explain ul li {
  list-style-type: disc;
  font-size: 14px;
  margin-bottom: 5px;
  color: #555;
}

.spSeason-item__btnArea {
  margin: 20px 0;
  display: flex;
  justify-content: flex-start;
}

.spSeason-item.cartBtn {
  min-width: 200px;
  font-size: 18px;
  margin-right: 10px;
  cursor: pointer;
}

.spSeason-item.optionBtn {
  font-size: 18px;
  min-width: 200px;
}

.spSeason-item__disable p {
  color: #C40000;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* カート */
.cart-formOfTop input[type='submit'][value='カートを空にする'],
.cart-top__backLink {
  margin-bottom: 10px;
  width: 40%;
}

.cart {
  margin-top: 20px;
}

.cart-contents {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
}

.cart-itemList.pc {
  margin-right: 2%;
  border: solid 3px #ccc;
  width: 100%;
  height: 100%;
  padding: 20px 10px 15px;
}

.cart-itemList.mobile {
  display: none;
}

.cart-itemList-top {
  width: 100%;
}

.cart-itemList-top h3 {
  float: left;
  overflow: visible;
  margin-right: 2%;
  font-weight: 400;
  font-size: 25px;
  line-height: 36px;
}

.cart-itemList-top p {
  margin-right: 0;
  float: right;
  color: #565959;
  font-size: 8px;
  line-height: 12px;
}

.cart-itemList-main {
  margin-top: 5%;
}

.cart-itemList__headline {
  font-size: 12px;
}

.cart-itemList__headline button {
  margin: 0 auto;
  padding: 10px;
  color: #007185;
}

.cart-itemList__headline button:hover {
  color: #C7511F;
  text-decoration: underline;
}

.cart-itemList__headline p {
  padding-top: 20px;
  text-align: right;
}

.cart-itemList-main .cart-item__wrap {
  border-top: solid 1px #ccc;
}

.cart-item__container {
  display: flex;
  margin: 10px 0;
  align-items: center;
}

.cart-item__checkBox {
  margin-right: 5%;
  width: auto;
}

.cart-item__imageBox {
  width: 50%;
}

.cart-item__infoBox {
  width: 100%;
  margin: 0 1%;
}

.cart-item__infoTitle a {
  color: #007185;
}

.cart-item__infoTitle a:hover {
  color: #C7511F;
  text-decoration: underline;
}

.cart-item__infoDate {
  margin-top: 4px;
  font-size: 12px;
  color: #c45500
}

.cart-item__option,
.cart-item__message {
  margin-top: 20px;
}

.cart-item__option p,
.cart-item__message p,
.cart-item__package p:first-of-type {
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5em;
}

.cart-item__option ul,
.cart-item__message ul {
  display: flex;
  flex-wrap: wrap;
}

.cart-item__option ul li,
.cart-item__message ul li,
.cart-item__package ul li {
  margin: 0 5px;
  font-size: 12px;
}

.cart-item__package {
  margin-top: 20px;
  margin-bottom: 30px;
}

.cart-item__package p span {
  font-size: 12px;
  font-weight: normal;
  background: inherit;
  color: inherit;
}

.cart-item__infoGift {
  margin-top: 20px;
  font-size: 12px;
}

.cart-item__infoBottom {
  margin: 4px auto 10px;
  display: flex;
}

.cart-item__infoBottom li {
  margin: 0 0.5em;
}

.cart-number__area {
  margin: 0 auto;
  text-align: center;
}

.cart-number__area input {
  height: 30px;
  width: 50px;
}

.cart-number__area input:first-of-type.cartNumber-btn.optionBtn {
  border-radius: 3px 0 0 3px;
  width: 30px;
}

.cart-number__area input:last-of-type.cartNumber-btn.optionBtn {
  border-radius: 0 3px 3px 0;
  width: 30px;
}

.cart-number__area input[type='number'] {
  margin: 0 -6px;
  border: solid 1px #ccc;
}

.cart-item__infoBottom select {
  display: block;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

.cart-item__infoBottom input[type='button'] {
  color: #007185;
}

.cart-item__infoBottom input[type='button']:hover {
  color: #C7511F;
  text-decoration: underline;
}

.cart-item__priceBox {
  width: 50%;
  align-self: flex-start;
}

.cart-item__priceBox p {
  text-align: right;
  font-size: 12px;
}

.cart-item__priceBox p:first-of-type {
  font-size: 18px;
}

.cart-item__priceBox p span {
  color: #B12704;
  display: block;
}

.cart-settlement__area {
  margin-left: 2%;
  width: 30%;
}

.cart-settArea__inner {
  padding: 20px 10px 15px;
  border: solid 3px #ccc;
}

.cart-settlement__info.mobile {
  display: none;
}

.cart-settlement__area .cart-settlement__price {
  font-weight: bold;
}

.cart-settlement__area p:last-of-type {
  font-size: 12px;
}

.cart-settlement__area p span {
  color: #B12704
}

.cart-settlement__btn {
  margin: 20px auto 0;
  text-align: center;
}

.cart-settlement__delivery {
  margin-top: 10px;
}

.cart-settlement__delivery select {
  width: 100%;
  padding: 5px;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

.cart-nothing p {
  font-weight: bold;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* パスワードをお忘れの場合 */
.passForgotten-container {
  width: 90%;
  margin: 0 auto;
}

.passForgotten-explain.mobile {
  display: none;
}

.passForgotten-form {
  margin-top: 30px;
}

.passForgotten-email,
.passForgotten-tentative {
  margin-bottom: 20px;
}

.passForgotten-form p {
  font-weight: bold;
  margin-bottom: 10px;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* パスワード変更URL送信ページ */
.passChangeS-container {
  margin: 0 auto;
  width: 90%;
}

.passChangeS-explain p:first-of-type {
  font-weight: bold;
}

.passChangeS-linkArea {
  margin: 100px auto 0;
  width: 40%;
  text-align: center;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* パスワード変更入力 */
.passChangeF-container {
  width: 90%;
  margin: 0 auto;
}

.passChangeF-setInformation,
.passChangeF-changedPass {
  margin-bottom: 50px;
}

.passChangeF-setInformation > p,
.passChangeF-changedPass > p {
  margin-bottom: 30px;
}

.passChangeF-setInformation__form p,
.passChangeF-changedPass__form p {
  margin-bottom: 10px;
  font-weight: bold;
}

.passChangeF-setInformation__form input,
.passChangeF-changedPass__form input {
  margin-bottom: 20px;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* パスワード変更完了 */
.pChangeDone-container {
  width: 90%;
  margin: 0 auto;
}

.pChangeDone-container > p {
  margin-top: 50px;
}

.pChangeDone-link {
  margin: 100px auto 0;
  width: 40%;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* ゲスト情報入力 */
.purchase-stream {
  margin: 30px auto 50px;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* お届け先指定 */
.cDestination-container label {
  display: block;
}

.cDestination-container > .cart-settlement__delivery,
.cDestination-container label {
  margin-bottom: 50px;
}

.cDestination-container label span,
.cDestination-container label p {
  font-weight: bold;
}

.cDestination-container label p span {
  color: inherit;
  background: inherit;
}

.cDestination-container label[for='customer-gender__agender'],
.cDestination-container label[for='customer-gender__male'],
.cDestination-container label[for='customer-gender__famale'] {
  display: inline;
}

.cDestination-container label[for='customer-gender__agender'] span,
.cDestination-container label[for='customer-gender__male'] span,
.cDestination-container label[for='customer-gender__famale'] span {
  font-weight: normal;
}

.customer-addAddress {
  width: 40%;
  border: solid 1px #ddd;
}

form .customer-form > .customer-addAddress > p {
  font-weight: normal;
  background: #eee;
  border-bottom: solid 1px #ddd;
  margin: 0;
}

.customer-addAddress__inner {
  padding: 5px;
}

.customerRecieve-date,
.customerRecieve-time {
  margin-bottom: 30px;
}

.customerRecieve-date p,
.customerRecieve-time p {
  margin-bottom: 10px;
}

.customerRecieve-date select,
.customerRecieve-time select {
  width: 40%;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

.customerRecieve-type {
  margin-top: 30px;
}

.customerRecieve-type p {
  font-weight: bold;
}

.customerRecieve-type p:first-of-type {
  font-weight: normal;
  color: #aaa;
  line-height: 1.5em;
}

.customerRecieve-type select {
  padding: 5px;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* お支払い方法選択 */
.cPayment-order.mobile {
  display: none;
}

.cPayment-table__operation {
  display: flex;
  margin-top: 20px;
  justify-content: flex-end;
}

.cPayment-table__empty,
.cPayment-table__totalPrice {
  margin: 0 20px;
}

.cPayment-table__empty button,
.cPayment-table__totalPrice button {
  padding: 5px 20px;
}

.cPayment-order__top th {
  vertical-align: middle;
}

.cPayment-order__bottom {
  margin-top: 50px;
  display: flex;
  justify-content:space-between;
  align-items: flex-end;
}

.cPayment-order__continueBtn {
  width: 80%;
  margin-top: 30px;
}

.cPayment-order__purchase {
  width: 45%;
}

.cPayment-order__purchaseBtn {
  width: 60%;
  margin: 10px 0 0 auto;
}

.cPayment-delivery {
  margin-top: 100px;
  width: 50%;
}

.cPayment-delivery__contents {
  margin-bottom: 30px;
}

.cPayment-delivery__recieveChoice {
  border: solid 1px #ddd;
}

.cPayment-delivery__recieveChoice p {
  background: #eee;
}

.cPayment-delivery__recieveChoice select {
  width: 100%;
  padding: 5px;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

.cPayment-delivery__selectInner {
  padding: 5px;
}

.cPayment-delivery__coupon {
  margin-top: 10px;
  padding: 10px;
}

.cPayment-delivery__coupon p {
  margin-bottom: 5px;
}

.cPayment-delivery__coupon input[type='button'] {
  padding: 6px 10px;
}

.cPayment-delivery__coupon button {
  padding: 2px 5px;
  margin-left: 10px;
  background:rgb(255, 94, 0);
  color: #fff;
  border-radius: 3px;
}

.delivery-coupon_use {
  margin-top: 20px;
}

.delivery-coupon_use ul li {
  margin-bottom: 5px;
}

.cPayment-delivery__point label {
  display: block;
  line-height: 1.5em;
}

.take-partsPoint__form input[type='number'] {
  margin-left: 1em;
  padding: 5px;
  border: solid 1px #ddd;
  border-radius: 4px;
  transition: all 100ms;
}

.take-partsPoint__form {
  display: block;
}

.cPayment-main {
  margin-bottom: 30px;
}

.cPayment-main__container {
  margin-top: 20px;
  border: solid 1px #ddd;
}

.cPayment-main__contents {
  border-bottom: solid 1px #ddd;
}

.cPayment-main__contents label {
  display: block;
  padding: 10px;
  background: #F5F5F5;
}

.cPayment-main__contents label.open {
  background: #FFFFEE;
  color: #FF0000;
}

.cPayment-main__contents:last-of-type {
  border-bottom: none;
}

.cPayment-main__detail {
  padding: 10px;
  background: #FFFFEE;
}

.cPayment-main__detail.nodisplay {
  background: #F5F5F5;
}

.cPayment-detail__bankInfo {
  margin: 20px 0;
  padding: 5px 0;
  border-top: dotted 1px #000;
  border-bottom: dotted 1px #000;
}

.cPayment-card ul li {
  line-height: 1.5em;
  list-style-type: square;
  list-style-position: inside;
}

.cPayment-card__contents {
  margin: 10px 0;
}

.cPayment-card__cTitle {
  padding: 10px;
  background: #F5F5F5;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}

.cPayment-card__form {
  padding: 20px 10px;
}

.cPayment-card__form input {
  background: #fff;
}

.cPayment-card__form.separate input {
  width: 20%;
  margin: 0 10px;
}

.cPayment-card__form p {
  margin-top: 5px;
  font-size: 0.8em;
  color: #333;
}

.cPayment-card__form select {
  padding: 5px 7px;
  background: #fff;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

.cPayment-card__form input[name='payCard_secu'] {
  width: 20%;
}

.cPayment-card__form #payCard_num-error,
.cPayment-card__form #payCard_secu-error {
  background: inherit;
}

.cPayment-please__contents {
  margin-bottom: 20px;
}

.cPayment-please__contents p {
  line-height: 1.5em;
}

.cPayment-please__contents p::before {
  content: '●';
  font-size: 1.5em;
}

.cPayment-please__contents p a {
  text-decoration: underline;
}

.cPayment-please__contents p a:hover {
  color: #ddd;
}

form .cPayment-please__contents p > span {
  margin: 0;
  background: inherit;
  color:rgb(255, 0, 0);
  font-weight: inherit;
  text-decoration: underline;
}

.cPayment-message textarea {
  margin-top: 10px;
  width: 100%;
}

#coupon-modal {
  width: 50%;
  height: 80%;
  display: none;
  border: solid 1px #333;
  background: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  overflow: scroll;
}

.coupon-modal__wrap {
  position: relative;
}

.coupon-modal__wrap > button {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5em;
  color: #fff;
}

.coupon-modal__wrap > h3 {
  padding: 1em;
  text-align: center;
  background: #555;
  color: #fff;
}

.coupon-modal__content {
  padding: 10px;
}

.coupon-modal__content > p {
  margin: 20px 0;
  text-align: center;
}

.coupon-modal__item {
  position: relative;
  margin-bottom: 20px;
}

.coupon-modal__item button {
  position: absolute;
  top: 50%;
  right: 5%;
  color: #fff;
  background-color: #eb6100;
  border-bottom: 5px solid #b84c00;
  padding: 5px 10px;
}

.coupon-modal__item button:hover {
  margin-top: 3px;
  color: #fff;
  background: #f56500;
  border-bottom: 2px solid #b84c00;
}

.coupon-modal__itemText {
  border: solid 1px #555;
}

.coupon-modal__itemText > p {
  background: #555;
  padding: 1em;
  color: #fff;
}

.coupon-modal__itemDetail {
  padding: 10px;
  width: 80%;
}

.coupon-modal__itemDetail p:first-of-type {
  margin-top: 20px;
}

.coupon-modal__itemDetail p {
  margin-bottom: 10px;
}

.coupon-modal__item.disabled {
  background-color: rgba(0,0,0,.5);
  z-index: -1;
}

.coupon-modal__item.disabled .coupon-modal__itemText > p {
  color: #000;
}

.coupon-modal__item.disabled button {
  color: #000;
  background: #bbb;
  border-bottom: 5px solid #999;
}

#coupon_use_list .cpn_del {
  margin-left: 5px;
  padding: 3px 6px;
  vertical-align: unset;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 注文確認 */
.oConfirmed-product,
.oConfirmed-customer,
.oConfirmed-destination,
.oConfirmed-destination__top,
.oConfirmed-payment {
  margin-bottom: 50px;
}

.oConfirmed-order__top.mobile {
  display: none;
}

.oConfirmed-order__bottom {
  margin: 10px 0 0 auto;
  width: 50%;
}

.order-subInfo__change {
  margin: 20px 0 0 auto;
  width: 30%;
}

.oConfirmed-customer table td,
.oConfirmed-destination table td,
.oConfirmed-payment table td {
  text-align: left;
}

.oConfirmed-destination table th {
  vertical-align: middle;
}

.oConfirmed-destination table td table th,
.oConfirmed-destination table td table td {
  text-align: center;
}

.oConfirmed-destination table td table td:first-of-type {
  width: 80%;
  text-align: left;
}

.oConfirmed-payment table:last-of-type {
  margin-top: 10px;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 注文完了 */
.order-complete__container {
  width: 90%;
  margin: 80px auto 0;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* マイページ */
.mypage-container li {
  margin-bottom: 10px;
  border-bottom: solid 1px #000;
}

.mypage-container li a {
  padding: 10px;
  display: block;
}

.mypage-container li a:hover {
  background-color: #eaeded;
}

.mypage-container li a p {
  width: 95%;
  font-size: 120%;
  padding-left: 2em;
  display: inline-block;
}

.mypage-container li a i {
  padding-left: 3%;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 注文履歴 */
.oHistory-container.mobile {
  display: none;
}

.oHistory-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.oHistory-top select {
  border: solid 1px #000;
  border-radius: 4px;
  padding: 2px 5px;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

.oHistory-main {
  margin-top: 10px;
}

.oHistory-main .order-infoTable .order-infoTable__itemName {
  border: solid 1px #ddd;
}

.oHistory-table__itemName {
  width: 40%;
}

.oHistory-table__root {
  text-align: center;
}

.oHistory-table__price {
  text-align: right;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 注文詳細 */
.oDetail-information {
  margin-bottom: 100px;
}

.oDetail-information__date {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.oDetail-information__date.mobile {
  display: none;
}

.oDetail-information__date table th {
  width: 100%;
}

.oDetail-information__pTop {
  margin-bottom: 10px;
}

.oDetail-information__pTop.mobile {
  display: none;
}

.oDetail-information__pTop .order-infoTable table .order-infoTable__itemName {
  border: solid 1px #ddd;
}

.oDetail-information__pBottom,
.oDetail-destination__fee {
  margin: 10px 0 0 auto;
  width: 50%;
}

.oDetail-container .oDetail-table__number {
  text-align: center;
}

.oDetail-container .oDetail-table__price {
  text-align: right;
}

.oDetail-destination h3 {
  font-weight: bold;
  border-bottom: 2px solid #E4DAD2;
}

.oDetail-destination__contents {
  margin-top: 5px;
}

.oDetail-destination__contents > p:first-of-type {
  padding: 10px 0;
}

.oDetail-destination__metod {
  margin: 5px auto 30px;
}

.oDetail-destination__metod table td {
  text-align: left;
}

.oDetail-destination__personal,
.oDetail-destination__product {
  margin-bottom: 10px;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* ポイント履歴 */
.pHistory-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.pHistory-top__right > p {
  text-align: right;
}

.pHistory-years__display {
  margin-bottom: 1em;
}

.pHistory-main {
  margin-top: 10px;
}

.pHistory-main table th {
  vertical-align: middle;
}

.pHistory-main__tableDate {
  width: 15%;
}

.pHistory-main__tableRoot {
  width: 5%;
  text-align: center;
}

.pHistory-main__tableType {
  width: 40%;
}

.pHistory-main__tableCondition,
.pHistory-main__tableGet,
.pHistory-main__tableUse {
  width: 8%;
  text-align: center;
}

.pHistory-container.mobile {
  display: none;
}

.pTransfer {
  margin-top: 50px;
}

.pTransfer > .specialty-title {
  margin-bottom: 30px;
}

.pTransfer-caution {
  padding: 20px 0;
}

.pTransfer-press {
  margin-bottom: 10px;
}

.pTransfer-havap {
  margin-top: 10px;
  text-align: right;
}

.pTransfer-havap span {
  color: inherit;
  background: inherit;
}

.pTransfer-notice {
  text-align: center;
}

.pTransfer-table table thead th:nth-child(1),
.pTransfer-table table thead th:nth-child(2) {
  width: 10%;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* クーポン管理ページ */
.coupon-item {
  margin-bottom: 50px;
}

.coupon-item__inner {
  padding: 5px;
  border: 3px solid #f4d078;
  height: 400px;
}

.coupon-image {
  width: auto;
  height: 100px;
  margin-top: 10px;
}

.coupon-image img {
  width: auto;
  height: 100%;
}

.coupon-contents {
  margin-top: 10px;
}

.coupon-contents h3 {
  margin-bottom: 10px;
  font-size: 1em;
}

.coupon-contents p {
  margin-bottom: 5px;
  font-size: 0.8em;
}

.coupon-contents p.coopon-important {
  font-size: 1.2em;
  font-weight: bold;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* あとで買う */
.favorite-number {
  text-align: right;
}

.favorite-table table {
  width: 100%;
  border-top: 1px solid #ddd;
}

.favorite-table tr {
  border-bottom: 1px solid #ddd;
}

.favorite-table td {
  padding: 8px 3px;
  vertical-align: middle;
}

.favorite-table img {
  width: 50px;
}

.favorite-table .favorite-date {
  font-size: 80%;
  text-align: right;
}

.favorite-name {
  color: #b29148;
}

.favorite-table .favorite-name:hover {
  color: #ebd088;
}

.favorite-review__check {
  padding: 5px 0;
}

.favorite-review__check a {
  color: #007185;
}

.favorite-review__check a:hover {
  color: #C7511F;
  text-decoration: underline;
}

.favorite-container.mobile {
  display: none;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 特定商取引法に関する表記 */
.business-deal .specialty-title {
  border-bottom: solid 2px #E4DAD2;
}

.business-deal .specialty-title h3 {
  font-size: 1.2em;
  font-weight: bold;
}

.businessDeal-shop.mobile {
  display: none;
}

.business-deal .order-subInfo__table {
  margin-top: 5px;
  margin-bottom: 30px;
}

.business-deal .order-subInfo__table th,
.business-deal .order-subInfo__table td {
  vertical-align: middle;
  text-align: left;
}

.businessDeal-section {
  margin-top: 20px;
}

.business-deal .article-title {
  border-bottom: dotted 2px #E4DAD2;
  margin-bottom: 5px;
}

.businessDeal-section__note {
  padding: 20px 0;
}

.businessDeal-section ul li {
  list-style-type: disc;
  list-style-position: inside;
}

.businessDeal-section ul li span {
  padding-left: 1.5em;
}

.businessDeal-section__note ul {
  padding-left: 1em;
}

.businessDeal-section__note ul li {
  list-style-position: inherit;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* プライバシーポリシー */
.businessDeal-privacy > p:first-of-type {
  text-align: right;
}

.businessDeal-pPolicy__section {
  margin-top: 20px;
  margin-bottom: 50px;
}

.businessDeal-privacy p span {
  padding-left: 1em;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* お問い合わせ */
.contact a {
  padding: 0 1em;
  color: #b29148;
  cursor: pointer;
}

.contact a:hover {
  color: #ebd088;
}

.contact span {
  padding: 0 1em;
}

.contact-time {
  margin: 30px 0;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* faqページ */
.faq-container ul li button {
  width: 100%;
  font-size: 1.2em;
  padding: 15px;
  background: #eee;
  display: block;
}

.faq-container ul li button::before {
  content: 'Q.';
  margin-right: 10px;
}

.faq-container ul li pre {
  display: inline;
}

.faq-container ul li button span {
  height: 30px;
  line-height:0;
  margin-left: 90%;
  position: relative;
  display: block;
}

.faq-container ul li button span::before {
  display: block;
  content: "";
  position: absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  margin:auto;
  width: 30px;
  height: 2px;
  background-color: #40180A;
  transition: .2s;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.faq-container ul li button span::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 30px;
  height: 2px;
  background-color: #40180A;
  transition: .3s;
}

.faq-container ul li button span.on::before {
  transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}

.faq-container ul li button span.on::after {
  background-color: transparent;
}

.faq-ansewr {
  display: none;
  padding: 15px;
}

.faq-ansewr pre::before {
  content: 'A.';
  margin-right: 10px;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 404エラーページ */
.pageNotFound-top {
  background:rgb(255, 0, 0);
  padding: 2% 0;
  margin-bottom: 20px;
}

.pageNotFound-top p {
  color: #fff;
}

.pageNotFound-bottom {
  margin-bottom: 50px;
}

.pageNotFound-bottom p {
  border-bottom: solid 1px #000;
}

.pageNotFound-bottom span {
  display: block;
  width: 90%;
  margin: 10px auto 0;
  border-bottom: solid 1px #000;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* メールマガジン管理 */
.mailMagazine-form form > p span {
  background: inherit;
  color: inherit;
  margin: 0;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 紹介 */
.introduce-container {
  margin: 50px 0;
}

.introduce-container button {
  margin: 0 auto;
  width: 50%;
}

.introduce-container #copyText {
  width: 50%;
  margin: 20px auto 0;
  padding: 6px 10px;
  text-align: center;
  border: solid 1px #000;
  word-wrap: break-word;
  display: block;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* マイレビュー */
.myreview-container.mobile {
  display: none;
}

.myreview-top {
  display: flex;
  justify-content: space-between;
}

.myreview-number {
  margin: 20px 0;
  border-bottom: solid 1px #ccc;
}

.myreview-main > p {
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: solid 2px #E4DAD2;
}

.myreview-main > p a {
  color: #b29148;
}

.myreview-main > p a:hover {
  color: #ebd088;
}

.myreview-box {
  border: solid 1px #ddd;
}

.myreview-headline {
  padding: 5px;
  background: #E4DAD2;
  border-bottom: solid 1px #ddd;
}

.myreview-headline p {
  text-align: center;
}

.myreview-item {
  display: flex;
  border-bottom: solid 1px #ddd;
}

.myreview-item:last-of-type {
  border: none;
}

.myreview-image {
  padding: 5px;
}

.myreview-image img {
  width: 50px;
}

.myreview-text {
  width: 100%;
}

.myreview-text__top {
  padding: 5px;
  background: #F8F5F3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.myreview-textTop__left p:first-of-type a {
  color: #b29148;
}

.myreview-textTop__left p:first-of-type a:hover {
  color: #ebd088;
}

.myreview-text__bottom p {
  padding: 5px;
}

.myreview-text__bottom p:first-of-type {
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  max-width: 100%;
  white-space: nowrap;
}

.myreview-text__bottom p:last-of-type {
  text-align: right;
}

.myreview-text__bottom p:last-of-type a {
  text-decoration: underline;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* レビュー作成 */
.reviewCreate-top {
  display: flex;
}

.reviewCreate-top,
.reviewCreate-middleTop {
  margin-bottom: 30px;
}

.reviewCreate-top img {
  width: 50px;
}

.reviewCreate-top__right {
  margin-left: 1em;
}

.reviewCreate-top__right a {
  color: #b29148;
}

.reviewCreate-top__right a:hover {
  color: #ebd088;
}

.reviewCreate-middleTop.mobile {
  display: none;
}

.reviewCreate-middleTop > p {
  font-weight: bold;
  border-bottom: solid 1px #E4DAD2;
  margin-bottom: 0.5em;
}

.reviewCreate-caution {
  margin-bottom: 50px;
}

.reviewCreate-caution p {
  margin-top: 0.5em;
}

.review-profile__setting select {
  border: solid 1px #000;
  border-radius: 4px;
}

.review-profile__box {
  margin-bottom: 5px;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* レビュー内容確認 */
.review-confirmed__item {
  margin-bottom: 30px;
}

.reviewCreate-main.mobile {
  display: none;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* アドレス帳管理 */
.addressList-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.addressList-control {
  display: flex;
}

.addressList-control__item {
  margin-right: 20px;
}

.addressList-form.mobile {
  display: none;
}

.addressList-tableBtn {
  text-align: center;
  width: 20%;
}

.addressList-tableBtn > div {
  display: inline-block;
}

.addressList-tableBtn .optionBtn input[type='button'] {
  padding: 6px 10px;
  vertical-align: baseline;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 退会画面 */
.withdraw-caution {
  margin-top: 30px;
  padding: 10px;
  background: #f0eee6;
  border: solid 1px #92722d;
}

.withdraw-caution > p {
  font-weight: bold;
  margin-bottom: 10px;
}

.withdraw-caution ul li {
  list-style-type: disc;
  list-style-position: inside;
  margin: 10px 0;
}

.withdraw-point {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 30px;
  color: rgb(255, 0, 0);
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* クーポン取得 */
.couponGet-headline {
  text-align: center;
  font-size: 3em;
  background: linear-gradient(to right, #f00 0%, rgb(248, 149, 36) 14.28%, rgb(224, 224, 23) 28.56%, #0d0 42.85%, #0dd 57.14%, #00f 71.42%, #e0e 85.71%, #f00 100%) 0% center / 200% auto;
  background: -webkit-linear-gradient(left, #f00 0%, rgb(248, 149, 36) 14.28%, rgb(224, 224, 23) 28.56%, #0d0 42.85%, #0dd 57.14%, #00f 71.42%, #e0e 85.71%, #f00 100%) 0% center / 200% auto;
  background: -o-linear-gradient(right, #f00 0%, rgb(248, 149, 36) 14.28%, rgb(224, 224, 23) 28.56%, #0d0 42.85%, #0dd 57.14%, #00f 71.42%, #e0e 85.71%, #f00 100%) 0% center / 200% auto;
  background: -moz-linear-gradient(right, #f00 0%, rgb(248, 149, 36) 14.28%, rgb(224, 224, 23) 28.56%, #0d0 42.85%, #0dd 57.14%, #00f 71.42%, #e0e 85.71%, #f00 100%) 0% center / 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
}

.couponGet-headline.disabled {
  background: inherit;
  font-size: 1.5em;
  color: #999;
  -webkit-background-clip: inherit;
  background-clip: inherit;
  -webkit-text-fill-color: inherit;
  -moz-text-fill-color: inherit;
  -ms-text-fill-color: inherit;
}

.couponGet-contents {
  padding: 10px;
  border: 5px solid #f4d078;
  margin-top: 50px;
}

.couponGet-contents__explain {
  margin-top: 20px;
}

.couponGet-contents__explain h3,
.couponGet-contents__explain p {
  font-size: 1.1em;
  margin: 20px 0;
}

.couponGet-contents__explain p.couponGet-number {
  font-size: 1.5em;
  font-weight: bold;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* footer */
footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.footer-wrap {
  background-color: #2b2b2b;
  color: #787878;
  position: relative;
}

.footer-contents {
  width: 1030px;
  margin: 0 auto;
  padding: 30px 0;
}

.footer-menu {
  margin-top: 30px;
  padding-left: 20px;
}

.footer-menu ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.footer-menu ul li {
  padding: 0 10px;
}

.footer-menu ul li a:hover {
  color: #999;
  transition: all 0.2s ease;
}

.footer-cardList {
  margin: 30px auto 0;
}

.footer-cardList ul, .footer-snsLink ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-cardList ul li {
  padding: 1%;
}

.footer-snsContainer {
  margin: 0 auto;
  text-align: center;
}

.footer-snsLink {
  margin-top: 20px;
  padding: 3px;
  display: inline-block;
}

.footer-snsLink ul li {
  padding: 0 5px;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */
/* おねだり決済 */
.onedari-header p {
  font-size: 1.2em;
  line-height: 1.5em;
}

.onedari-hTop {
  background: #000;
  padding: 30px 50px;
  text-align: center;
  color: #fff;
  font-family: 'Times New Roman';
}

.onedari-hTop h1 {
  font-size: 3em;
}

.onedari-hTop p {
  margin-top: 20px;
}

.onedari-hBottom {
  padding: 10px 5%;
}

.onedari-hBottom > p {
  text-align: center;
}

.onedari-hBottom ul {
  margin-top: 10px;
  display: flex;
  justify-content: space-evenly;
}

.onedari-hBottom ul li {
  font-size: 1.5em;
  font-weight: bold;
}

/* これ以降はレスポンシブ部分 */
/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 画面幅1100以下 */
@media screen and (max-width: 1100px) {
  /* グローバルナビ */
  .globalNav-category ul li p,
  .globalNav-customer ul li p {
    width: 90%;
  }
}

/* 画面幅1029以下 */
@media screen and (max-width: 1075px) {
  /* 共通部分 */
  .all-container {
    margin: 20px auto 0;
    width: auto;
  }

  /* ヘッダー */
  .header-top__inner {
    width: auto;
  }

  .header-top__left {
    left: 5%;
  }

  .header-top__middleLeft {
    left: 15%;
  }

  .header-top__middleRight {
    right: 15%;
  }

  .header-top__right {
    right: 5%;
  }

  .header-top__inner #cart_num {
    right: 3%;
  }

  .header-bottom.pc {
    width: auto;
  }

  /* フッター */
  .footer-contents {
    width: auto;
  }
}

/* 以降はスマホ表示 */
/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 画面幅991px以下 */
@media screen and (max-width: 991px) {
  /* 共通部分 */
  .wrapper {
    padding-bottom: 500px;
  }

  .all-container {
    margin: 20px 5% 0;
    padding-bottom: 200px;
  }

  .linkArea {
    display: block;
    margin-top: 50px;
  }

  .linkArea .linkNext,
  .linkArea .linkBack {
    width: 80%;
    margin-bottom: 20px;
  }

  form .separateForm3 input:nth-of-type(1),
  form .separateForm3 input:nth-of-type(2),
  form .separateForm3 input:nth-of-type(3) {
    margin: 0;
  }

  .customer-confirmed > p {
    display: none;
  }

  .customer-confirmed {
    border: solid 1px #ddd;
  }

  .customerConfirmed-item {
    margin-bottom: 10px;
  }

  .customerConfirmed-item p:first-of-type {
    background: #ddd;
    padding: 5px;
    font-weight: normal;
  }

  .customerConfirmed-item p:last-of-type {
    padding-left: 5px;
  }

  .customerConfirmed-item.pc {
    display: none;
  }

  .customerConfirmed-item.mobile {
    display: block;
  }

  .customerConfirmed-linkArea {
    display: block;
    margin-top: 50px;
  }

  .customerConfirmed-linkNext,
  .customerConfirmed-linkBack {
    width: 80%;
    margin-bottom: 20px;
  }

  .order-subInfo__table.pc {
    display: none;
  }

  .order-subInfo__table.mobile {
    display: block;
  }

  .order-subInfo__table.mobile th {
    text-align: left;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* グローバルナビ */
  .globalNav-contents {
    padding-bottom: 50%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* header */
  .header-top {
    background: #fff;
  }

  .header-top__inner {
    width: auto;
  }

  .nav-button span {
    background: #000;
  }

  .header-top__center a img {
    filter: brightness(0%);
  }

  .header-icon {
    color: #000;
  }

  .header-top__inner #cart_num {
    right: 2%;
    background: #000;
    color: #fff;
  }

  .header-bottom.pc {
    display: none;
  }

  .header-bottom.mobile {
    display: block;
    margin: 20px auto 0;
  }

  .hBottom-link {
    margin-bottom: 10px;
    padding: 0 3px;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* グローバルナビ */
  #global-nav {
    width: 50%;
    left: -50%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* サーチ */
  #search {
    width: 50%;
    left: -50%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* サイドバー */
  .sidebar-contents {
    display: none;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 購入エリア */
  .purchase-area {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
  }

  .purchase-area__productInfo {
    display: none;
  }

  .purchase-area__main {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .purchase-area__cart a p,
  .purchase-area__buyNow a p {
    position: static;
    transform: initial;
    line-height: 35px;
  }

  .purchase-area__cart,
  .purchase-area__buyNow {
    width: 50%;
    margin: 10px;
  }

  .purchase-area__favorite {
    width: 50%;
    height: 35px;
    margin: 10px;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* トップページ */
  .banner-500point img {
    width: 100%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* ログイン */
  .signin-main__container {
    display: block;
  }

  .signin-form {
    margin: 0 auto;
    padding-bottom: 60px;
  }

  .signin-campaign__present p {
    text-align: inherit;
  }

  .signin-unregistered {
    margin: 0 auto;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 商品一覧 */
  .pager {
    text-align: center;
  }

  .pager > label,
  .pager > span,
  .pager > a {
    display: none;
  }

  .pager > a.pagerPrev,
  .pager > a.pagerNext {
    display: inline-block;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 商品詳細 */
  .pDetail-top {
    display: block;
  }

  .pDetail-slider__container,
  .pDetail-info {
    width: 100%;
    margin: 0 auto;
  }

  .pDetail-main__spec table {
    width: 100%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* spシーズナブル */
  .spSeason-item__main {
    display: block;
  }

  .spSeason-itemMain__left {
    width: 100%;
    margin-bottom: 50px;
  }

  .spSeason-slider img {
    width: auto;
    height: auto;
  }

  .spSeason-itemMain__right {
    width: 100%;
    margin-top: 50px;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* カート */
  .cart-contents {
    display: block;
  }

  .cart-settlement__area {
    margin: 0 auto;
    width: 100%;
    border: none;
    padding: 0 0 15px;
  }

  .cart-settlement__info.pc {
    display: none;
  }

  .cart-settlement__info.mobile {
    display: block;
    padding: 5px;
  }

  .cart-settlement__info.mobile p {
    font-size: 1em;
    line-height: 1.5em;
  }

  .cart-settlement__info.mobile p:first-of-type span {
    font-weight: bold;
  }

  .cart-itemList.pc {
    display: none;
  }

  .cart-itemList.mobile {
    display: block;
    border-top: solid 3px #ccc;
  }

  .cart-item__container {
    display: block;
  }

  .cart-item__top,
  .cart-item__bottom {
    display: flex;
  }

  .cart-itemTop__image {
    margin-right: 2%;
    width: 100%;
  }

  .cart-itemTop__info {
    width: 70%;
  }

  .cart-item__price {
    margin-top: 10px;
    color: #B12704;
  }

  .cart-item__middle {
    margin-top: 20px;
  }

  .cart-itemMiddle__contents {
    margin-bottom: 10px;
  }

  .cart-itemMiddle__contents > p {
    font-weight: bold;
  }

  .cart-itemMiddle__contents > p > span {
    font-weight: normal;
  }

  .cart-itemMiddle__contents ul {
    display: flex;
    flex-wrap: wrap;
  }

  .cart-itemMiddle__contents ul li {
    margin: 2.5px 5px;
  }

  .cart-item__bottom {
    margin-top: 10%;
  }

  .cart-item__bottom li {
    padding: 0 5%;
  }

  .cart-item__bottom li button {
    padding: 5px;
  }

  .cart-item__bottom input[type='button'] {
    padding: 5px;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* パスワードをお忘れの場合 */
  .passForgotten-explain.pc {
    display: none;
  }

  .passForgotten-explain.mobile {
    display: block;
    padding-left: 1em;
  }

  .passForgotten-explain.mobile ol {
    list-style: decimal;
    list-style-position: outside;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* パスワード変更URL送信ページ */
  .passChangeS-explain p:first-of-type {
    font-weight: normal;
    margin-bottom: 20px;
  }

  .passChangeS-linkArea {
    width: 80%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* パスワード変更完了 */
  .pChangeDone-link {
    width: 80%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* お届け先指定 */
  .customer-addAddress {
    width: auto;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* お支払い方法選択 */
  .cPayment-order.pc {
    display: none;
  }

  .cPayment-order.mobile {
    display: block;
  }

  .cPayment-order__headline {
    display: flex;
    margin-bottom: 10px;
  }

  .cPayment-order__headline img {
    width: 50px;
    height: 50px;
  }

  .cPayment-order__headline a {
    margin-left: 1em;
    color: #b29148;
  }

  .cPayment-order__headline a:hover {
    color: #ebd088;
  }

  .cPayment-delivery {
    width: auto;
  }

  #coupon-modal {
    width: 90%;
  }

  .coupon-modal__itemDetail {
    width: 70%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 注文確認 */
  .oConfirmed-order__top.pc {
    display: none;
  }

  .oConfirmed-order__top.mobile {
    display: block;
  }

  .oConfirmed-order__bottom {
    width: 80%;
  }

  .oConfirmed-order__headline {
    display: flex;
    margin-bottom: 10px;
  }

  .oConfirmed-order__headline img {
    width: 50px;
    height: 50px;
  }

  .oConfirmed-order__headline a {
    margin-left: 1em;
    color: #b29148;
  }

  .oConfirmed-order__headline a:hover {
    color: #ebd088;
  }

  .oConfirmed-destination__bottom {
    display: none;
  }

  .oConfirmed-payment .order-subInfo__table.mobile p {
    margin-bottom: 10px;
  }

  .oConfirmed-payment__message {
    border-left: 10px solid #000;
    padding-left: 10px;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* マイページ */
  .mypage-container li a p {
    width: 90%;
    padding-left: 1em;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 注文履歴 */
  .oHistory-container.pc {
    display: none;
  }

  .oHistory-container.mobile {
    display: block;
  }

  .oHistory-top {
    display: block;
  }

  .oHistory-years__display {
    text-align: right;
  }

  .oHistory-main {
    margin-top: 30px;
    border-top: solid 1px #ddd;
  }

  .oHistory-item {
    padding: 10px 0;
    border-bottom: solid 1px #ddd;
  }

  .oHistory-item a {
    position: relative;
    display: block;
  }

  .oHistory-item i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 注文詳細 */
  .oDetail-information__date.pc {
    display: none;
  }

  .oDetail-information__date.mobile {
    display: block;
  }

  .oDetail-information__date > p {
    line-height: 1.5em;
  }

  .oDetail-information__pTop.pc {
    display: none;
  }

  .oDetail-information__pTop.mobile {
    display: block;
  }

  .oDetail-information__pTop.mobile > p {
    font-weight: bold;
    margin-bottom: 10px;
  }

  .oDetail-information__block {
    border-bottom: dotted 1px #ccc;
    padding: 10px 0;
  }

  .oDetail-information__block:first-of-type {
    border-top: dotted 1px #ccc;
  }

  .oDetail-information__block a {
    color: #b29148;
  }

  .oDetail-information__block a:hover {
    color: #ebd088;
  }

  .oDetail-destination.pc {
    display: none;
  }

  .oDetail-destination.mobile {
    display: block;
  }

  .oDetail-destination__metod {
    margin-bottom: 10px;
  }

  .oDetail-destination__metod th,
  .oDetail-destination__personal th,
  .oDetail-destination__personal td {
    text-align: inherit;
  }

  .oDetail-destination__personal {
    margin-bottom: 30px;
  }

  .oDetail-destination__product .order-subInfo__table {
    margin-bottom: 10px;
  }

  .order-detail .addressList-tableBtn > div {
    width: auto;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* ポイント履歴 */
  .pHistory-container.pc {
    display: none;
  }

  .pHistory-container.mobile {
    display: block;
  }

  .pHistory-top {
    display: block;
    margin-bottom: 50px;
  }

  .pHistory-years__display {
    text-align: right;
  }

  .pHistory-main {
    margin-top: 30px;
    border-top: solid 1px #ddd;
  }

  .pHistory-item {
    padding: 10px 0;
    border-bottom: solid 1px #ddd;
  }

  .pHistory-item__top {
    display: flex;
    justify-content: space-between;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* クーポン管理ページ */
  .coupon-item {
    margin-bottom: 20%;
    border: 3px solid #f4d078;
    height: auto;
  }

  .coupon-item__inner {
    height: auto;
    border: none;
  }

  .coupon-image {
    height: auto;
  }

  .coupon-image img {
    width: 100%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* あとで買う */
  .favorite-container.pc {
    display: none;
  }

  .favorite-container.mobile {
    display: block;
  }

  .favorite-item__box {
    border-top: 1px solid #ddd;
  }

  .favorite-item {
    padding: 10px 0 20px;
    border-bottom: 1px solid #ddd;
  }

  .favorite-item__headline {
    display: flex;
  }

  .favorite-item__headline a {
    display: block;
    width: 100%;
  }

  .favorite-item__image {
    padding-right: 10px;
  }

  .favorite-item__headline img {
    width: 50px;
  }

  .favorite-name {
    width: 100%;
  }

  .favorite-delete {
    margin-top: 20px;
    text-align: right;
  }

  .favorite-delete > div {
    width: 50%;
    margin: 0 auto;
  }

  .favorite-delete button {
    padding: 2px 5px;
  }

  .favorite .cartBtn > form > input[type='button'] {
    margin: 0 auto;
  }

  .favorite .optionBtn > form > input[type='button'] {
    padding: 6px 10px;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 特定商取引法に関する表記 */
  .businessDeal-shop.pc {
    display: none;
  }

  .businessDeal-shop.mobile {
    display: block;
  }

  .businessDeal-shop.mobile .customer-confirmed {
    margin: 5px auto 30px;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* プライバシーポリシー */
  .businessDeal-privacy > p:first-of-type {
    text-align: inherit;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 紹介 */
  .introduce-container button,
  .introduce-container #copyText {
    width: 80%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* マイレビュー */
  .myreview-container.pc {
    display: none;
  }

  .myreview-container.mobile {
    display: block;
  }

  .myreview-box {
    border: none;
  }

  .myreview-item {
    padding: 10px 0;
    border-top: solid 1px #000;
    border-bottom: none;
    display: inherit;
  }

  .myreview-item:last-of-type {
    border-top: solid 1px #000;
  }

  .myreview-item__top {
    display: flex;
  }

  .myreview-item__top p:last-of-type a,
  .myreview-item__bottom p:last-of-type a {
    color: #b29148;
  }

  .myreview-item__top p:last-of-type a:hover,
  .myreview-item__bottom p:last-of-type a:hover {
    color: #ebd088;
  }

  .myreview-item__bottom p {
    margin-bottom: 5px;
  }

  .myreview-item__bottom p:first-of-type {
    color: #777;
  }

  .myreview-text {
    padding: 10px 0;
  }

  .myreview-item__bottom p:last-of-type {
    text-align: right;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* レビュー作成 */
  .reviewCreate-top__right p,
  .reviewCreate-middleTop.pc,
  .reviewCreate-caution {
    display: none;
  }

  .reviewCreate-top__right p:first-of-type {
    display: block;
  }

  .reviewCreate-middleTop.mobile {
    display: block;
  }

  .reviewCreate-top {
    margin-bottom: 10px;
  }

  .reviewCreate-middleTop.mobile p {
    border-left: 10px solid #000;
    padding-left: 10px;
    border-bottom: none;
    font-weight: normal;
  }

  .customer-review__rate > span {
    display: block;
    margin-top: 10px;
  }

  .review-profile__box > span {
    display: block;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* レビュー内容確認 */
  .reviewCreate-top.pc,
  .reviewCreate-middleTop,
  .reviewCreate-caution {
    display: none;
  }

  .review-confirm__field {
    border: solid 1px #eee;
  }

  .review-confirmed__item {
    margin-bottom: 0;
    border-bottom: solid 1px #eee;
  }

  .review-confirmed__item:last-of-type {
    border-bottom: none;
  }

  .review-confirmed__item p,
  .review-confirmed__item img {
    padding: 5px;
  }

  .review-confirmed__mBorder {
    border-bottom: solid 1px #eee;
    background: #ccc
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* アドレス帳登録 */
  .addressList-top {
    display: block;
  }

  .addressList-form.pc {
    display: none;
  }

  .addressList-form.mobile {
    display: block;
  }

  .addressList-control {
    margin: 0 auto 20px;
    width: 100%;
    justify-content: center;
  }

  .addressList-control > div {
    margin: 0 10px;
  }

  .addressList-main__item {
    margin-bottom: 30px;
  }

  .addressList-tableBtn {
    margin-top: 20px;
  }

  .addressList-tableBtn > div {
    margin: 0 5%;
    width: 30%;
  }

  .addressList .addressList-tableBtn {
    width: 100%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* footer */
  .footer-contents {
    width: auto;
    margin: 0 5%;
  }

  .footer-menu ul {
    display: block;
  }

  .footer-menu ul li {
    padding: 10px 0;
  }
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 画面幅767ox以下 */
@media screen and (max-width: 767px) {

  /* ヘッダー */
  .header-top__inner #cart_num {
    right: 1.5%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* トップページ */
  .home-bItem__container a {
    margin: 10% auto 0;
    width: 80px;
  }

  .home-bItem__container a p {
    font-size: 0.9em;
    padding: 8px;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 会員登録 */
  .registration-postNumber input {
    width: 44%;
  }

  .registration-phonNumber input {
    width: 29%;
  }

  .registration-linkArea {
    display: block;
  }

  .registration-linkBack,
  .registration-linkNext {
    width: 100%;
    margin-bottom: 20px;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 商品詳細 */
  .pDetail-main {
    width: auto;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* spシーズナブル */
  .spSeason-slider img {
    width: 80%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 注文詳細 */
  .order-detail .addressList-tableBtn > div {
    width: 100%;
    margin: 5px 0;
  }

  .order-detail .addressList-tableBtn > div input {
    margin: 0 auto;
  }
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* 画面幅575px以下 */
@media screen and (max-width: 575px) {
  /* 共通 */
  .min-device {
    display: block;
  }

  .notice-modal__inner {
    width: inherit;
  }

  form .separateForm3 input {
    width: 29%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* ヘッダー */
  .header-top__middleLeft {
    left: 20%;
  }

  .header-top__middleRight {
    right: 20%;
  }

  /* ヘッダー */
  .header-top__inner #cart_num {
    right: 2%;
    top: 30%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* グローバルナビ */
  #global-nav {
    width: 100%;
    left: -100%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* サーチ */
  #search {
    width: 100%;
    left: -100%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 商品一覧 */
  .products-item__price p {
    font-size: 20px
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* レビュー */
  .review-contents,
  .review-bottomLink {
    width: 100%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* レコメンド */
  .rSlider-item {
    width: 100px!important;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 購入エリア */
  .purchase-area__main {
    padding: 0;
  }

  .purchase-area__favorite {
    display: none;
    width: auto;
  }

  .purchase-area__favorite.min-device {
    display: block;
    margin: 10px;
    max-width: 100%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* トップページ */
  .home-banner__container .row div {
    padding: 0 5px;
  }

  .home-bItem__container .row div {
    margin-bottom: 10%;
  }

  .home-bItem__container a {
    margin: 10% auto 0;
    width: 60px;
  }

  .home-bItem__container a p {
    font-size: 0.7em;
    padding: 5px;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 会員登録完了 */
  .rDone-link {
    width: 100%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 商品詳細 */
  .pDetail-option__area span select,
  .pDetail-package__item > select {
    width: 25%;
  }

  .pDetail-main__line a img {
    width: 150px;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* spシーズナブル */
  .spSeason-item__main {
    padding: 10px;
  }

  .spSeason-slider img {
    width: 70%;
  }

  .spSeason-item__btnArea {
    display: block;
  }

  .spSeason-itemMain__right {
    padding: 0;
  }

  .spSeason-item__title h3 {
    font-size: 20px;
  }

  .spSeason-item.cartBtn {
    font-size: 14px;
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }

  .spSeason-item.optionBtn {
    font-size: 14px;
    min-width: auto;
    margin-top: 20px;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* カート */
  .cart-item__bottom li {
    padding: 0 2.5%;
  }

  .cart-number__area input:first-of-type.cartNumber-btn.optionBtn {
    width: 25px;
  }

  .cart-number__area input {
    width: 30px;
  }

  .cart-number__area input:last-of-type.cartNumber-btn.optionBtn {
    width: 25px;
  }

  .cart-formOfTop input[type='submit'][value='カートを空にする'],
  .cart-top__backLink {
    width: auto;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* お届け先指定 */
  .customerRecieve-date select {
    width: 50%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* マイページ */
  .mypage-container li a p {
    padding-left: 0.5em;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 注文履歴 */
  .oHistory-item p {
    width: 90%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* 注文詳細 */
  .oDetail-information__pBottom {
    width: 100%;
  }

  .oDetail-destination__fee {
    width: 100%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* ポイント履歴 */
  .pTransfer-press span,
  .take-partsPoint__form span,
  .pTransfer-havap span {
    display: inline-block;
  }

  .pTransfer-havap {
    text-align: inherit;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* ポイントプレゼント画面 */
  .pTransfer-rUrl {
    word-break: break-word;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* アドレス帳管理 */
  .addressList-control {
    display: block;
  }

  .addressList-control > div {
    margin: 10px 0;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* あとで買う */
  .favorite-delete > div {
    width: 100%;
  }

  /* -------------------------------------------------------------------------------------------------------------------------- */

  /* フッター */
  .purchase-area__cart a p,
  .purchase-area__buyNow a p {
    font-size: 0.9em;
  }
}
