@charset "UTF-8";
/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
reset.css
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
/*!────────────────────────────────────────
 * ress.css • v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 ────────────────────────────────────────*/
/*
  # Global selectors
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap");
html {
  box-sizing: border-box;
  overflow-y: scroll;
  /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%;
  /* iOS 8+ */
}

*,
::before,
::after {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/*
  # General elements
 */
/* Add the correct display in iOS 4-7.*/
audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
}

/*
* Correct `block` display not defined for any HTML5 element in IE 8/9
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox
* Correct `block` display not defined for `main` in IE 11
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden],
template {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: 1px dotted;
  /* Add a bordered underline effect in all browsers */
  text-decoration: none;
  /* Remove text decoration in Firefox 40+ */
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects;
  /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

b,
strong {
  font-weight: bolder;
  /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

dfn {
  font-style: italic;
  /* Address styling not present in Safari and Chrome */
}

/* Address styling not present in IE 8/9 */
mark {
  background-color: #ff0;
  color: #000;
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
  # Forms
    */
input {
  border-radius: 0;
}

/* Apply cursor pointer to button elements */
button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
  cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type="number"] {
  width: auto;
  /* Firefox 36+ */
}

[type="search"] {
  -webkit-appearance: textfield;
  /* Safari 8+ */
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Safari 8 */
}

textarea {
  overflow: auto;
  /* Internet Explorer 11+ */
  resize: vertical;
  /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule. */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

/* Style select like a standard input */
select {
  -moz-appearance: none;
  /* Firefox 36+ */
  -webkit-appearance: none;
  /* Chrome 41+ */
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor;
  /* Internet Explorer 11+ */
}

legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}

[type="search"] {
  -webkit-appearance: textfield;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

/*
  # Specify media element style
   */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
  /* Internet Explorer 11- */
}

audio,
canvas,
progress,
video {
  display: inline-block;
  /* Internet Explorer 11+, Windows Phone 8.1+ */
}

/*
  # Accessibility
    */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~="screen"] {
    display: inherit;
  }
  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

/* Specify the progress cursor of updating elements */
[aria-busy="true"] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/*
  # Selection
    */
/* Specify text selection background color and omit drop shadow */
::-moz-selection {
  background-color: #b3d4fc;
  /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

:focus {
  outline: none;
}

/*added 2018-05-14*/
ul {
  list-style: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* 基本設定
 *----------------------------------------------------------------------*/
body {
  color: #000;
  font-size: 1.3rem;
  /*13px*/
  line-height: 1.6;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sp_only {
  display: none;
}

#sysAll {
  max-width: 100%;
  background-color: transparent;
  padding: 0;
}

#sysHeader {
  margin: 0;
  padding: 0;
}

div#sysMain {
  float: none;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

#sysFooter {
  margin: 0;
  padding: 0;
}

#top #sysWrap {
  margin-top: 0;
}

.sysContent {
  padding: 0;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: inherit;
}

a {
  color: #000;
  text-decoration: none;
  font-weight: inherit;
}

p {
  margin: 10px auto;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* フォーム要素の基本レイアウト */
input[type=search], input[type=text], input[type=tel], input[type=email], input[type=password], textarea {
  -webkit-appearance: none;
  padding: 10px 5px !important;
  width: 100%;
  line-height: 2;
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 0;
}

input[type=submit] {
  -webkit-appearance: none;
  padding: 10px 5px !important;
  line-height: 2;
  margin-top: 30px;
}

input[type="radio"] {
  margin: 10px 10px 20px;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 *  Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  /*background: url("owl.video.play.png") no-repeat;*/
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-controls {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-controls .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.owl-controls .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}

.owl-controls .owl-nav .disabled {
  opacity: .5;
  cursor: default;
}

.owl-dots {
  text-align: center;
}

.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
  position: relative;
  top: 10px;
}

.owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  margin: 5px 12.5px;
  background: #999;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  -ms-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
  background: #000;
}

.owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-nav [class*=owl-] {
  position: absolute;
  top: 98%;
  margin-top: -18.5px;
  outline: 0;
  width: 20px;
  height: 37px;
  padding: 0;
  text-indent: -9999px;
  z-index: 9999;
  border: none;
  border-radius: none;
  cursor: pointer;
}

.owl-nav .owl-prev {
  left: 35%;
  background: url(/img/common/controls.png) no-repeat 0 0;
  background-size: 40px;
}

.owl-nav .owl-next {
  right: 35%;
  background: url(/img/common/controls.png) no-repeat -20px 0;
  background-size: 40px;
}

.owl-nav .owl-prev:hover {
  background-position: 0 0;
}

.owl-nav .owl-next:hover {
  background-position: -20px 0;
}

/* 検索ボックス */
.search_bx form {
  overflow: hidden;
  border: 1px solid #dddddd;
}

.search_bx .sysItemSearchFormWord {
  float: left;
  width: 70%;
}

.search_bx input[type="search"] {
  height: 40px;
  border: none;
  padding: 5px;
  width: 100%;
}

.search_bx .sysSearchButton {
  overflow: hidden;
  float: left;
  display: block;
  width: 30%;
  height: 40px;
  margin: 0;
  padding: 0;
  text-indent: -999px;
  border-radius: 0px;
  border: none;
  background: #222222 url(/img/common/ico_search.png) no-repeat center center;
  background-size: 70px;
  cursor: pointer;
}

/* submitボタンの調整 */
#sysMypageReminder #sysMain input[type=submit],
.sysBackButton,
.sysNextSubmit {
  background: #666;
  color: #fff;
  display: block;
  padding: 10px 15px;
  text-shadow: none;
  border-color: transparent;
  width: 80%;
  height: 50px;
  margin: 0 auto;
}

/* 商品カテゴリページ */
.sysFuncItemCategory a {
  line-height: 1.75;
}

.sysFuncItemCategory a:hover {
  background: #eee;
}

.sysSelectionDescription {
  margin: 2px 0 10px;
}

/* 4-1-3 Category View Mode */
/* PRアイコン設定 */
.sysItemPr {
  font-size: small;
  padding: 0 5px;
  background: #fff;
  border: 1px solid #666;
  border-radius: 3px;
  display: inline-block;
  font-weight: bold;
}

/*PRアイコン(商品詳細ページ)*/
/* カートボタン */
.sysCartButton:hover {
  background: #999;
}

/* アーカイブリスト */
.sysItemList ul.sysList li .sysThumbnailImage {
  width: 40%;
  max-width: 200px;
}

/* 4-1-7  商品サムネイル画像 */
.sysItemList ul.sysThumbnail li {
  display: inline-block;
  float: none;
  vertical-align: top;
  letter-spacing: normal;
}

.sysItemList ul.sysThumbnail {
  letter-spacing: -.4em;
}

.sysItemList ul.sysThumbnail input {
  width: 100%;
  padding: 10px 0;
}

/* 商品ぺージ */
/* 商品画像 */
.sysThumbnailImage > span, .sysThumbnailImage > br {
  display: none;
}

.sysItemImages {
  max-width: 500px;
  padding-right: 20px;
}

.sysItemImages .sysImageList li {
  display: inline-block;
  vertical-align: top;
  height: auto;
  width: 23%;
  line-height: 1;
  float: none;
  margin: 1% 0;
}

/* 商品名 */
.sysItemName h1 {
  font-size: x-large;
}

/* 注文エリア*/
.orderArea {
  letter-spacing: -.4em;
  text-align: center;
}

.orderArea > div {
  width: 50%;
  display: inline-block;
  letter-spacing: normal;
  text-align: left;
  vertical-align: top;
}

.orderArea > .orderArea > div {
  width: 100%;
  display: block;
}

/* 商品ページのタイトル */
.sysItemName,
.sysExplanation > div > span,
.sysReview > span {
  display: block;
  margin-bottom: 0px;
  font-size: large;
}

/* 商品説明 */
.sysExplanation table {
  width: 100%;
  text-align: center;
  border: 1px solid #999;
  line-height: 2;
}

.sysExplanation thead {
  text-align: center;
  color: #fff;
  background: #999;
}

.sysExplanation td {
  font-size: small;
  text-align: left;
  padding-left: 10px;
}

/* 買い物フォーム */
/* ログインボタン */
.sysLoginButton,
.sysButton {
  border: none;
  padding: 10px;
  margin: 5px 0;
  background-color: #dddddd;
  color: #000;
  cursor: pointer;
}

.sysLoginButton {
  display: block;
  width: 50%;
  margin: 10px auto;
  padding: 20px;
}

/* カートボタン */
.sysCart #sysMain .sysNextSubmitArea .sysNextSubmit,
.sysCart #sysMain input[type=submit],
.sysCart #sysMain button[type=submit],
.sysCart #sysMain button {
  background: #666;
  color: #fff;
  text-shadow: none;
}

.sysCartInDone {
  margin: 0;
}

/* フォームページの基本レイアウト*/
#sysFormConfirm label, #sysMemberRegisterConfirm label {
  display: block;
  margin: 15px 0 5px !important;
}

#sysFormConfirm .sysFormField #sysMemberRegisterConfirm .sysFormField {
  margin: 10px 0 20px !important;
}

#sysFormConfirm button.sysButton {
  width: 49%;
  float: left;
  margin: 0;
  margin-right: 1%;
  margin-top: 30px;
  height: 50px;
  border-radius: 3px;
  background: #ccc;
  color: #444;
}

#sysFormConfirm .sysNextSubmit {
  width: 49%;
  margin: 0;
  margin-top: 50px;
  margin-left: 1%;
}

#sysMemberRegisterConfirm .sysNextSubmit {
  width: 49%;
  margin: 0;
  margin-top: 20px;
  margin-right: 1%;
}

#sysMemberRegisterConfirm .sysBackButton {
  width: 49%;
  margin: 0;
  margin-left: 1%;
  margin-top: 0px;
  height: 50px;
  background: #ccc;
  color: #444;
}

#sysFormThanks .completeText {
  margin: 20px 0;
  text-align: center;
  font-size: 15px;
}

#sysFormThanks .completeText a {
  color: #068acc;
  text-decoration: underline;
}

#sysMemberRegisterRegister #sysMain h2,
#sysMemberRegisterConfirm #sysMain h2,
#sysMemberRegisterIndex #sysMain h2,
#sysFormThanks #sysMain h2,
#sysFormConfirm #sysMain h2,
#sysFormIndex #sysMain h2 {
  display: none;
}

#sysFormIndex #sysMain input {
  font-size: 15px;
}

#sysFormIndex .txtBlock {
  text-align: center;
}

#sysMemberRegisterConfirm #sysMain > form,
#sysMemberRegisterIndex #sysMain > form,
#sysFormConfirm #sysMain > form,
#sysFormIndex #sysMain > form {
  padding: 10px;
}

#sysMypageReminder #sysMain input[type="text"],
#sysMemberRegisterIndex #sysMain input[type="text"],
#sysFormIndex #sysMain input[type="text"],
#sysFormIndex #sysMain textarea {
  background: #fff;
  border-radius: 0;
}

#sysMemberRegisterIndex #sysMain input[type="tel"],
#sysMemberRegisterIndex #sysMain input[type="email"],
#sysMemberRegisterIndex #sysMain input[type="password"] {
  background: #fff;
  border-radius: 0;
}

#sysMain .sysRequired {
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 15px;
  margin-bottom: 5px;
}

#sysMain textarea {
  min-height: 75px;
}

.sysZipcode button,
.sysZipcode .sysFormField {
  display: inline-block;
}

.sysZipcode .sysFormLabel {
  display: block;
}

.sysZipcode .sysFormField {
  width: 200px;
}

.sysZipcode br {
  display: none;
}

.sysBirthday input {
  width: auto !important;
}

/* フォーム確認ぺージ */
/* マイページ */
.sysMypageMajorHeadLine {
  display: none;
}

.SysMypageMinorHeadLine {
  font-size: 18px;
  border-left: 5px solid #3d3d3d;
  padding-left: 5px;
  margin: 20px 0;
}

#sysMypageLogin .sysMypageMinorHeadLine {
  display: none;
}

/* 購入履歴 */
.sysOrderList {
  border: 1px solid #d4d4d4;
  padding: 10px;
  max-height: 400px;
  overflow-y: scroll;
}

.sysOrderList li {
  border-bottom: 1px dotted #d4d4d4;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

/* Member Profile Editor */
#sysMypageEditConfirm #sysMain > form {
  padding: 10px;
}

/* Special Point */
.sysSpecialPoint {
  overflow: hidden;
  letter-spacing: -.4em;
}

.sysSpecialPoint > div:nth-child(2n) {
  width: 60%;
}

.sysSpecialPoint > div {
  display: inline-block;
  letter-spacing: normal;
  padding: 5px 10px;
  border-bottom: 1px solid #d5d5d5;
}

.sysSpecialPoint > div:nth-child(2n+1) {
  width: 40%;
}

/* 4-5-4 Coupon List */
.sysCoupon {
  border: 1px solid #d5d5d5;
  margin: 10px;
}

/* マイページ（複数配送先編集画面）*/
.sysSelectAddress {
  background: none;
}

.sysSelectAddress a {
  display: block;
  text-decoration: none;
  border: 0px solid;
  padding: 10px;
}

.sysSelectAddress {
  margin: 10px 0;
}

.sysSelectAddress a:hover {
  background: #eee;
}

/***********************************
  商品詳細ページ
***********************************/
/*PRアイコン(カテゴリーページ)*/
.modaal-container {
  max-width: 750px !important;
  padding: 30px 8%;
  box-shadow: none !important;
  color: #333 !important;
}

.sysWishListButton {
  background: #ddd;
  border: 1px solid #999;
  border-radius: 3px;
  text-decoration: none;
}

/* お気に入り登録時の画面 */
/* バツボタン */
.modaal-close {
  width: 50px;
  height: 50px;
  width: 22px !important;
  height: 22px !important;
  position: absolute !important;
  right: 15px !important;
  top: 15px !important;
  border-radius: 0 !important;
  border: 1px solid #000 !important;
  background-color: #fff !important;
}

.modaal-close:after, .modaal-close:before {
  display: block;
  content: " ";
  position: absolute;
  top: 10px !important;
  left: 19px !important;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #000 !important;
  -webkit-transition: background .2s ease-in-out;
  transition: background .2s ease-in-out;
}

.modaal-close {
  width: 44px !important;
  height: 44px !important;
  right: 10px !important;
  top: 10px !important;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

/* サンプルイメージ */
.mdl-dialog__image::before {
  content: "お気に入り登録完了";
  margin-bottom: 15px;
  display: block;
  text-align: center;
  font-size: 1.3rem;
}

.mdl-dialog__image {
  width: 88.81%;
  max-width: 250px;
  margin: auto;
}

.massage {
  text-align: center;
}

/* ログインボタン */
.sysWishlistLoginButton {
  width: 167px;
  /* height: 35px; */
  line-height: 35px;
  position: relative;
  background-color: #da4636;
  text-align: center;
  font-size: 1.3rem;
  transition: .2s;
  color: #fff;
}

.sysWishlistLoginGroup {
  margin: auto auto 30px !important;
  text-align: center;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
  background-repeat: no-repeat;
  box-sizing: inherit;
}

.mdl-dialog__content {
  padding: 0 0 30px !important;
  font-size: 1.6rem !important;
}

/* 会員登録ボタン */
.sysWishlistMemberRegisterGroup::before {
  content: "会員登録をされていないお客様はこちら";
  margin-top: 12px;
  display: block;
  font-size: 1.1rem;
  text-align: center;
}

.sysWishlistMemberRegisterGroup {
  width: 80%;
  text-align: center;
  height: 92px;
  border: 1px solid #bbb;
  position: relative;
  background-color: #fff;
  margin: auto auto 30px !important;
}

.sysWishlistMemberRegistButton {
  width: 167px;
  /* height: 35px; */
  line-height: 35px;
  position: relative;
  background-color: #da4636;
  text-align: center;
  font-size: 1.3rem;
  transition: .2s;
  color: #fff;
}

/* この画面を閉じるボタン */
.sysWishlistCloseBottomButtonGroup {
  margin-top: 30px;
  text-align: right;
  font-size: 1.3rem;
}

/*SNSボタン*/
/*テーブルデザイン*/
.sysExplanation table {
  margin-bottom: 40px;
  border: none;
  border-top: 1px solid #ccc;
}

.sysExplanation table tr {
  border-bottom: 1px solid #ccc;
}

.sysExplanation table th,
.sysExplanation table td {
  padding: 3px 10px;
  text-align: center;
  border: none;
}

/*商品ページ用おすすめ商品*/
.itempage_recommend .sysItemBlock .sysHorizontal li {
  width: 25%;
  padding: 0 10px;
}

.itempage_recommend .sysItemName {
  margin-bottom: 0;
  font-size: 14px;
  text-align: left;
}

.itempage_recommend .sysItemPrice {
  text-align: left;
}

/*商品ページ成分表*/
/***********************************
  カートページ
***********************************/
/*カートページ内レイアウト調整*/
.sysCart .header_h1_under,
.sysOpcBody .header_h1_under {
  float: none;
  padding: 10px 0;
  width: 100%;
  height: auto;
  background-color: #fff;
}

.sysCart .header_h1_under a,
.sysOpcBody .header_h1_under a {
  display: block;
  width: 160px;
  margin: 0 auto;
}

.sysCart .header_h1_under .logo img,
.sysOpcBody .header_h1_under .logo img {
  float: none;
  margin-right: 0;
}

.sysCart .header_h1_under .head_title,
.sysOpcBody .header_h1_under .head_title {
  text-align: center;
}

.sysCart .header_wrap {
  border-bottom: none;
  height: auto;
  position: inherit;
}

.sysCart #sysWrap {
  margin: 0 auto;
}

.sysCart #sysMain, .sysCart #sysMain a {
  color: #000;
}

.sysCart .sysBox, .sysCart .sysSelectPaymentArea,
.sysCart .sysSelectDeliveryArea, .sysCart .sysRemarksArea,
.sysCart .sysSelectOptionArea, .sysCart .sysDetail,
.sysCart .sysOrder .nav,
.sysCart .sysAcceptDomainArea,
.sysCart .sysRepeatOrderSetting {
  background-color: #ffffff;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  box-shadow: none;
  margin: 1em auto 2em;
  padding: 1em;
}

.sysCart .sysBox hr {
  display: block;
  border: 0;
  height: 0;
  border-bottom: 1px solid #cfcfcf;
  margin: 5px 0;
  padding: 0;
}

.sysCart #sysMain input[type="text"],
.sysCart #sysMain input[type="password"],
.sysCart #sysMain input[type="email"],
.sysCart #sysMain input[type="number"],
.sysCart #sysMain input[type="tel"],
.sysCart #sysMain input[type="search"],
.sysCart #sysMain textarea {
  background: none;
  border-radius: 0;
  border: 1px solid #dddddd;
}

.sysCart .sysTotalTxt {
  text-shadow: none;
}

.sysTotal .sysTotalTxt .sysCartAttention {
  font-size: 2rem;
}

.sysCart .sysSubTotalArea {
  margin: 10px 0;
}

.sysCart .sysNextSubmitArea {
  margin-bottom: 20px;
}

.sysCart #sysMain .sysNextSubmitArea .sysNextSubmit {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  color: #fff;
  font-weight: bold;
  text-shadow: none;
  border: none;
}

.sysCart .sysCartAttention, .sysCart .sysRequired {
  color: #da4636;
  font-weight: bolder;
}

.sysCart .sysGetPoint {
  color: #da4636;
  font-weight: bolder;
}

.sysCart .sysCartNote {
  color: #000;
  font-size: 90%;
}

.sysCart .sysCartTitle {
  color: #000;
  font-size: large;
  font-weight: bolder;
  background-color: #fff;
  padding: 0;
  margin-bottom: 2-px;
}

.sysCart .sysCartTitle span {
  font-size: 1.2rem;
}

.sysCart #sysMain input[type="submit"], .sysCart #sysMain button[type="submit"], .sysCart #sysMain button {
  display: inline-block;
  padding: 10px;
  width: auto;
  height: auto;
  color: #000;
  background: #fff;
  border-radius: none;
  border: 1px solid #999;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.sysCart .sysDeleteArea, .sysCart .sysConfirmButton {
  text-align: right;
}

.sysCart .sysNavImg {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.sysCart .sysFreeArea {
  color: #000;
  margin: 20px 0;
}

.sysSelectPayment li:last-child,
.sysSelectDelivery li:last-child,
.sysSelectOption li:last-child,
.sysCart .sysDetail li:last-child,
.sysRemarks, .sysCart .sysOrder .nav li:last-child {
  border-bottom: none;
}

.sysCart .sysAcceptDomainArea input {
  padding: 0 10px !important;
}

.sysCart .cart_btn {
  color: #000;
  text-align: center;
  margin-top: 40px;
}

.sysCart .cart_btn p {
  margin: 0;
  padding: 0;
}

.sysCart .cart_btn .btn {
  margin-top: 5px;
}

.sysCart .cart_btn img {
  width: 200px;
  border: 1px solid #d0d0d0;
}

#sysBasket #sysMain {
  padding-top: 10px;
}

.sysCart .cart_info .sysContent {
  max-width: 300px;
  color: #000;
  text-align: center;
  font-weight: bolder;
  font-size: 13px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  margin: 1em auto 0 auto;
  padding: 10px;
  background-color: #fff;
}

.sysCart #sysMain .sysConfirmButton input[type="submit"] {
  width: auto;
}

.sysCart #sysMain select {
  display: inline-block;
}

.sysCart .sysBtnChange {
  margin-bottom: 10px !important;
}

/*登録せずに購入*/
#sysBillingAddress .input-append input[type="text"] {
  display: inline-block;
}

/*都道府県*/
#sysBillingAddress .sysPrefState select {
  width: 200px;
}

/*性別*/
#sysBillingAddress .sysGender {
  margin-bottom: 20px;
}

#sysBillingAddress .sysGender input {
  vertical-align: middle;
}

#sysBillingAddress .sysGender label {
  display: inline-block;
  margin-right: 20px;
}

/*メルマガ*/
#sysBillingAddress .sysAcceptMailmagazine {
  margin-bottom: 20px;
}

/*注文完了ページ*/
.cart_completion {
  text-align: center;
}

/*ご注文番号*/
#sysThanks #sysMain .sysOrderNumber {
  font-size: 1.5rem;
  font-weight: bold;
}

/*お買い物を続ける*/
body#sysBasket .sysBackButton2 {
  font-weight: bold;
  background: #b4f4ff !important;
  border-color: #000 !important;
}

/***********************************
  ワンページカート
***********************************/
.mdl_btn_.opcDialog, form.opcUseAmazon {
  width: 100%;
  padding-right: 0;
}

.sysCart #sysMain h3 {
  font-size: 20px;
}

.sysCart #sysMain #show-dlg-1,
.sysCart #sysMain #show-dlg-1_low,
.sysCart #sysMain .sysOpcNextSubmit,
.sysCart #sysMain .sysNextSubmit {
  display: block;
  width: 100% !important;
  padding: 15px 10px !important;
  margin: 5px 0 !important;
  color: #fff !important;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
  text-shadow: none;
  box-shadow: none;
  border: none !important;
}

.sysCart #sysMain #show-dlg-2,
.sysCart #sysMain #show-dlg-3 {
  display: block;
  width: 100% !important;
  padding: 10px;
  margin: 0 0 30px !important;
  color: #fff !important;
  font-size: 1.2rem;
  line-height: 1;
  text-shadow: none;
  box-shadow: none;
  border: none !important;
  border-radius: 5px;
  background: #000 !important;
}

.sysCart #sysMain #show-dlg-3 {
  color: #fff !important;
}

.sysCart #sysMain .next_btn {
  color: #fff !important;
  font-size: 1rem;
  line-height: 1;
  border: none !important;
  background: #000 !important;
}

.sysCart #sysMain #order_price_confirm_btn {
  color: #fff !important;
  width: 100% !important;
  box-shadow: none;
  background: #000 !important;
}

.sysCart #sysMain .mdl-js-button {
  box-shadow: none;
}

.sysCart #sysMain #change-to-billAddr,
.sysCart #sysMain #show-dlg-addrList,
.sysCart #sysMain #show-dlg-inputAddr {
  line-height: 1;
  border: none !important;
  background: #000 !important;
}

.sysCart #sysMain p.user_type {
  font-size: 1.2rem;
}

.sysOpcProduct .sysOpcItemName {
  font-size: 1.2rem;
}

/*情報入力ページ調整*/
.sysOpcBody div#sysWrap {
  margin: 0 auto;
}

.sysOpcBody .header_wrap {
  height: auto;
  position: static;
  border-bottom: none;
}

.sysOpcBody .header_h1_under a {
  pointer-events: none;
}

.sysOpcBody .footer .f_gnav_all {
  display: none;
}

input[type="button"],
select {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
}

select {
  padding: 0 .5em;
}

.sysOpcBody img {
  max-width: 100%;
}

.opcCommonInputText,
.opcCommonInputSelect,
.opcCommonInputRadio,
.opcCommonInputCheckbox {
  margin-left: 0 !important;
}

.opcCommonEditModeBlock {
  background: #fff !important;
  padding: 20px;
}

.opcOrderSummaryTitle,
.opcBillingAddressTitle,
.opcDeliveryAddressTitle,
.opcItemTitle,
.opcPaymentMethodTitle {
  font-size: large !important;
  margin-bottom: 0.5em;
}

.opcItem {
  padding: 3%;
  border: 1px solid #9b9b9b;
  margin-top: 10px;
}

.opcCommonInputSelect,
.opcCommonButton {
  /*width: 100px !important;*/
  background: #fff !important;
}

.opcCommonInputSelect {
  background: #f1f1f1 !important;
}

.opcBillingAddress_completeButton_edit,
.opcDeliveryMethod_completeButton_edit,
.opcPaymentMethod_completeButton_edit,
.opcItem_completeButton_edit,
.opcDeliveryAddress_completeButton_edit,
.opcPointAndCouponDialog_applyButton_edit,
.opcRemarks_completeButton_edit {
  background: #da4636 !important;
  border: 1px solid #da4636 !important;
  color: #fff !important;
  font-weight: bold;
}

.opcConfirm_inputStatus {
  display: block !important;
  width: 700px !important;
  margin: 0 auto 1em;
  background: #da4636 !important;
  color: #fff !important;
  border: 1px solid #da4636 !important;
  font-weight: bold;
}

.opcConfirm_inputStatus_disable {
  display: block !important;
  width: 700px !important;
  margin: 0 auto 1em;
  background: #ccc !important;
  color: #000 !important;
}

.opcConfirm_order {
  display: block !important;
  width: 700px !important;
  margin: 0 auto;
  background: #da4636 !important;
  color: #fff !important;
  border: 1px solid #da4636 !important;
  font-weight: bold;
}

.opcConfirm_order_disable {
  display: block !important;
  width: 700px !important;
  margin: 0 auto;
  background: #ccc !important;
  color: #000 !important;
}

.opcItem_increaseNumButton_edit,
.opcItem_decreaseNumButton_edit {
  width: 30px !important;
  background: #f1f1f1 !important;
}

.opcCommonButtonGroup {
  margin-top: 1em;
}

.opcBillingAddress_genderMaleAndLabelGroup_edit,
.opcBillingAddress_genderFemaleAndLabelGroup_edit {
  width: 15% !important;
}

.opcBillingAddress_acceptMailmagazineYesLabel_edit {
  margin-top: 1em;
  display: inline-block;
}

.opcOrderSummary_totalPriceAndLabelGroup {
  padding-bottom: 10px !important;
}

.opcCommonEditLabel {
  margin-top: 1em;
  border-left: 0px;
}

.opcOrderSummary_priceBreakDownGroup {
  padding-top: 1em;
  padding-bottom: 1em;
}

.opcOrderSummary_feeAndLabelGroup,
.opcOrderSummary_usePointPriceAndLabelGroup {
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.opcBillingAddress_prefState_edit {
  margin: 5px 0;
}

.opcBillingAddressButtonGroup_edit,
.opcDeliveryAddress_buttonGroup,
.opcDeliveryMethod_buttonGroup_edit {
  padding: 1em 0;
}

.opcDeliveryMethod_hopeDeliveryDateAndLabelGroup_edit,
.opcDeliveryMethod_hopeDeliveryTimeAndLabelGroup_edit {
  margin-bottom: 1em;
}

.opcItem_itemSubTotalPriceAndLabelGroup {
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.opcDeliveryAddressAndDeliveryMethodGroup,
.opcItemList {
  margin-bottom: 0 !important;
  border: none !important;
  padding: 0 !important;
  position: static !important;
}

.opcBillingAddress .opcCommonReferenceLabel {
  width: 70px;
  display: inline-block;
  position: relative;
}

.opcBillingAddress .opcCommonReferenceLabel::after {
  position: absolute;
  right: 0;
}

.opcDeliveryMethod .opcCommonReferenceLabel {
  width: 123px;
  display: inline-block;
  position: relative;
}

.opcDeliveryMethod .opcCommonReferenceLabel::after {
  position: absolute;
  right: 0;
}

.opcCommonRequireLabel {
  color: #da4636 !important;
  font-weight: bold;
}

.opcRemarks_remark_edit {
  width: 100% !important;
}

.opcDeliveryAddressEditDialog_directChangeButtonAndLabelGroup {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2em;
}

.opcDeliveryAddressEditDialog_directChangeLabel {
  width: 100%;
}

.opcDeliveryAddressEditDialog_directChangeButtonAndLabelGroup .opcCommonButton {
  width: calc(32% - 1em) !important;
}

.opcItem_itemName {
  font-weight: bold;
  font-size: 15px;
}

.opcConfirm_headerErrorMessage {
  width: 100% !important;
  max-width: 800px;
}

.opcRemarks_remark,
.opcRemarks_cartOption {
  margin-left: 0 !important;
  width: 100% !important;
  white-space: normal !important;
}

#sysOpc > form + div {
  margin-bottom: 60px !important;
}

.opcDeliveryMethod_normalShippingDetailAndLabelGroup_edit {
  padding-left: 0 !important;
  margin-left: 0 !important;
  border-bottom: none !important;
}

.opcDeliveryAddress {
  border-bottom: 1px solid #9b9b9b;
  margin-bottom: 1em;
}

.opcDeliveryMethod_hopeDeliveryDateLabel_edit {
  width: 126px;
  display: inline-block;
}

/*完了ページ調整*/
#sysThanks #sysMain {
  border: none;
}

#sysThanks .sysNavImg {
  display: none;
}

#sysThanks.sysCart .sysBox:nth-of-type(2) div:nth-of-type(1),
#sysThanks.sysCart .sysBox:nth-of-type(2) div:nth-of-type(2) {
  margin-bottom: 1em;
}

/***********************************
  検索ページ
***********************************/
#sysItemSearch div#sysMain {
  max-width: 980px;
  margin: 20px auto 40px;
}

#sysItemSearch .sysThumbnail .sysItemPrArea {
  text-align: left;
  margin-top: 5px;
}

#sysItemSearch #sysMain h2 {
  font-size: 13px;
  margin-bottom: 10px;
}

#sysItemSearch #sysMain .sysItemSearchForm {
  font-size: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #ededed;
}

#sysItemSearch #sysMain .sysItemSearchFormWord {
  margin-bottom: 5px;
}

#sysItemSearch #sysMain .sysItemSearchFormWord input {
  height: 40px;
  vertical-align: bottom;
  border: 1px solid #d0d0d0;
}

#sysItemSearch #sysMain .sysSearchButton {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 95%;
  border: none;
  background: #222222;
  color: #fff;
  font-size: 120%;
  cursor: pointer;
  border-radius: 3px;
}

#sysItemSearch #sysMain .sysItemSearchFormRange input {
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

#sysItemSearch #sysMain .sysItemSearchFormRange,
#sysItemSearch #sysMain .sysItemSearchFormCategory,
#sysItemSearch #sysMain .sysItemSearchFormSort,
#sysItemSearch #sysMain .sysItemSearchFormLimit {
  display: inline-block;
  margin: 5px auto;
}

#sysItemSearch #sysMain .sysItemSearchFormRange input {
  padding: 10px;
}

/***********************************
  お問い合わせ
***********************************/
/***********************************
  新規会員登録
***********************************/
/***********************************
  マイページ
***********************************/
/***********************************
  ヘッダー
***********************************/
/***********************************
  カート情報
***********************************/
/***********************************
  ナビゲーション
***********************************/
/*ナビゲーショントグル*/
/***********************************
  フッター
***********************************/
/***********************************
  フッター部分のご利用ガイド
***********************************/
/*ボタン*/
/* ページトップに戻る*/
/***********************************
  サイド
***********************************/
/*検索ボックス*/
/***********************************
  共通パーツ
***********************************/
hr.style01 {
  width: 100%;
  height: 1px;
  background: #222222;
  margin: 50px auto;
  padding: 0;
  border: 0;
}

.contentsWrap {
  width: 1100px;
  margin: 0 auto;
}

/***********************************
  特商法テーブルレイアウト
***********************************/
#main_tradelaw, .main_tradelaw {
  border: 1px solid #ddd;
  margin: 0 auto 30px;
  max-width: 1100px;
}

#main_tradelaw dl, .main_tradelaw dl {
  background: #ededed;
  border-bottom: 1px dotted #bfbfbf;
  overflow: hidden;
}

#main_tradelaw dl:last-child, .main_tradelaw dl:last-child {
  border: 0px;
}

#main_tradelaw dt, .main_tradelaw dt {
  padding: 15px 0 15px 20px;
  float: left;
  clear: both;
  font-weight: bolder;
}

#main_tradelaw dd, .main_tradelaw dd {
  margin-left: 200px;
  padding: 15px;
  background: #fff;
}

.shipFee {
  max-width: 1100px;
  margin: 20px auto;
}

.shipFee .tableTitle {
  font-size: 16px;
  height: 70px;
  padding: 10px;
  color: #424242;
  margin: 50px 0 0px;
  border: 0px !important;
  text-align: leftr;
}

table.shipFeeTable {
  border-collapse: collapse;
  margin-bottom: 30px;
  text-align: left;
  line-height: 1.5;
  text-align: center;
}

table.shipFeeTable .eyeCatch {
  width: 120px;
  display: block;
  margin: 5px auto;
  height: 25px;
  line-height: 25px;
  color: #000;
  border-bottom: 1px solid #aaa;
  padding-bottom: 5px;
}

table.shipFeeTable thead {
  background: #555;
  text-align: center;
}

.spThead {
  display: none;
}

table.shipFeeTable thead th {
  padding: 10px;
  vertical-align: top;
  font-weight: normal;
  color: #fff;
}

table.shipFeeTable tbody .sum {
  position: relative;
}

table.shipFeeTable tbody .sum i {
  position: absolute;
  color: #888;
  font-size: 35px;
  right: -15px;
  bottom: 30px;
  z-index: 20;
}

table.shipFeeTable tbody th {
  width: 600px;
  padding: 10px;
  vertical-align: top;
  background: #fff;
  font-weight: normal;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

table.shipFeeTable td {
  width: 500px;
  padding: 10px;
  vertical-align: top;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #eee;
}

table.shipFeeTable b {
  color: #D42E30;
  display: inline-block;
  padding: 0 3px;
  font-size: 1.2em;
}

div#main_tradelaw a {
  display: inline-block;
  color: #068acc;
  text-decoration: underline;
}

/***********************************
  2カラムレイアウト
***********************************/
.column2Wrap {
  width: 1100px;
  margin: 0 auto;
}

.column2Wrap:after {
  display: block;
  content: "";
  clear: both;
}

.sideWrap {
  width: 180px;
  height: 1000px;
  background: #aaa;
  margin-right: 20px;
  float: left;
}

.mainWrap {
  width: 900px;
  margin-left: 200px;
}

.col2Style h2.pattern01 {
  font-size: 18px;
  border-left: 5px solid #3d3d3d;
  padding-left: 5px;
  margin: 15px 0;
}

.col2Style h2.pattern02 {
  font-size: 18px;
  border-bottom: 1px solid #3d3d3d;
  padding-left: 5px;
  padding-bottom: 5px;
  margin: 15px 0;
}

.col2Style h2.pattern03 {
  height: 35px;
  line-height: 35px;
  font-size: 18px;
  padding: 0 0px 3px 30px;
  margin: 0 0 15px;
  border-bottom: 1px solid #6843ac;
}

.col2Style h3.pattern01 {
  font-size: 14px;
  border-bottom: 0px solid #aaa !important;
  padding: 0px 0px 3px;
  margin: 15px 0 5px;
}

.col2Style h4.style01 {
  font-size: 15px;
  padding-bottom: 3px;
  margin: 20px 0;
  border-bottom: 0px solid #3d3d3d !important;
}

.col2Style .txtBlock {
  margin: 30px 0;
}

.col2Style .imgWrap {
  margin: 30px 0;
}

.col2Style .txtBlock a, #forbusiness .txtBlock a, #relocation .txtBlock a, #privacypolicy .txtBlock a {
  color: #068acc;
}

#shoplist td a, #corporate dd a {
  color: #068acc;
}

.col2Style .txtBlock li {
  margin: 5px 0;
  font-size: 12px;
}

.col2Style .txtBlock li .larger {
  font-size: 14px;
  margin-bottom: 10px;
}

.col2Style .txtBlock li span {
  width: 20px;
  display: inline-block;
}

.col2Style .imgWrap img {
  width: 40%;
  margin: 10px 0;
}

.col2Style .floatWrap {
  margin: 20px 0;
}

.col2Style .floatWrap:after {
  display: block;
  content: "";
  clear: both;
}

.col2Style .floatWrap img {
  width: 150px;
  float: left;
}

.col2Style .floatWrap .txt {
  padding-top: 5px;
  margin-left: 170px;
}

.col2Style .floatImg {
  text-align: center;
}

.col2Style .floatImg:after {
  display: block;
  content: "";
  clear: both;
}

.col2Style .floatImg .imgWrap {
  width: 50%;
  float: left;
}

.col2Style .floatImg .imgWrap img {
  width: 60%;
  margin: 20px 10%;
}

/***********************************
   お買い物ガイド
***********************************/
.indexList {
  margin: 10px 0;
}

.indexList li {
  display: inline-block;
  text-align: center;
  margin: 0 5px 10px;
  border: 1px solid #aaa;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 15px;
}

.guideBlock {
  padding-top: 30px;
}

/*商品購入ステップ*/
.steps ul {
  width: 700px;
  margin: 0 auto;
}

.steps ul:after {
  display: block;
  content: "";
  clear: both;
}

.steps li {
  float: left;
  padding: 0 6px;
  height: 200px;
}

.steps li a {
  display: block;
  height: 100%;
  height: 200px !important;
}

.steps li img {
  height: 200px;
}

/***********************************
   ボタンデザイン
***********************************/
/***********************************
  TOPページ
***********************************/
/*スライダー*/
/*新着アイテム*/
/*特集一覧*/
/*おすすめ商品、ランキング*/
/*おすすめ商品*/
/*ランキング*/
/*クロネコペイボタン装飾調整*/
div#kuronekoPayFlex {
  margin-right: 21px;
}

.sysCart #sysMain #kuronekoPayFlex button img {
  margin-top: -11px;
}

.sysCart #sysMain button#kmid-login-subwindow-launch,
.sysCart #sysMain button[onclick="Sys('#kmid-login-subwindow-launch').click()"] {
  padding: 10px 0px 0px 0px;
}

.sysConfirmButton input#open_dlg_edit_customer_info {
  display: inline-block;
  padding: 10px;
  width: auto;
  height: auto;
  color: #000;
  background: #fff;
  border-radius: none;
  border: 1px solid #999;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

@media only screen and (max-width: 600px) {
  .sysDisplayMobileNone {
    display: none !important;
  }
  /* 10-0 Only Smartphone
 *----------------------------------------------------------------------*/
  #sysMain, #sysAside {
    width: 100% !important;
  }
  .sysFormField label {
    display: block;
  }
  #sysFormIndex .txtBlock {
    text-align: left;
  }
  #sysMain {
    margin-top: 0;
  }
  .grid-col {
    float: none;
    width: 100% !important;
    margin-left: 0;
  }
  /*Header */
  #sysHeader {
    margin-bottom: 5px;
  }
  /* Category Pankuzu */
  /* Archive Thumbnail Item */
  .sysItemList ul.sysThumbnail {
    font-size: small;
  }
  .sysItemList ul.sysThumbnail input {
    font-size: x-small;
  }
  /* Order Area */
  .orderArea {
    letter-spacing: normal;
  }
  .orderArea > div {
    width: 100%;
    padding-right: 0;
    float: none;
  }
  /*header検索ボックス*/
  .h_search {
    margin-top: 30px;
  }
  /***********************************
  商品詳細ページ
***********************************/
  /*PRアイコン(商品カテゴリーページ)*/
  .sysAddSelection {
    font-size: 12px;
  }
  .sysSelectionDescription {
    font-size: 10px;
  }
  /*PRアイコン(商品詳細ページ)*/
  /*商品ページ用おすすめ商品*/
  .itempage_recommend .sysItemBlock .sysHorizontal li {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 20px;
  }
  .itempage_recommend .sysItemName {
    font-size: 12px;
  }
  .itempage_recommend .sysItemPrice {
    font-size: 11px;
  }
  /*for demo 2017/01/12*/
  .sysExplanation {
    float: none;
    width: 100%;
  }
  span.sp_newline {
    display: block;
  }
  /***********************************
  ヘッダー
***********************************/
  /***********************************
  カート情報
***********************************/
  /***********************************
  ナビゲーション
***********************************/
  /***********************************
  ログイン情報
***********************************/
  /***********************************
  ナビゲーションメニュー
***********************************/
  /***********************************
  フッター
***********************************/
  /***********************************
  サイド
***********************************/
  /***********************************
  共通パーツ
***********************************/
  .contentsWrap {
    width: 90%;
    margin: 0 auto;
  }
  /***********************************
  特商法テーブルレイアウト
***********************************/
  .p-law .sysTitle {
    width: 90%;
  }
  #main_tradelaw, .main_tradelaw {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 30px;
    border: 0px solid #ddd;
  }
  #main_tradelaw dl, .main_tradelaw d {
    width: 100%;
    background: #ededed;
    border-bottom: 0px dotted #bfbfbf;
    overflow: hidden;
  }
  #main_tradelaw dl:after, .main_tradelaw dl:after {
    display: block;
    content: "";
    clear: both;
  }
  #main_tradelaw dt, .main_tradelaw dt {
    width: 100%;
    padding: 15px 0 15px 20px;
    float: none;
    clear: both;
    font-weight: bolder;
  }
  #main_tradelaw dd, .main_tradelaw dd {
    margin-left: 0px;
    padding: 15px;
    background: #fff;
  }
  .shipFee {
    max-width: 1100px;
    margin: 20px auto;
  }
  .shipFee .tableTitle {
    text-align: center;
    font-size: 12px;
  }
  table.shipFeeTable {
    width: 100%;
    margin: 0%;
    border-collapse: collapse;
    margin-bottom: 30px;
    text-align: left;
    line-height: 1.5;
  }
  .spThead {
    display: block;
  }
  .pcThead {
    display: none;
  }
  table.shipFeeTable thead th {
    font-size: 12px;
    padding: 10px;
    font-weight: bold;
    vertical-align: top;
    color: #fff;
    text-align: left;
  }
  table.shipFeeTable tbody th {
    font-size: 12px;
    display: block;
    width: 100%;
    border: 0px solid #ddd;
  }
  table.shipFeeTable tbody .sum {
    position: relative;
    padding: 25px 10px;
    text-align: center;
  }
  table.shipFeeTable tbody .sum i {
    position: absolute;
    color: #888;
    font-size: 35px;
    left: 0;
    right: 0px;
    margin: auto;
    bottom: -20px;
    z-index: 20;
  }
  table.shipFeeTable td {
    display: block;
    width: 100%;
    vertical-align: top;
    border: 0px;
  }
  table.shipFeeTable b {
    color: #D42E30;
    display: inline-block;
    padding: 0 3px;
    font-size: 1.2em;
  }
  /***********************************
  2カラムレイアウト
***********************************/
  .col2Style h2.pattern03 {
    height: 35px;
    line-height: 35px;
    font-size: 18px;
    padding: 0 0px 3px 10px;
    margin: 0 0 15px;
    border-bottom: 1px solid #6843ac;
  }
  .col2Style .txtBlock li {
    margin: 10px 0;
  }
  .col2Style .imgWrap img {
    width: 80%;
    margin: 0px 10%;
  }
  .col2Style .floatWrap img {
    width: 80%;
    margin: 0px 10%;
    float: none;
  }
  .col2Style .floatWrap .txt {
    padding-top: 5px;
    margin-left: 0px;
  }
  .col2Style .floatImg .imgWrap {
    width: 100%;
    float: none;
  }
  .col2Style .floatImg .imgWrap img {
    width: 80%;
    margin: 20px 10%;
  }
  /***********************************
  お買物ガイド
***********************************/
  .indexList li {
    padding: 3px 5px;
    font-size: 12px;
  }
  .guideBlock {
    padding-top: 0;
    maergin-top: 30px;
  }
  /***********************************
  ご利用ガイド
***********************************/
  /* カート内商品数表示*/
  button.itemCount2 {
    display: none;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: rgba(207, 15, 42, 0.9);
    border: none;
    width: 18px;
    height: 18px;
    border-radius: 10px;
    text-align: center;
    line-height: 15px;
    font-size: 10px;
    color: #fff;
    font-weight: bold;
  }
  /*商品購入ステップ*/
  .steps ul {
    width: 350px;
  }
  .steps li {
    float: left;
    padding: 0 6px;
    height: 150px;
  }
  .steps li a {
    height: 150px !important;
  }
  .steps li img {
    height: 150px;
  }
}

@media only screen and (max-width: 600px) and (max-width: 350px) {
  /*商品購入ステップ*/
  .steps ul {
    width: 275px;
  }
  .steps li {
    float: left;
    padding: 0 2px;
    height: 100px;
  }
  .steps li a {
    height: 100px !important;
  }
  .steps li img {
    height: 100px;
  }
}

@media only screen and (max-width: 600px) {
  /* 決済ページ*/
  #sysPayment #sysWrap,
  #sysConfirm #sysWrap,
  #sysThanks #sysWrap,
  #sysCartError #sysMain {
    width: 95% !important;
    margin-left: 2.5%;
  }
  #sysBillingAddress form {
    width: 95%;
    padding: 30px 20px;
    margin: 0 auto;
  }
  #sysDestination #sysMain {
    width: 95%;
    border: 1px solid #aaa;
    padding: 20px 20px !important;
    margin: 30px auto;
  }
  /***********************************
  マイページ
***********************************/
  /***********************************
  新規会員登録
***********************************/
  /***********************************
  カートページ
***********************************/
  /*ドメイン*/
  .sysAcceptDomainArea .sysAcceptDomain a {
    padding: 0;
    font-size: 10px;
  }
  /***********************************
  ボタンデザイン
***********************************/
  /***********************************
  TOPページ
***********************************/
  /*.トップスライダー*/
  /*新着アイテム*/
  /*特集一覧*/
  /*おすすめ商品、ランキング*/
  /*おすすめ商品*/
  /***********************************
  ワンページカート
***********************************/
  /*情報入力ページ調整*/
  .sysOpcBody .header_wrap {
    border-bottom: none;
  }
  .sysOpcBody img {
    max-width: 100%;
  }
  .sysOpcBody div#sysWrap {
    margin: 20px auto 0;
  }
  .sysCart #sysMain,
  .sysOpcBody #sysMain {
    border: none;
  }
  .sysOpcBody div#sysMain {
    padding: 0 3%;
    margin-bottom: 0;
  }
  .opcCommonInputSelect,
  .opcCommonButton {
    /*width: 49% !important;*/
  }
  .opcConfirm_inputStatus,
  .opcConfirm_inputStatus_disable,
  .opcConfirm_order,
  .opcConfirm_order_disable {
    width: 94% !important;
  }
  .opcConfirm_inputStatus {
    margin-bottom: .5em;
  }
  .opcItem_increaseNumButton_edit,
  .opcItem_decreaseNumButton_edit {
    width: 40px !important;
  }
  .opcCommonButtonGroup {
    margin-top: 1em;
  }
  .opcBillingAddress_genderMaleAndLabelGroup_edit,
  .opcBillingAddress_genderFemaleAndLabelGroup_edit {
    width: 30% !important;
  }
  .opcBillingAddress_prefState_edit {
    margin: 5px 0;
    width: 100% !important;
  }
  .opcBillingAddress .opcCommonReferenceLabel {
    width: 70px;
    display: inline-block;
    position: relative;
  }
  .opcBillingAddress .opcCommonReferenceLabel::after {
    position: absolute;
    right: 0;
  }
  .opcDeliveryMethod .opcCommonReferenceLabel {
    width: 123px;
    display: inline-block;
    position: relative;
  }
  .opcDeliveryMethod .opcCommonReferenceLabel::after {
    position: absolute;
    right: 0;
  }
  .opcBillingAddress_addressGroup {
    width: calc(100% - 80px) !important;
  }
  .opcRemarks_remark_edit {
    width: 100% !important;
  }
  .opcDeliveryAddressEditDialog_directChangeButtonAndLabelGroup .opcCommonButton {
    margin: 0 0 .5em !important;
    width: 100% !important;
  }
  .opcOrderSummary_totalPriceLabel {
    font-size: 14px !important;
  }
  /*完了ページ調整*/
  #sysThanks #sysMain {
    width: 100% !important;
    padding: 0 !important;
  }
}

@media screen and (max-width: 1160px) and (min-width: 601px) {
  .sysDisplayTabletNone {
    display: none !important;
  }
  /* 20-0 Only Tablet
 *----------------------------------------------------------------------*/
  div#sysMain, div#sysAside {
    width: 100% !important;
    float: none;
  }
  .sysFormField label {
    display: block;
  }
  /* 決済ページ*/
  #sysPayment #sysWrap,
  #sysConfirm #sysWrap,
  #sysThanks #sysWrap,
  #sysCartError #sysMain {
    width: 95% !important;
    margin-left: 2.5%;
  }
  #sysBillingAddress form {
    width: 95%;
    padding: 30px 20px;
    margin: 0 auto;
  }
  #sysDestination #sysMain {
    width: 95%;
    border: 1px solid #aaa;
    padding: 20px 20px !important;
    margin: 30px auto;
  }
  /*header検索ボックス*/
  .h_search {
    margin-top: 100px;
  }
  /***********************************
  商品詳細ページ
***********************************/
  /***********************************
  ヘッダー
***********************************/
  /***********************************
  カート情報
***********************************/
  /***********************************
  ナビゲーション
***********************************/
  /***********************************
  ログイン情報
***********************************/
  /***********************************
  ナビゲーションメニュー
***********************************/
  /***********************************
  フッター
***********************************/
  /***********************************
  サイド
***********************************/
  /***********************************
  共通パーツ
***********************************/
  .sysTitle {
    width: 600px;
    margin: 50px auto !important;
    position: relative;
    text-align: center;
    font-size: 20px;
    letter-spacing: auto;
  }
  .sysTitle b {
    display: block;
    font-size: 15px;
    text-align: center;
    margin-top: 5px;
  }
  .sysTitle span {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin: 0 2.5em;
    padding: 0 40px;
    background-color: #fff;
    text-align: center;
    font-weight: bold;
  }
  .sysTitle::before {
    position: absolute;
    top: 50%;
    z-index: 1;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #222222;
  }
  .contentsWrap {
    width: 90%;
    margin: 0 auto;
  }
  /***********************************
  商法テーブルレイアウト
***********************************/
  .p-law .sysTitle {
    max-width: 600px;
  }
  .p-law .sysTitle span {
    font-size: 22px;
    padding: 0 40px;
  }
  #main_tradelaw {
    width: 90%;
  }
  .shipFee {
    width: 90%;
    margin: 50px auto;
  }
  .shipFee h3 {
    font-size: 16px;
  }
  table.shipFeeTable .newLine {
    display: block;
  }
  table.shipFeeTable tbody th {
    width: 500px;
    vertical-align: middle;
  }
  table.shipFeeTable td {
    width: 500px;
    font-size: 15px;
    vertical-align: middle;
  }
  /***********************************
   フッター部分のご利用ガイド
***********************************/
  /***********************************
  カート内商品数表示
***********************************/
  button.itemCount2 {
    display: none;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: rgba(207, 15, 42, 0.9);
    border: none;
    width: 18px;
    height: 18px;
    border-radius: 10px;
    text-align: center;
    line-height: 15px;
    font-size: 10px;
    color: #fff;
    font-weight: bold;
  }
  /***********************************
  商品購入ステップ
***********************************/
  .steps ul {
    width: 550px;
  }
  .steps li {
    float: left;
    padding: 0 2px;
    height: 180px;
  }
  .steps li a {
    height: 180px !important;
  }
  .steps li img {
    height: 180px;
  }
  /***********************************
  TOPページ
***********************************/
  /*.トップスライダー*/
  /***********************************
  ワンページカート
***********************************/
  /*情報入力ページ調整*/
  .sysOpcBody .header_wrap {
    border-bottom: none;
  }
  .sysOpcBody div#sysWrap {
    margin: 20px auto 0;
  }
  .sysCart #sysMain,
  .sysOpcBody #sysMain {
    border: none;
  }
  .sysOpcBody div#sysMain {
    margin-bottom: 0;
  }
  .sysOpcBody img {
    max-width: 100%;
  }
  .sysOpcBody div#sysMain {
    padding: 0 4%;
  }
  .opcConfirm_inputStatus,
  .opcConfirm_inputStatus_disable,
  .opcConfirm_order,
  .opcConfirm_order_disable {
    width: 94% !important;
  }
}

@media only screen and (min-width: 1161px) {
  .sysDisplayPcNone {
    display: none !important;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
variables.css
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
font.css
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
html {
  /* set 16px to 10px */
  font-size: 62.5%;
}

body {
  color: #000;
  font-size: 1.4rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
  line-height: 1.9;
  letter-spacing: .08em;
  -webkit-print-color-adjust: exact;
}

/* SP */
@media only screen and (max-width: 600px) {
  body {
    font-size: 1.2rem;
    line-height: 1.75;
  }
}

body {
  /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.bold {
  font-weight: 700;
}

.indent {
  display: inline-block;
  padding-left: 1em;
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

.montserrat {
  font-family: 'Montserrat', "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
  font-weight: 300;
}

.akamoji {
  color: #ec4b39;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: inherit;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
common_setting.css
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
/* ===========================
基本設定
=========================== */
html {
  background-color: #fff;
}

* {
  box-sizing: border-box;
}

a {
  color: #000;
  text-decoration: none;
  transition-duration: 300ms;
}

a:hover {
  opacity: .8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

main, section {
  display: block;
}

#sysAll {
  max-width: 100%;
  background-color: transparent;
  padding: 0;
}

#sysHeader, #sysWrap, #sysMain, #sysAside, #sysFooter {
  padding: 0;
  margin: 0 auto;
}

#sysWrap {
  max-width: 1160px;
  padding: 0 30px;
  margin: 126px auto 0;
}

div#sysMain {
  float: none;
  width: 100%;
}

div#sysAside {
  display: none;
  float: none;
}

#sysAll .sysContent {
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@media only screen and (min-width: 601px) and (max-width: 1160px) {
  #sysWrap {
    max-width: 100%;
    padding: 0 3%;
    margin: 114px auto 0;
  }
}

@media only screen and (max-width: 600px) {
  #sysWrap {
    max-width: 100%;
    padding: 0 3%;
    margin: 114px auto 0;
  }
}

/* ===========================
画面幅による表示・非表示
=========================== */
@media only screen and (min-width: 1161px) {
  .tb_only {
    display: none !important;
  }
  .sp_only {
    display: none !important;
  }
  .pc_only {
    display: block !important;
  }
}

/* TBここから */
@media only screen and (min-width: 601px) and (max-width: 1160px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: none !important;
  }
  .tb_only {
    display: block !important;
  }
}

/* SPここから */
@media only screen and (max-width: 600px) {
  .pc_only {
    display: none !important;
  }
  .tb_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
}

/* ===========================
clearfix
=========================== */
.clearfix::after {
  content: " ";
  display: block;
  clear: both;
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
header.css
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
/* PC */
#sysHeader {
  width: 100%;
}

#sysHeader p {
  margin: 0;
}

#sysHeader .header_content {
  opacity: 0;
}

#sysHeader .header_wrap {
  width: 100%;
  border-bottom: 1px solid #aaa;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

#sysHeader .header_wrap .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1160px;
  padding: 15px 30px;
  margin: 0 auto;
  /* ヘッダーロゴ＋説明文 */
  /* ヘッダー上部メニュー */
  /* カート情報 */
  /* グローバルメニュー */
}

#sysHeader .header_wrap .header_inner .header_content {
  opacity: 1;
  margin: 0;
}

#sysHeader .header_wrap .header_inner .header_h1,
#sysHeader .header_wrap .header_inner .header_h1_under {
  width: 100%;
  max-width: 580px;
}

#sysHeader .header_wrap .header_inner .header_h1 .h_inner .logo_all .logo,
#sysHeader .header_wrap .header_inner .header_h1_under .h_inner .logo_all .logo {
  display: flex;
  align-items: center;
}

#sysHeader .header_wrap .header_inner .header_h1 .h_inner .logo_all .logo .logo_img,
#sysHeader .header_wrap .header_inner .header_h1_under .h_inner .logo_all .logo .logo_img {
  width: 100%;
  max-width: 180px;
  margin-right: 15px;
}

#sysHeader .header_wrap .header_inner .header_h1 .h_inner .logo_all .logo .head_title,
#sysHeader .header_wrap .header_inner .header_h1_under .h_inner .logo_all .logo .head_title {
  font-size: 1.2rem;
  font-weight: 400;
  padding-top: 4px;
}

#sysHeader .header_wrap .header_inner .header {
  width: 100%;
  max-width: 395px;
}

#sysHeader .header_wrap .header_inner .header .g_navi ul {
  display: flex;
}

#sysHeader .header_wrap .header_inner .header .g_navi ul li {
  width: 100%;
  max-width: 120px;
  margin: 0 5px;
}

#sysHeader .header_wrap .header_inner .header .g_navi ul li a {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 28px;
  border: 1px solid #222;
}

#sysHeader .header_wrap .header_inner #cartInfo {
  width: 100%;
  max-width: 120px;
  position: relative;
  /* カート情報：ポップアップ */
  /* カートボタン */
}

#sysHeader .header_wrap .header_inner #cartInfo .h_cart {
  display: none;
  width: 280px;
  height: 145px;
  color: #000;
  border: 1px solid #aaa;
  background: #fff;
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 120;
  padding: 10px 20px;
}

#sysHeader .header_wrap .header_inner #cartInfo .h_cart dl {
  font-size: 1.2rem;
  line-height: 2.2;
  margin-bottom: 2px;
}

#sysHeader .header_wrap .header_inner #cartInfo .h_cart dl dt, #sysHeader .header_wrap .header_inner #cartInfo .h_cart dl dd {
  display: inline-block;
  font-weight: 700;
}

#sysHeader .header_wrap .header_inner #cartInfo .h_cart dl dd span {
  display: inline-block;
  color: #da4636;
  font-weight: 700;
  padding: 0 5px;
  font-family: 'Montserrat', "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

#sysHeader .header_wrap .header_inner #cartInfo .h_cart .sysCartInfoCartIn {
  margin-top: 12px;
}

#sysHeader .header_wrap .header_inner #cartInfo .h_cart .sysCartInfoCartIn a {
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #000;
  padding: 12px 0 0;
  margin: 10px 0 5px;
}

#sysHeader .header_wrap .header_inner #cartInfo .h_cart .sysCartInfoCartIn a img {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 5px;
  vertical-align: top;
}

#sysHeader .header_wrap .header_inner #cartInfo .cartTxt {
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 28px;
  background-color: #222;
  border: 1px solid #222;
  cursor: pointer;
  /* カート内商品数バッジ */
}

#sysHeader .header_wrap .header_inner #cartInfo .cartTxt img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
}

#sysHeader .header_wrap .header_inner #cartInfo .cartTxt .itemCount {
  display: none;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  margin-left: 5px;
  color: #222;
  background: #fff;
  border-radius: 50%;
}

#sysHeader .header_wrap .header_inner .h_navi {
  width: 100%;
  padding-top: 25px;
}

#sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab {
  display: flex;
  justify-content: center;
}

#sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 {
  width: 20%;
}

#sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu {
  position: relative;
}

#sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu > a {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  position: relative;
}

#sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu > a::before {
  content: "";
  width: 1px;
  height: 15px;
  background-color: #222;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu .toggleNav {
  display: none;
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 41px;
  left: 0;
  z-index: 110;
}

#sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu .toggleNav ul .tab2 {
  border-bottom: 1px dotted #ccc;
  position: relative;
}

#sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu .toggleNav ul .tab2:last-of-type {
  border-bottom: none;
}

#sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu .toggleNav ul .tab2 a {
  position: relative;
  padding: 10px 22px 10px 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  min-height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu .toggleNav ul .tab2 a i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

#sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu .toggleNav ul .tab2 a .flag {
  margin-bottom: 5px;
  font-size: 0;
}

#sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu .toggleNav ul .tab2 a .flag span {
  display: inline-block;
  width: 25px;
  margin-right: 5px;
}

#sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu .toggleNav ul .tab2 a .flag span img {
  display: block;
}

#sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1:last-of-type .slideMenu > a::after {
  content: "";
  width: 1px;
  height: 15px;
  background-color: #222;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/* TB */
@media only screen and (min-width: 601px) and (max-width: 1160px) {
  #sysHeader {
    /* SP開閉メニュー */
  }
  #sysHeader .header_wrap .header_inner {
    display: block;
    max-width: 100%;
    padding: 0;
    /* ヘッダーロゴ＋説明文 */
    /* カート情報 */
    /* ヘッダー：SP用 */
    /* グローバルメニュー */
  }
  #sysHeader .header_wrap .header_inner .header_h1,
  #sysHeader .header_wrap .header_inner .header_h1_under {
    max-width: 100%;
  }
  #sysHeader .header_wrap .header_inner .header_h1 .h_inner .logo_all .logo,
  #sysHeader .header_wrap .header_inner .header_h1_under .h_inner .logo_all .logo {
    display: block;
  }
  #sysHeader .header_wrap .header_inner .header_h1 .h_inner .logo_all .logo .logo_img,
  #sysHeader .header_wrap .header_inner .header_h1_under .h_inner .logo_all .logo .logo_img {
    display: none;
  }
  #sysHeader .header_wrap .header_inner .header_h1 .h_inner .logo_all .logo .head_title,
  #sysHeader .header_wrap .header_inner .header_h1_under .h_inner .logo_all .logo .head_title {
    display: none;
  }
  #sysHeader .header_wrap .header_inner #cartInfo {
    display: none;
  }
  #sysHeader .header_wrap .header_inner .header_sp {
    width: 96%;
    padding: 10px 0 0;
    margin: 0 auto;
    position: relative;
  }
  #sysHeader .header_wrap .header_inner .header_sp #navBtn {
    width: 40px;
    position: absolute;
    top: 15px;
    left: 0;
  }
  #sysHeader .header_wrap .header_inner .header_sp .spLogo {
    display: block;
    width: calc(100% - 80px);
    margin: 0 auto;
  }
  #sysHeader .header_wrap .header_inner .header_sp .spLogo img {
    display: block;
    max-width: 140px;
    margin: 0 auto 6px;
  }
  #sysHeader .header_wrap .header_inner .header_sp .spLogo .head_title_sp {
    font-size: 1rem;
    text-align: center;
    font-weight: 400;
  }
  #sysHeader .header_wrap .header_inner .header_sp .spMypage {
    width: 40px;
    position: absolute;
    top: 15px;
    right: 40px;
  }
  #sysHeader .header_wrap .header_inner .header_sp .spCart {
    width: 40px;
    position: absolute;
    top: 15px;
    right: 0;
  }
  #sysHeader .header_wrap .header_inner .header_sp .spCart .itemCount2 {
    display: none;
    width: 18px;
    height: 18px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 18px;
    color: #fff;
    background: rgba(207, 15, 42, 0.9);
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  #sysHeader .header_wrap .header_inner .h_navi {
    padding: 15px 0 10px;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab {
    position: relative;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 {
    width: 25%;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu {
    position: static;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu > a {
    font-size: 1.2rem;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu .toggleNav {
    top: 32px;
    box-shadow: none;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu .toggleNav ul .tab2:last-of-type {
    border-bottom: 1px dotted #ccc;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu .toggleNav ul .tab2 a {
    padding: 12px 5% 12px 3%;
    min-height: 60px;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu .toggleNav ul .tab2 a i {
    right: 3%;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1:first-of-type a::before {
    content: none;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1:last-of-type .slideMenu a::after {
    content: none;
  }
  #sysHeader .h_spnavi {
    display: none;
    color: #000;
    background: rgba(220, 220, 220, 0.9);
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 150;
    overflow: auto;
  }
  #sysHeader .h_spnavi #spNaviWrap {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    padding: 30px 10% 100px;
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 200;
    overflow: scroll;
  }
  #sysHeader .h_spnavi #spNaviWrap .sysHeadline {
    margin-bottom: 10px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_search .sysHeadline,
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_login .sysHeadline {
    font-size: 2rem;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_search {
    margin-top: 30px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_search form {
    display: flex;
    overflow: hidden;
    border: 1px solid #ddd;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_search form .sysItemSearchFormWord {
    width: 70%;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_search form .sysItemSearchFormWord input[type="search"] {
    height: 40px;
    border: none;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_search form .sysSearchButton {
    overflow: hidden;
    display: block;
    width: 30%;
    height: 40px;
    margin: 0;
    padding: 0;
    text-indent: -999px;
    border-radius: 0px;
    border: none;
    background: #000 url(https://leloop-marry.me/img/common/ico_search.png) no-repeat center center;
    background-size: 70px;
    cursor: pointer;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_login .sysContent > p {
    text-align: center;
    margin: 10px 0;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_login .sysContent .sysFormItem {
    margin-bottom: 10px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_login .sysContent .sysFormItem .sysFormLabel {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_login .sysContent .sysLoginButton {
    width: 100%;
    font-size: 1.5rem;
    height: 35px;
    line-height: 10px;
    color: #fff;
    border-radius: 5px;
    background: #000;
    margin: 10px 0;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_login ul li {
    height: 35px;
    font-size: 1.5rem;
    line-height: 33px;
    text-align: center;
    border: 1px solid #000;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_login ul li a {
    font-size: 1.2rem;
    padding: 0px 5px 5px 0px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #closeMenu {
    width: 20px;
    height: 20px;
    position: fixed;
    top: 20px;
    left: 3%;
    z-index: 100;
    color: #000;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #closeMenu img {
    display: block;
    width: 100%;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu {
    margin: 30px 0 0;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu .navTitle {
    font-size: 2rem;
    text-align: center;
    margin: 10px 0;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu .spMenuList {
    font-size: 1.5rem;
    position: relative;
    border-bottom: 1px solid #aaa;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu .spMenuList a {
    display: block;
    padding: 10px 0;
    padding-left: 15px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu .spMenuList .spToggleNav li {
    font-size: 1.2rem;
    border-bottom: 1px dotted #aaa;
    padding-left: 20px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu .spMenuList .spToggleNav li:first-of-type {
    border-top: 1px solid #aaa;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu .spMenuList .spToggleNav li:last-of-type {
    border-bottom: none;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu #closeMenu2 {
    height: 40px;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #444;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px 0;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu #closeMenu2 span {
    display: inline-block;
    margin: 0 10px;
  }
}

/* SP */
@media only screen and (max-width: 600px) {
  #sysHeader {
    /* SP開閉メニュー */
  }
  #sysHeader .header_wrap .header_inner {
    display: block;
    max-width: 100%;
    padding: 0;
    /* ヘッダーロゴ＋説明文 */
    /* カート情報 */
    /* ヘッダー：SP用 */
    /* グローバルメニュー */
  }
  #sysHeader .header_wrap .header_inner .header_h1,
  #sysHeader .header_wrap .header_inner .header_h1_under {
    max-width: 100%;
  }
  #sysHeader .header_wrap .header_inner .header_h1 .h_inner .logo_all .logo,
  #sysHeader .header_wrap .header_inner .header_h1_under .h_inner .logo_all .logo {
    display: block;
  }
  #sysHeader .header_wrap .header_inner .header_h1 .h_inner .logo_all .logo .logo_img,
  #sysHeader .header_wrap .header_inner .header_h1_under .h_inner .logo_all .logo .logo_img {
    display: none;
  }
  #sysHeader .header_wrap .header_inner .header_h1 .h_inner .logo_all .logo .head_title,
  #sysHeader .header_wrap .header_inner .header_h1_under .h_inner .logo_all .logo .head_title {
    display: none;
  }
  #sysHeader .header_wrap .header_inner #cartInfo {
    display: none;
  }
  #sysHeader .header_wrap .header_inner .header_sp {
    width: 96%;
    padding: 10px 0 0;
    margin: 0 auto;
    position: relative;
  }
  #sysHeader .header_wrap .header_inner .header_sp #navBtn {
    width: 40px;
    position: absolute;
    top: 15px;
    left: 0;
  }
  #sysHeader .header_wrap .header_inner .header_sp .spLogo {
    display: block;
    width: calc(100% - 80px);
    margin-left: 45px;
  }
  #sysHeader .header_wrap .header_inner .header_sp .spLogo img {
    display: block;
    max-width: 130px;
    margin: 0 0 6px;
  }
  #sysHeader .header_wrap .header_inner .header_sp .spLogo .head_title_sp {
    font-size: 1rem;
    font-weight: 400;
  }
  #sysHeader .header_wrap .header_inner .header_sp .spMypage {
    width: 40px;
    position: absolute;
    top: 15px;
    right: 40px;
  }
  #sysHeader .header_wrap .header_inner .header_sp .spCart {
    width: 40px;
    position: absolute;
    top: 15px;
    right: 0;
  }
  #sysHeader .header_wrap .header_inner .header_sp .spCart .itemCount2 {
    display: none;
    width: 18px;
    height: 18px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 18px;
    color: #fff;
    background: rgba(207, 15, 42, 0.9);
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  #sysHeader .header_wrap .header_inner .h_navi {
    padding: 15px 0 10px;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab {
    position: relative;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 {
    width: 33.33%;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu {
    position: static;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu > a {
    font-size: 1.2rem;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu .toggleNav {
    top: 31px;
    box-shadow: none;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu .toggleNav ul .tab2:last-of-type {
    border-bottom: 1px dotted #ccc;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu .toggleNav ul .tab2 a {
    padding: 12px 6% 12px 3%;
    min-height: 60px;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1 .slideMenu .toggleNav ul .tab2 a i {
    right: 3%;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1:first-of-type {
    display: none;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1:first-of-type a::before {
    content: none;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1:nth-of-type(2) a::before {
    content: none;
  }
  #sysHeader .header_wrap .header_inner .h_navi .tabmenu .tab .tab1:last-of-type .slideMenu a::after {
    content: none;
  }
  #sysHeader .h_spnavi {
    display: none;
    color: #000;
    background: rgba(220, 220, 220, 0.9);
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 150;
    overflow: auto;
  }
  #sysHeader .h_spnavi #spNaviWrap {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    padding: 30px 3% 100px;
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 200;
    overflow: scroll;
  }
  #sysHeader .h_spnavi #spNaviWrap .sysHeadline {
    margin-bottom: 10px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_search .sysHeadline,
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_login .sysHeadline {
    font-size: 2rem;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_search {
    margin-top: 30px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_search form {
    display: flex;
    overflow: hidden;
    border: 1px solid #ddd;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_search form .sysItemSearchFormWord {
    width: 70%;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_search form .sysItemSearchFormWord input[type="search"] {
    height: 40px;
    border: none;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_search form .sysSearchButton {
    overflow: hidden;
    display: block;
    width: 30%;
    height: 40px;
    margin: 0;
    padding: 0;
    text-indent: -999px;
    border-radius: 0;
    border: none;
    background: #000 url(https://leloop-marry.me/img/common/ico_search.png) no-repeat center center;
    background-size: 70px;
    cursor: pointer;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_login .sysContent > p {
    text-align: center;
    margin: 10px 0;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_login .sysContent .sysFormItem {
    margin-bottom: 10px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_login .sysContent .sysFormItem .sysFormLabel {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_login .sysContent .sysLoginButton {
    width: 100%;
    font-size: 1.5rem;
    height: 35px;
    line-height: 10px;
    color: #fff;
    background: #000;
    margin: 10px 0;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_login ul li {
    height: 35px;
    font-size: 1.5rem;
    line-height: 33px;
    text-align: center;
    border: 1px solid #000;
    margin-bottom: 10px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .h_login ul li a {
    font-size: 1.2rem;
    padding: 0px 5px 5px 0px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav {
    margin-bottom: 30px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #closeMenu {
    width: 20px;
    height: 20px;
    position: fixed;
    top: 20px;
    left: 3%;
    z-index: 100;
    color: #000;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #closeMenu img {
    display: block;
    width: 100%;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu {
    margin: 30px 0 0;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu .navTitle {
    font-size: 2rem;
    text-align: center;
    margin: 10px 0;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu .spMenuList {
    font-size: 1.5rem;
    position: relative;
    border-bottom: 1px solid #aaa;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu .spMenuList a {
    display: block;
    padding: 10px 0;
    padding-left: 15px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu .spMenuList .spToggleNav li {
    font-size: 1.2rem;
    border-bottom: 1px dotted #aaa;
    padding-left: 20px;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu .spMenuList .spToggleNav li:first-of-type {
    border-top: 1px solid #aaa;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu .spMenuList .spToggleNav li:last-of-type {
    border-bottom: none;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu #closeMenu2 {
    height: 40px;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px 0;
  }
  #sysHeader .h_spnavi #spNaviWrap .wrap1 .sp_nav #spNavMenu #closeMenu2 span {
    display: inline-block;
    margin: 0 10px;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
footer.css
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
#sysFooter .f_guide {
  width: 100%;
  margin-top: 50px;
  padding: 30px 0 50px;
  background-color: #f5f5f5;
}

#sysFooter .f_guide .sysContent {
  width: 100%;
  max-width: 1160px;
  padding: 0 30px;
  margin: 0 auto;
}

#sysFooter .f_guide .sysContent p {
  font-size: 1.4rem;
  margin: 0.35714em;
}

#sysFooter .f_guide .sysContent .smaller {
  font-size: 1.2rem;
}

#sysFooter .f_guide .sysContent .mt {
  margin-top: 20px;
}

#sysFooter .f_guide .sysContent .Title {
  font-size: 3.4rem;
  text-align: center;
  font-weight: 300;
  padding: 10px 0 10px;
}

#sysFooter .f_guide .sysContent .guideTitle {
  width: 100%;
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  border-bottom: 1px solid #000;
  margin-bottom: 1em;
  padding-bottom: .5em;
}

#sysFooter .f_guide .sysContent .common_btn {
  margin: 10px auto;
}

#sysFooter .f_guide .sysContent .common_btn a {
  font-size: 1.3rem;
  padding: 10px 0;
}

#sysFooter .f_guide .sysContent .freedial a {
  width: auto;
  background: transparent url(https://leloop-marry.me/img/common/dial.png) no-repeat scroll left center/45px auto;
  display: inline-block;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
  padding-left: 50px;
}

#sysFooter .f_guide .sysContent > div {
  display: flex;
  justify-content: space-between;
}

#sysFooter .f_guide .sysContent > div .guideBlock {
  width: 48%;
  font-size: 1.4rem;
  padding-top: 30px;
}

#sysFooter .f_guide .sysContent > div .guide01 .imgWrap {
  max-width: 300px;
  margin: 20px 0;
}

#sysFooter .f_guide .sysContent > div .guide01 .imgWrap img {
  margin-bottom: 5px;
}

#sysFooter .f_guide .sysContent > div .guide02 .imgWrap {
  max-width: 445px;
  margin: 20px 0;
}

#sysFooter .f_guide .sysContent .footer_sns {
  width: 100%;
  max-width: 180px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#sysFooter .f_guide .sysContent .footer_sns li {
  width: 24%;
}

#sysFooter .footer {
  width: 100%;
  letter-spacing: 2px;
  text-align: center;
}

#sysFooter .footer .f_gnav_all {
  background: #fff;
  padding: 15px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

#sysFooter .footer .f_gnav_all ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#sysFooter .footer .f_gnav_all ul li {
  font-size: 1.2rem;
  padding: 0 20px;
  position: relative;
}

#sysFooter .footer .f_gnav_all ul li::after {
  content: "";
  width: 1px;
  height: 10px;
  background-color: #000;
  margin-top: -35px;
  position: absolute;
  right: 0;
  top: 40px;
}

#sysFooter .footer .f_gnav_all ul li a i {
  display: none;
}

#sysFooter .footer .f_gnav_all ul li:last-of-type::after {
  content: none;
}

#sysFooter .f_copy {
  font-size: 1rem;
  font-weight: 700;
  padding: 10px;
}

#sysFooter .pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  text-align: center;
  z-index: 100;
}

#sysFooter .pagetop #page-top {
  display: block;
  height: 52px;
  font-size: 1.1rem;
  line-height: 1.3;
  color: #fff;
  background: #000;
  padding-top: 4px;
}

#sysFooter .pagetop #page-top:hover {
  opacity: .8;
}

@media only screen and (min-width: 601px) and (max-width: 1160px) {
  #sysFooter .f_guide .sysContent {
    padding: 0;
  }
  #sysFooter .f_guide .sysContent .Title {
    padding: 20px 0 30px;
  }
  #sysFooter .f_guide .sysContent .freedial a {
    background: transparent url(https://leloop-marry.me/img/common/dial.png) no-repeat scroll left center/35px auto;
    padding-left: 40px;
    font-size: 3rem;
  }
  #sysFooter .f_guide .sysContent > div .guideBlock {
    width: 50%;
    padding: 30px 3% 0;
  }
  #sysFooter .footer {
    background: #fff;
  }
  #sysFooter .footer .f_gnav_all {
    padding: 0px 0 0px;
    text-align: left;
    border-top: none;
    border-bottom: none;
  }
  #sysFooter .footer .f_gnav_all ul {
    justify-content: flex-start;
    align-items: stretch;
    border-top: 1px solid #e0e0e0;
  }
  #sysFooter .footer .f_gnav_all ul li {
    display: flex;
    align-items: center;
    width: 50%;
    padding: 12px 22px 12px 15px;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    box-sizing: border-box;
  }
  #sysFooter .footer .f_gnav_all ul li::after {
    content: none;
  }
  #sysFooter .footer .f_gnav_all ul li a i {
    display: block;
    position: absolute;
    font-size: 2rem;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  #sysFooter .footer .f_gnav_all ul li:nth-of-type(even) {
    border-left: 1px solid #e0e0e0;
  }
  #sysFooter .footer .f_gnav_all ul li:last-of-type {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  #sysFooter .f_guide {
    margin-top: 30px;
    padding: 10px 0;
  }
  #sysFooter .f_guide .sysContent {
    width: 94%;
    max-width: 100%;
    padding: 0;
  }
  #sysFooter .f_guide .sysContent p {
    font-size: 1.2rem;
  }
  #sysFooter .f_guide .sysContent .smaller {
    font-size: 1.2rem;
  }
  #sysFooter .f_guide .sysContent .mt {
    margin-top: 20px;
  }
  #sysFooter .f_guide .sysContent .Title {
    font-size: 2.6rem;
    padding: 20px 0 0;
    line-height: 1;
  }
  #sysFooter .f_guide .sysContent .guideTitle {
    width: 100%;
    font-size: 1.8rem;
    background: transparent;
  }
  #sysFooter .f_guide .sysContent .common_btn {
    margin: 20px auto;
  }
  #sysFooter .f_guide .sysContent .freedial {
    text-align: center;
  }
  #sysFooter .f_guide .sysContent .freedial a {
    font-size: 3rem;
  }
  #sysFooter .f_guide .sysContent > div {
    display: block;
  }
  #sysFooter .f_guide .sysContent > div .guideBlock {
    width: 100%;
    padding: 30px 3% 5px;
    border: none;
    border-radius: 10px;
    position: relative;
  }
  #sysFooter .f_guide .sysContent > div .guide01 .imgWrap {
    margin: 20px auto;
  }
  #sysFooter .f_guide .sysContent > div .guide02 .imgWrap {
    margin: 20px auto;
  }
  #sysFooter .f_guide .sysContent .footer_sns {
    width: 100%;
    max-width: 180px;
    margin: 20px auto 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #sysFooter .f_guide .sysContent .footer_sns li {
    width: 24%;
  }
  #sysFooter .footer {
    background: #fff;
  }
  #sysFooter .footer .f_gnav_all {
    padding: 0;
    text-align: left;
    border-top: none;
    border-bottom: none;
  }
  #sysFooter .footer .f_gnav_all ul {
    justify-content: flex-start;
    align-items: stretch;
    border-top: 1px solid #e0e0e0;
  }
  #sysFooter .footer .f_gnav_all ul li {
    display: flex;
    align-items: center;
    width: 50%;
    padding: 12px 22px 12px 15px;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    box-sizing: border-box;
  }
  #sysFooter .footer .f_gnav_all ul li::after {
    content: none;
  }
  #sysFooter .footer .f_gnav_all ul li a i {
    display: block;
    position: absolute;
    font-size: 2rem;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  #sysFooter .footer .f_gnav_all ul li:nth-of-type(even) {
    border-left: 1px solid #e0e0e0;
  }
  #sysFooter .footer .f_gnav_all ul li:last-of-type {
    width: 100%;
  }
  #sysFooter .f_copy {
    font-size: 1rem;
    padding: 10px 5px;
  }
  #sysFooter .f_copy .sp_newline {
    display: block;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
aside.css
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
/* PC */
#sysAside .side_search {
  margin-bottom: 10px;
}

#sysAside .side_search form {
  border: none;
  overflow: hidden;
}

#sysAside .side_search form .sysItemSearchFormWord {
  width: 100%;
  margin-bottom: 5px;
}

#sysAside .side_search form .sysItemSearchFormWord input[type="search"] {
  height: 40px;
  border: 1px solid #ddd;
  margin-bottom: 5px;
}

#sysAside .side_search form .sysSearchButton {
  display: block;
  width: 100%;
  height: 40px;
  border: none;
  background: #000 url(https://leloop-marry.me/img/common/ico_search.png) no-repeat center center;
  background-size: 70px;
  text-indent: -999px;
  overflow: hidden;
  margin: 0;
  cursor: pointer;
}

#sysAside .side_register .sysContent .side_btn {
  width: 100%;
  margin: 0 auto 20px;
  position: relative;
}

#sysAside .side_register .sysContent .side_btn a {
  display: block;
  padding: 8px 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: #e69494;
  border: 1px solid #e69494;
}

#sysAside .side_navi_item,
#sysAside .side_navi {
  margin-bottom: 20px;
  /* メニュー名を折り返して全て表示したい場合は以下をアクティブにしてください */
}

#sysAside .side_navi_item a,
#sysAside .side_navi a {
  display: block;
  position: relative;
  padding: 7px 22px 7px 5px;
  border-bottom: 1px dotted #cdcdcd;
}

#sysAside .side_navi_item a::after,
#sysAside .side_navi a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: ">";
  font-size: 1.2rem;
  transform: translateY(-50%);
}

#sysAside .side_navi_item a,
#sysAside .side_navi a {
  padding: 7px 22px 7px 5px;
  text-overflow: unset;
  white-space: normal;
  font-size: 1.1rem;
  line-height: 1.6;
}

#sysAside .side_navi_item .sysHeadline,
#sysAside .side_navi .sysHeadline {
  width: 100%;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: normal;
  margin: 0;
  margin-left: auto;
  padding: 7px 5px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

#sysAside .side_navi_item .sysHeadline::before,
#sysAside .side_navi .sysHeadline::before {
  content: none;
}

#sysAside .side_navi_item .sysContent,
#sysAside .side_navi .sysContent {
  width: 100%;
  margin-left: auto;
}

#sysAside .side_other_link ul li:first-of-type a {
  border-top: 1px dotted #cdcdcd;
}

#sysAside .side_other_link ul li a {
  border-bottom: 1px dotted #cdcdcd;
}

#sysAside .side_sns ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

#sysAside .side_sns ul li {
  width: 24%;
}

/* TB */
@media only screen and (min-width: 601px) and (max-width: 1160px) {
  #sysAside .side_navi_item a,
  #sysAside .side_navi a {
    display: block;
    position: relative;
    padding: 7px 22px 7px 5px;
    border-bottom: 1px dotted #cdcdcd;
  }
  #sysAside .side_navi_item a::after,
  #sysAside .side_navi a::after {
    position: absolute;
    top: 50%;
    right: 10px;
    content: ">";
    font-size: 1.2rem;
    transform: translateY(-50%);
  }
  #sysAside .side_navi_item .sysHeadline,
  #sysAside .side_navi .sysHeadline {
    width: 100%;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: left;
    letter-spacing: normal;
    margin: 0;
    margin-left: auto;
    padding: 7px 5px;
  }
  #sysAside .side_navi_item .sysHeadline::before,
  #sysAside .side_navi .sysHeadline::before {
    content: none;
  }
  #sysAside .side_navi_item .sysContent,
  #sysAside .side_navi .sysContent {
    width: 100%;
    margin-left: auto;
  }
  #sysAside .side_navi_item .sysContent ul,
  #sysAside .side_navi .sysContent ul {
    display: flex;
    flex-wrap: wrap;
  }
  #sysAside .side_navi_item .sysContent ul li,
  #sysAside .side_navi .sysContent ul li {
    width: 50% !important;
  }
  #sysAside .side_other_link ul {
    border-top: 1px dotted #cdcdcd;
    border-bottom: 1px dotted #cdcdcd;
  }
  #sysAside .side_other_link ul li:first-of-type a {
    border-top: none;
  }
  #sysAside .side_other_link ul li a {
    border-bottom: none;
  }
  #sysAside .side_sns ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40%;
  }
  #sysAside .side_sns ul li {
    width: 24%;
  }
}

/* SP */
@media only screen and (max-width: 600px) {
  #sysAside .side_navi_item .sysHeadline,
  #sysAside .side_navi .sysHeadline {
    width: 100%;
  }
  #sysAside .side_navi_item .sysContent,
  #sysAside .side_navi .sysContent {
    width: 100%;
  }
  #sysAside .side_sns ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30%;
  }
  #sysAside .side_sns ul li {
    width: 24%;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
form.css
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
/* ===========================
フォーム設定
=========================== */
button, input, optgroup, select, textarea {
  font: inherit;
}

input[type=search],
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
textarea {
  -webkit-appearance: none;
  padding: 8px 5px !important;
  width: 100%;
  line-height: 2;
  background: #fff !important;
  border-radius: 0 !important;
  outline: none;
  background: #fff !important;
}

input[type="radio"] {
  margin: 0 10px;
  vertical-align: middle;
}

select {
  border: 1px solid #ddd;
  padding: 8px 5px;
  box-sizing: content-box;
}

input[type=submit] {
  -webkit-appearance: none;
  padding: 8px 5px;
  line-height: 2;
  margin-top: 30px;
  transition-duration: 300ms;
}

input[type=submit]:hover {
  opacity: .8;
}

.sysFormField {
  margin: 10px 0;
}

.sysFormField label {
  margin-right: 20px;
}

.sysFormItem {
  margin-bottom: 30px;
}

.sysFormLabel {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.sysLoginButton,
.sysButton {
  width: 100%;
  border: none;
  padding: 10px;
  margin: 5px 0;
  background-color: #000;
  border: 1px solid #000;
  color: #000;
  cursor: pointer;
  color: #fff;
  transition-duration: 300ms;
}

.sysLoginButton:hover,
.sysButton:hover {
  background-color: transparent;
  color: #000;
  opacity: 1;
}

.sysLoginButton:hover,
.sysButton:hover {
  opacity: .8;
}

.sysLoginButton {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  padding: 20px;
}

.sysCartButton {
  border: none;
  padding: 10px;
  margin: 5px 0;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  cursor: pointer;
  transition-duration: 300ms;
}

.sysCartButton:hover {
  background-color: transparent;
  color: #000;
  opacity: 1;
}

.sysNextSubmit {
  background: #666;
  color: #fff;
  display: block;
  padding: 10px 15px;
  text-shadow: none;
  border-color: transparent;
  width: 100%;
  height: 50px;
  margin: 0 auto;
}

.sysBackButton {
  max-width: 230px;
  background: #ccc;
}

.sysZipcode .sysFormField,
.sysPrefStateId .sysFormField {
  max-width: 200px;
}

.sysZipcode .sysFormField select,
.sysPrefStateId .sysFormField select {
  width: 100%;
}

.sysZipcode .sysButton,
.sysPrefStateId .sysButton {
  max-width: 200px;
}

.sysBirthday .sysFormField input[type="text"] {
  max-width: 60px;
}

.sysSelectAddress {
  background: linear-gradient(0deg, white, white);
}

/* ----------------------------------------------------------------------------------- */
/* フォーム系ページ共通 */
.sysMemberRegister #sysAll #sysWrap,
.sysMypage #sysAll #sysWrap,
#sysFormIndex #sysAll #sysWrap,
#sysFormConfirm #sysAll #sysWrap {
  max-width: 960px;
  padding: 0 30px;
}

.sysMemberRegister #sysAll #sysWrap #sysMain .sysAcceptMailmagazine,
.sysMypage #sysAll #sysWrap #sysMain .sysAcceptMailmagazine,
#sysFormIndex #sysAll #sysWrap #sysMain .sysAcceptMailmagazine,
#sysFormConfirm #sysAll #sysWrap #sysMain .sysAcceptMailmagazine {
  display: none !important;
}

.sysMemberRegister #sysAll #sysWrap #sysMain > .sysHeadline,
.sysMypage #sysAll #sysWrap #sysMain > .sysHeadline,
#sysFormIndex #sysAll #sysWrap #sysMain > .sysHeadline,
#sysFormConfirm #sysAll #sysWrap #sysMain > .sysHeadline {
  padding-top: 30px;
}

@media only screen and (min-width: 601px) and (max-width: 1160px) {
  .sysMemberRegister #sysAll #sysWrap,
  .sysMypage #sysAll #sysWrap,
  #sysFormIndex #sysAll #sysWrap,
  #sysFormConfirm #sysAll #sysWrap {
    max-width: 100%;
    padding: 0 3%;
  }
  .sysMemberRegister #sysAll #sysWrap #sysMain > .sysHeadline,
  .sysMypage #sysAll #sysWrap #sysMain > .sysHeadline,
  #sysFormIndex #sysAll #sysWrap #sysMain > .sysHeadline,
  #sysFormConfirm #sysAll #sysWrap #sysMain > .sysHeadline {
    padding-top: 5px;
  }
}

@media only screen and (max-width: 600px) {
  .sysMemberRegister #sysAll #sysWrap,
  .sysMypage #sysAll #sysWrap,
  #sysFormIndex #sysAll #sysWrap,
  #sysFormConfirm #sysAll #sysWrap {
    max-width: 100%;
    padding: 0 3%;
  }
  .sysMemberRegister #sysAll #sysWrap #sysMain > .sysHeadline,
  .sysMypage #sysAll #sysWrap #sysMain > .sysHeadline,
  #sysFormIndex #sysAll #sysWrap #sysMain > .sysHeadline,
  #sysFormConfirm #sysAll #sysWrap #sysMain > .sysHeadline {
    padding-top: 5px;
  }
}

.sysCart #sysAll #sysWrap {
  max-width: 960px;
  padding: 0 30px;
}

.sysCart #sysAll #sysWrap #sysMain .sysAcceptMailmagazine {
  display: none !important;
}

@media only screen and (min-width: 601px) and (max-width: 1160px) {
  .sysCart #sysAll #sysWrap {
    max-width: 100%;
    padding: 0 3%;
  }
}

@media only screen and (max-width: 600px) {
  .sysCart #sysAll #sysWrap {
    max-width: 100%;
    padding: 0 3%;
  }
}

/* フリーフォーム：入力 */
#sysFormIndex #sysAll #sysWrap #sysMain {
  max-width: 800px;
}

#sysFormIndex #sysAll #sysWrap #sysMain > h2 {
  display: none;
}

#sysFormIndex #sysAll #sysWrap #sysMain a {
  display: inline-block;
  color: #068acc;
  text-decoration: underline;
}

#sysFormIndex #sysAll #sysWrap #sysMain input[type=search],
#sysFormIndex #sysAll #sysWrap #sysMain input[type=text],
#sysFormIndex #sysAll #sysWrap #sysMain input[type=tel],
#sysFormIndex #sysAll #sysWrap #sysMain input[type=email],
#sysFormIndex #sysAll #sysWrap #sysMain input[type=password],
#sysFormIndex #sysAll #sysWrap #sysMain textarea {
  margin: 5px 0;
}

#sysFormIndex #sysAll #sysWrap #sysMain input[type="radio"] {
  margin: 10px;
}

#sysFormIndex #sysAll #sysWrap #sysMain select {
  margin: 5px 0;
}

#sysFormIndex #sysAll #sysWrap #sysMain .questions .txtBlock {
  text-align: center;
  margin: 30px 0;
}

/* フリーフォーム：確認 */
#sysFormConfirm #sysAll #sysWrap #sysMain {
  max-width: 800px;
}

#sysFormConfirm #sysAll #sysWrap #sysMain > h2 {
  display: none;
}

#sysFormConfirm #sysAll #sysWrap #sysMain .sysFormField {
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

#sysFormConfirm #sysAll #sysWrap #sysMain .sysButton {
  width: 100%;
  max-width: 230px;
  margin: 0;
  margin-right: 1%;
  margin-top: 30px;
  margin-bottom: 30px;
  height: 50px;
  border-radius: 0;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  transition-duration: 300ms;
}

#sysFormConfirm #sysAll #sysWrap #sysMain .sysButton:hover {
  background-color: transparent;
  color: #000;
  opacity: 1;
}

#sysFormConfirm #sysAll #sysWrap #sysMain .sysNextSubmit {
  max-width: 100%;
}

/* フリーフォーム：完了 */
#sysFormThanks #sysAll #sysWrap #sysMain {
  max-width: 800px;
}

#sysFormThanks #sysAll #sysWrap #sysMain > h2 {
  display: none;
}

#sysFormThanks #sysAll #sysWrap #sysMain .completeText {
  margin: 20px 0;
  text-align: center;
  font-size: 1.4rem;
}

#sysFormThanks #sysAll #sysWrap #sysMain .completeText p {
  margin: 10px 0;
}

#sysFormThanks #sysAll #sysWrap #sysMain .completeText a {
  color: #068acc;
  text-decoration: underline;
}

/* 新規会員登録：共通 */
/* 新規会員登録：入力 */
#sysMemberRegisterIndex #sysAll #sysWrap #sysMain .sysNextSubmit {
  max-width: 100%;
}

#sysMemberRegisterIndex #sysAll #sysWrap #sysMain input[type="submit"].sysButton {
  width: 100%;
  max-width: 230px;
  margin: 0;
  margin-right: 1%;
  margin-top: 30px;
  height: 50px;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  transition-duration: 300ms;
}

#sysMemberRegisterIndex #sysAll #sysWrap #sysMain input[type="submit"].sysButton:hover {
  background-color: transparent;
  color: #000;
  opacity: 1;
}

/* 新規会員登録：確認 */
#sysMemberRegisterConfirm #sysAll #sysWrap #sysMain > h2 + div {
  margin-bottom: 1em;
}

#sysMemberRegisterConfirm #sysAll #sysWrap #sysMain .sysFormField {
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

#sysMemberRegisterConfirm #sysAll #sysWrap #sysMain .sysBackButton {
  width: 100%;
  max-width: 230px;
  margin: 0;
  margin-right: 1%;
  margin-top: 30px;
  height: 50px;
  background: #000;
  color: #fff;
}

#sysMemberRegisterConfirm #sysAll #sysWrap #sysMain .sysNextSubmit {
  max-width: 100%;
}

/* 新規会員登録：完了 */
#sysMemberRegisterRegister #sysAll #sysWrap #sysMain > p {
  text-align: center;
}

/* マイページ：ログイン */
#sysMypageLogin #sysAll #sysWrap #sysMain > h3 {
  display: none;
}

#sysMypageLogin #sysAll #sysWrap #sysMain .sysButton {
  display: block;
  max-width: 400px;
  margin: 0 auto;
}

/* マイページ：共通＋各設定 */
.sysMypage #sysAll #sysWrap #sysMain {
  max-width: 800px;
}

.sysMypage #sysAll #sysWrap #sysMain > h2 {
  display: none;
}

.sysMypage #sysAll #sysWrap #sysMain > h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.sysMypage #sysAll #sysWrap #sysMain .SysMypageMinorHeadLine {
  font-size: 1.8rem;
  border-left: 5px solid #3d3d3d;
  padding-left: 5px;
  margin: 15px 0;
}

.sysMypage #sysAll #sysWrap #sysMain .sysMypageNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sysMypage #sysAll #sysWrap #sysMain .sysMypageNav form {
  width: 49%;
}

.sysMypage #sysAll #sysWrap #sysMain .sysMypageNav form .sysButton {
  margin: 2% 0;
}

.sysMypage #sysAll #sysWrap #sysMain .sysOrderHistory {
  margin-bottom: 30px;
}

.sysMypage #sysAll #sysWrap #sysMain .sysMyPoint {
  margin-bottom: 30px;
}

.sysMypage #sysAll #sysWrap #sysMain > form:last-of-type .sysButton {
  max-width: 230px;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  transition-duration: 300ms;
}

.sysMypage #sysAll #sysWrap #sysMain > form:last-of-type .sysButton:hover {
  background-color: transparent;
  color: #000;
  opacity: 1;
}

.sysMypage #sysAll #sysWrap #sysMain .sysItemList {
  margin-bottom: 30px;
}

.sysMypage #sysAll #sysWrap #sysMain .sysItemList ul.sysList li > div {
  width: 78%;
}

.sysMypage #sysAll #sysWrap #sysMain .sysItemList ul.sysList li > div form {
  text-align: left;
}

.sysMypage #sysAll #sysWrap #sysMain .sysItemList ul.sysList li .sysThumbnailImage {
  width: 20%;
  float: none;
  margin-right: 0;
}

.sysMypage #sysAll #sysWrap #sysMain .sysRemindForm input[type="submit"] {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  margin-top: 30px;
  transition-duration: 300ms;
}

.sysMypage #sysAll #sysWrap #sysMain .sysRemindForm input[type="submit"]:hover {
  background-color: transparent;
  color: #000;
  opacity: 1;
}

/* TB */
@media only screen and (min-width: 601px) and (max-width: 1160px) {
  /* 新規会員登録：共通 */
}

/* SP */
@media only screen and (max-width: 600px) {
  .sysFormField label {
    display: block;
    margin-right: 0;
  }
  /* 新規会員登録：共通 */
  /* マイページ：共通＋各設定 */
  .sysMypage #sysAll #sysWrap #sysMain .sysItemList ul.sysList li > div {
    width: 58%;
  }
  .sysMypage #sysAll #sysWrap #sysMain .sysItemList ul.sysList li .sysThumbnailImage {
    width: 40%;
  }
  .sysMypage #sysAll #sysWrap #sysMain .sysRemindForm input[type="submit"] {
    width: 100%;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
cart.css
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
.sysCart #sysAll #sysHeader,
.sysOpcBody #sysAll #sysHeader {
  /* カートページ用ヘッダー設定 */
}

.sysCart #sysAll #sysHeader .header_wrap,
.sysOpcBody #sysAll #sysHeader .header_wrap {
  border-bottom: none;
  position: static;
}

.sysCart #sysAll #sysHeader .header_wrap .header_inner,
.sysOpcBody #sysAll #sysHeader .header_wrap .header_inner {
  display: block;
  padding: 0;
}

.sysCart #sysAll #sysHeader .header_wrap .header_inner .header_h1_under,
.sysOpcBody #sysAll #sysHeader .header_wrap .header_inner .header_h1_under {
  width: 100%;
  max-width: 100%;
  padding: 10px 0;
  background-color: #fff;
  text-align: center;
}

.sysCart #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .h_inner,
.sysOpcBody #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .h_inner {
  margin: 15px 0 0;
}

.sysCart #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .logo,
.sysOpcBody #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .logo {
  display: block;
}

.sysCart #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .logo .logo_img,
.sysOpcBody #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .logo .logo_img {
  display: block;
  margin: 0 auto;
}

.sysCart #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .head_title,
.sysOpcBody #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .head_title {
  font-weight: 400;
  margin-top: 8px;
}

.sysCart #sysAll #sysHeader .header_wrap .header_inner .header_h1_under a,
.sysOpcBody #sysAll #sysHeader .header_wrap .header_inner .header_h1_under a {
  display: block;
  width: 160px;
  margin: 0 auto;
}

.sysCart #sysAll #sysWrap,
.sysOpcBody #sysAll #sysWrap {
  margin: 0 auto;
}

.sysCart #sysAll #sysWrap #sysMain,
.sysOpcBody #sysAll #sysWrap #sysMain {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.sysCart #sysAll #sysWrap #sysMain .sysLoginButton,
.sysCart #sysAll #sysWrap #sysMain .sysButton:hover,
.sysOpcBody #sysAll #sysWrap #sysMain .sysLoginButton,
.sysOpcBody #sysAll #sysWrap #sysMain .sysButton:hover {
  background: #fff;
}

.sysCart #sysAll #sysWrap #sysMain input[type="submit"],
.sysCart #sysAll #sysWrap #sysMain button,
.sysOpcBody #sysAll #sysWrap #sysMain input[type="submit"],
.sysOpcBody #sysAll #sysWrap #sysMain button {
  display: inline-block;
  width: auto;
  height: auto;
  min-width: 150px;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #000;
  border-radius: 0;
  cursor: pointer;
  background-color: #000;
  color: #fff;
  transition-duration: 300ms;
}

.sysCart #sysAll #sysWrap #sysMain input[type="submit"]:hover,
.sysCart #sysAll #sysWrap #sysMain button:hover,
.sysOpcBody #sysAll #sysWrap #sysMain input[type="submit"]:hover,
.sysOpcBody #sysAll #sysWrap #sysMain button:hover {
  background-color: transparent;
  color: #000;
  opacity: 1;
}

.sysCart #sysAll #sysWrap #sysMain .sysNextSubmitArea .sysNextSubmit,
.sysOpcBody #sysAll #sysWrap #sysMain .sysNextSubmitArea .sysNextSubmit {
  width: 100%;
  max-width: 100%;
  font-weight: 700;
  background: #ec4b39;
  border: none;
  margin: 5px 0;
  text-shadow: none;
  border-radius: 0;
  transition-duration: 300ms;
}

.sysCart #sysAll #sysWrap #sysMain .sysNextSubmitArea .sysNextSubmit:hover,
.sysOpcBody #sysAll #sysWrap #sysMain .sysNextSubmitArea .sysNextSubmit:hover {
  opacity: .8;
}

.sysCart #sysAll #sysWrap #sysMain .sysBox,
.sysOpcBody #sysAll #sysWrap #sysMain .sysBox {
  background-color: #ffffff;
  border: 1px solid #000;
  border-radius: 0;
  box-shadow: none;
  margin: 1em auto 2em;
  padding: 1em;
}

.sysCart #sysAll #sysWrap #sysMain .sysBox hr + div,
.sysOpcBody #sysAll #sysWrap #sysMain .sysBox hr + div {
  display: flex;
  align-items: flex-end;
}

.sysCart #sysAll #sysWrap #sysMain .sysBox hr + div > div:not(.sysNumArea),
.sysOpcBody #sysAll #sysWrap #sysMain .sysBox hr + div > div:not(.sysNumArea) {
  width: 100%;
  max-width: 216px;
  margin-right: 2%;
}

.sysCart #sysAll #sysWrap #sysMain .sysCartAttention,
.sysOpcBody #sysAll #sysWrap #sysMain .sysCartAttention {
  font-weight: 700;
  color: #ec4b39;
}

.sysCart #sysAll #sysWrap #sysMain .sysTotalTxt,
.sysOpcBody #sysAll #sysWrap #sysMain .sysTotalTxt {
  text-shadow: none;
}

.sysCart #sysAll #sysWrap #sysMain .sysTotalTxt .sysCartAttention,
.sysOpcBody #sysAll #sysWrap #sysMain .sysTotalTxt .sysCartAttention {
  font-size: 2rem;
  padding: 0 0.3em;
}

.sysCart #sysAll #sysWrap #sysMain .sysCartTitle,
.sysOpcBody #sysAll #sysWrap #sysMain .sysCartTitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  background-color: #fff;
  padding: 0;
}

.sysCart #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox,
.sysOpcBody #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sysCart #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox > div,
.sysOpcBody #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox > div {
  width: 100%;
}

.sysCart #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox > a,
.sysOpcBody #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox > a {
  display: block;
  width: 30%;
}

.sysCart #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox > a .sysProductImg,
.sysOpcBody #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox > a .sysProductImg {
  display: block;
  width: 100%;
  margin: 0;
  float: none;
}

.sysCart #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox hr,
.sysOpcBody #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox hr {
  width: 100%;
}

.sysCart #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox .sysProduct,
.sysOpcBody #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox .sysProduct {
  width: 68%;
}

.sysCart #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox .sysProduct .sysItemName,
.sysOpcBody #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox .sysProduct .sysItemName {
  font-size: 1.8rem;
}

.sysCart #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox select,
.sysOpcBody #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox select {
  width: 100%;
  max-width: 200px;
  display: inline-block;
  float: none;
  margin: 5px 0;
  padding: .2em .5em;
  border: 1px solid #000;
}

.sysCart #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox .sysNumArea button,
.sysOpcBody #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox .sysNumArea button {
  margin: 5px 0;
  min-width: 100px;
  font-size: 1.2rem;
  padding: 3px 10px;
}

.sysCart #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox .sysDeleteArea,
.sysOpcBody #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox .sysDeleteArea {
  text-align: right;
}

.sysCart #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox .sysDeleteArea .sysButton,
.sysOpcBody #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox .sysDeleteArea .sysButton {
  text-align: center;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  border-radius: 0;
}

.sysCart #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox .sysDeleteArea .sysButton:hover,
.sysOpcBody #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox .sysDeleteArea .sysButton:hover {
  background-color: transparent;
  color: #000;
  opacity: 1;
}

.sysCart #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox #sysSelections select,
.sysOpcBody #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox #sysSelections select {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.sysCart #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox #sysSelections input[type="text"],
.sysOpcBody #sysAll #sysWrap #sysMain .sysItemListArea ul li .sysBox #sysSelections input[type="text"] {
  border: 1px solid #000;
}

@media only screen and (max-width: 600px) {
  .sysCart #sysAll #sysWrap #sysMain .sysBox hr + div,
  .sysOpcBody #sysAll #sysWrap #sysMain .sysBox hr + div {
    display: block;
  }
  .sysCart #sysAll #sysWrap #sysMain .sysBox hr + div > div:not(.sysNumArea),
  .sysOpcBody #sysAll #sysWrap #sysMain .sysBox hr + div > div:not(.sysNumArea) {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .sysCart #sysAll #sysWrap #sysMain .sysBox hr + div > div:not(.sysNumArea) select,
  .sysOpcBody #sysAll #sysWrap #sysMain .sysBox hr + div > div:not(.sysNumArea) select {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .sysCart #sysAll #sysWrap #sysMain .sysBox hr + div .sysNumArea,
  .sysOpcBody #sysAll #sysWrap #sysMain .sysBox hr + div .sysNumArea {
    text-align: right;
  }
}

#sysRegi #sysAll #sysWrap #sysMain #sysRegisterForm .sysCartTitle::after {
  content: "新規登録の特典といたしまして、初回購入時に使える5％Offクーポンをプレゼントしています。是非、会員登録して、お得にお買い物してください。";
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  padding-top: .5em;
}

@media only screen and (max-width: 600px) {
  #sysRegi #sysAll #sysWrap #sysMain #sysRegisterForm .sysCartTitle::after {
    font-size: 1.2rem;
  }
}

/* 旧OPCのボタン設定 */
#sysAll #sysWrap #sysMain button.mdl-button {
  display: inline-block;
  width: auto;
  height: 45px;
  min-width: 150px;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #999 !important;
  cursor: pointer;
  background: #fff !important;
  color: #000;
  font-size: 1.5rem;
  line-height: 1;
}

#sysBasket #sysAll #sysWrap #sysMain > .mdl_btn_ button.mdl-button.full-width {
  width: 100% !important;
  max-width: 100%;
  font-weight: 700;
  background: #ec4b39 !important;
  border: none !important;
  margin: 5px 0;
  text-shadow: none;
  line-height: 1;
  font-size: 1.5rem;
  color: #fff;
}

.sysCart #sysAll #sysWrap #sysMain button.opc-dlg-close {
  width: 50px;
  height: 50px;
  min-width: 50px;
  padding: 0;
  line-height: 1;
  padding-bottom: 6px;
}

/* OPC設定 */
.mdl_btn_.opcDialog, form.opcUseAmazon {
  width: 100%;
  padding-right: 0;
}

#sysMain h3 {
  font-size: 2rem;
}

#sysMain #show-dlg-1, #sysMain #show-dlg-1_low, #sysMain .sysOpcNextSubmit, #sysMain .sysNextSubmit {
  display: block;
  width: 100% !important;
  padding: 15px 10px !important;
  margin: 5px 0 !important;
  color: #fff !important;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
  text-shadow: none;
  box-shadow: none;
  border: none !important;
  background: #ec4b39 !important;
}

#sysMain #show-dlg-2 {
  display: block;
  width: 100% !important;
  padding: 10px;
  margin: 0 0 30px !important;
  color: #fff !important;
  font-size: 1.2rem;
  line-height: 1;
  text-shadow: none;
  box-shadow: none;
  border: none !important;
  background: #000 !important;
}

#sysMain #show-dlg-3 {
  display: block;
  width: 100% !important;
  padding: 10px;
  margin: 0 0 30px !important;
  color: #fff !important;
  font-size: 1.2rem;
  line-height: 1;
  text-shadow: none;
  box-shadow: none;
  border: none !important;
  background: #000 !important;
  color: #fff !important;
  background: #ec4b39 !important;
}

#sysMain .next_btn {
  color: #fff !important;
  font-size: 1rem;
  line-height: 1;
  border: none !important;
  background: #000 !important;
}

#sysMain #order_price_confirm_btn {
  color: #fff !important;
  width: 100% !important;
  box-shadow: none;
  background: #000 !important;
}

#sysMain .mdl-js-button {
  box-shadow: none;
}

#sysMain #change-to-billAddr, #sysMain #show-dlg-addrList, #sysMain #show-dlg-inputAddr {
  line-height: 1;
  border: none !important;
  background: #000 !important;
}

#sysMain p.user_type {
  font-size: 1.2rem;
}

.sysOpcProduct .sysOpcItemName {
  font-size: 1.2rem;
}

/*情報入力ページ調整*/
.sysOpcBody .header_wrap {
  height: auto;
  position: static;
  border-bottom: none;
}

.sysOpcBody .header_h1_under a {
  pointer-events: none;
}

.sysOpcBody .footer .f_gnav_all {
  display: none;
}

input[type="button"] {
  box-sizing: border-box;
}

.opcCommonButtonEdit {
  border-radius: 0;
  border-radius: 0;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  transition-duration: 300ms;
}

.opcCommonButtonEdit:hover {
  background-color: transparent;
  color: #000;
  opacity: 1;
}

.opcConfirm {
  padding: 1% 0;
}

.opcBillingAddress_acceptMailmagazineAndLabelGroup {
  display: none !important;
}

.opcBillingAddress_acceptMailmagazineAndLabelGroup_edit {
  display: none !important;
}

.opcCommonInputText, .opcCommonInputSelect, .opcCommonInputRadio, .opcCommonInputCheckbox {
  margin-left: 0 !important;
  height: auto;
}

.opcCommonEditModeBlock {
  background: #fff !important;
  padding: 20px;
}

.opcOrderSummaryTitle, .opcBillingAddressTitle, .opcDeliveryAddressTitle, .opcItemTitle, .opcPaymentMethodTitle {
  font-size: large !important;
  margin-bottom: 0.5em;
}

.opcItem {
  padding: 3%;
  border: 1px solid #9b9b9b;
  margin-top: 10px;
}

.opcCommonButton {
  background-color: #000 !important;
  border: 1px solid #000;
  color: #fff;
  border-radius: 0;
  transition-duration: 300ms;
}

.opcCommonButton:hover {
  background-color: transparent !important;
  color: #000;
  opacity: 1;
}

.opcCommonInputSelect {
  width: auto;
  min-width: 150px;
  background: #fff !important;
  border-radius: 0;
}

.opcBillingAddress_completeButton_edit, .opcDeliveryMethod_completeButton_edit, .opcPaymentMethod_completeButton_edit, .opcItem_completeButton_edit, .opcDeliveryAddress_completeButton_edit, .opcPointAndCouponDialog_applyButton_edit, .opcRemarks_completeButton_edit {
  background: #ec4b39 !important;
  border: 1px solid #ec4b39 !important;
  color: #fff !important;
  font-weight: bold;
  transition-duration: 300ms;
}

.opcBillingAddress_completeButton_edit:hover, .opcDeliveryMethod_completeButton_edit:hover, .opcPaymentMethod_completeButton_edit:hover, .opcItem_completeButton_edit:hover, .opcDeliveryAddress_completeButton_edit:hover, .opcPointAndCouponDialog_applyButton_edit:hover, .opcRemarks_completeButton_edit:hover {
  background: #ec4b39 !important;
  opacity: .8;
}

.opcConfirm_inputStatus {
  display: block !important;
  width: 100% !important;
  margin: 0 auto 1em;
  background: #ec4b39 !important;
  color: #fff !important;
  border: 1px solid #ec4b39 !important;
  font-weight: bold;
  transition-duration: 300ms;
}

.opcConfirm_inputStatus:hover {
  background: #ec4b39 !important;
  opacity: .8;
}

.opcConfirm_inputStatus_disable {
  display: block !important;
  width: 100% !important;
  margin: 0 auto 1em;
  background: #ccc !important;
  color: #000 !important;
}

.opcConfirm_order {
  display: block !important;
  width: 100% !important;
  margin: 0 auto;
  background: #ec4b39 !important;
  color: #fff !important;
  border: 1px solid #ec4b39 !important;
  font-weight: bold;
  transition-duration: 300ms;
}

.opcConfirm_order:hover {
  background: #ec4b39 !important;
  opacity: .8;
}

.opcConfirm_order_disable {
  display: block !important;
  width: 100% !important;
  margin: 0 auto;
  background: #ccc !important;
  color: #000 !important;
}

.opcItem_increaseNumButton_edit, .opcItem_decreaseNumButton_edit {
  width: 42px !important;
  background: #000 !important;
  color: #fff;
  padding: 8px;
}

.opcCommonButtonGroup {
  margin-top: 1em;
}

.opcBillingAddress_genderMaleAndLabelGroup_edit, .opcBillingAddress_genderFemaleAndLabelGroup_edit {
  width: 15% !important;
}

.opcBillingAddress_acceptMailmagazineYesLabel_edit {
  margin-top: 1em;
  display: inline-block;
}

.opcOrderSummary_totalPriceAndLabelGroup {
  padding-bottom: 10px !important;
}

.opcCommonEditLabel {
  margin-top: 1em;
  border-left: 0px;
}

.opcOrderSummary_priceBreakDownGroup {
  padding-top: 1em;
  padding-bottom: 1em;
}

.opcOrderSummary_feeAndLabelGroup, .opcOrderSummary_usePointPriceAndLabelGroup {
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.opcBillingAddress_prefState_edit {
  margin: 5px 0;
}

.opcBillingAddressButtonGroup_edit, .opcDeliveryAddress_buttonGroup, .opcDeliveryMethod_buttonGroup_edit {
  padding: 1em 0;
}

.opcDeliveryMethod_hopeDeliveryDateAndLabelGroup_edit, .opcDeliveryMethod_hopeDeliveryTimeAndLabelGroup_edit {
  margin-bottom: 1em;
}

.opcItem_itemSubTotalPriceAndLabelGroup {
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.opcDeliveryAddressAndDeliveryMethodGroup, .opcItemList {
  margin-bottom: 0 !important;
  border: none !important;
  padding: 0 !important;
  position: static !important;
}

.opcBillingAddress .opcCommonReferenceLabel {
  width: 70px;
  display: inline-block;
  position: relative;
}

.opcBillingAddress .opcCommonReferenceLabel::after {
  position: absolute;
  right: 0;
}

.opcDeliveryMethod .opcCommonReferenceLabel {
  width: 123px;
  display: inline-block;
  position: relative;
}

.opcDeliveryMethod .opcCommonReferenceLabel::after {
  position: absolute;
  right: 0;
}

.opcCommonRequireLabel {
  color: #ec4b39 !important;
  font-weight: bold;
}

.opcRemarks_remark_edit {
  width: 100% !important;
}

.opcDeliveryAddressEditDialog_directChangeButtonAndLabelGroup {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2em;
}

.opcDeliveryAddressEditDialog_directChangeLabel {
  width: 100%;
}

.opcDeliveryAddressEditDialog_directChangeButtonAndLabelGroup .opcCommonButton {
  width: calc(32% - 1em) !important;
}

.opcItem_itemName {
  font-weight: bold;
  font-size: 15px;
}

.opcConfirm_headerErrorMessage {
  width: 100% !important;
  max-width: 800px;
}

.opcRemarks_remark, .opcRemarks_cartOption {
  margin-left: 0 !important;
  width: 100% !important;
  white-space: normal !important;
}

#sysOpc > form + div {
  margin-bottom: 60px !important;
}

.opcDeliveryMethod_normalShippingDetailAndLabelGroup_edit {
  padding-left: 0 !important;
  margin-left: 0 !important;
  border-bottom: none !important;
}

.opcDeliveryAddress {
  border-bottom: 1px solid #9b9b9b;
  margin-bottom: 1em;
}

.opcDeliveryMethod_hopeDeliveryDateLabel_edit {
  width: 126px;
  display: inline-block;
}

/* TB */
@media only screen and (min-width: 601px) and (max-width: 1160px) {
  .sysCart #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .h_inner,
  .sysOpcBody #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .h_inner {
    margin: 0;
  }
  .sysCart #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .logo,
  .sysOpcBody #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .logo {
    display: block;
  }
  .sysCart #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .head_title,
  .sysOpcBody #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .head_title {
    background-color: #fff;
    margin: 0;
    padding: 0;
    display: block;
    font-weight: 400;
    font-size: 1rem;
    margin-top: 8px;
  }
  .sysCart #sysAll #sysWrap,
  .sysOpcBody #sysAll #sysWrap {
    margin: 0 auto;
  }
}

/* SP */
@media only screen and (max-width: 600px) {
  .sysCart #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .h_inner,
  .sysOpcBody #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .h_inner {
    margin: 0;
  }
  .sysCart #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .logo,
  .sysOpcBody #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .logo {
    display: block;
  }
  .sysCart #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .head_title,
  .sysOpcBody #sysAll #sysHeader .header_wrap .header_inner .header_h1_under .head_title {
    background-color: #fff;
    margin: 0;
    padding: 0;
    display: block;
    font-weight: 400;
    font-size: 1rem;
    margin-top: 8px;
  }
  .sysCart #sysAll #sysWrap,
  .sysOpcBody #sysAll #sysWrap {
    margin: 0 auto;
  }
  .sysCart #sysAll #sysWrap .opcBillingAddress_genderMaleAndLabelGroup_edit,
  .sysOpcBody #sysAll #sysWrap .opcBillingAddress_genderMaleAndLabelGroup_edit {
    width: 30% !important;
  }
  .sysCart #sysAll #sysWrap .opcBillingAddress_genderFemaleAndLabelGroup_edit,
  .sysOpcBody #sysAll #sysWrap .opcBillingAddress_genderFemaleAndLabelGroup_edit {
    width: 30% !important;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
item_detail.css
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
#sysItemDetail .sysModalItemImages .sysModalImageList li.sysCurrent img {
  border: 2px solid #e69494;
}

#sysItemDetail #sysAll #sysWrap #sysMain article {
  /* タイトル */
  /* タイトル */
  /* 画像とテキストの横並び設定 */
}

#sysItemDetail #sysAll #sysWrap #sysMain article .sysCategoryPankuzu {
  margin-bottom: 10px;
}

#sysItemDetail #sysAll #sysWrap #sysMain article .sysCategoryPankuzu a {
  font-size: 1.2rem;
}

#sysItemDetail #sysAll #sysWrap #sysMain article .sysCategoryPankuzu br:first-of-type {
  display: none;
}

#sysItemDetail #sysAll #sysWrap #sysMain article .sysItemName h1 {
  font-size: 2.2rem;
  font-weight: normal;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* 画像 */
  /* テキスト */
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .sysItemImages {
  width: 48%;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .sysItemImages .sysMainImage a {
  display: block;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .sysItemImages .sysMainImage a img {
  display: block;
  width: 100%;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .sysItemImages .sysImageDescription {
  font-size: 1.2rem;
  margin: 5px 0 10px;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .sysItemImages .sysImageList {
  display: flex;
  flex-wrap: wrap;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .sysItemImages .sysImageList li {
  float: none;
  width: 24%;
  height: auto;
  margin: 0;
  line-height: inherit;
  margin-right: 1.32%;
  margin-bottom: 1.32%;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .sysItemImages .sysImageList li:nth-of-type(4n) {
  margin-right: 0;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .sysItemImages .sysImageList li.sysCurrent img {
  border: 2px solid #e69494;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea {
  width: 50%;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysPr {
  margin-bottom: 15px;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysDescription {
  margin-bottom: 20px;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation {
  margin-bottom: 20px;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation table {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  border: none;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation table thead {
  text-align: center;
  color: #fff;
  background: #e69494;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation table thead tr {
  border-bottom: none;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation table thead tr th {
  border: none;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation table tr {
  border-bottom: 1px solid #ccc;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation table th,
#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation table td {
  padding: 6px 10px;
  text-align: center;
  border: none;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation table td {
  text-align: left;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation .itempage_detail h3 {
  font-size: 1.8rem;
  font-weight: 400;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation .itempage_detail table {
  width: 100%;
  margin-bottom: 10px;
  border-top: 1px solid #ccc;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation .itempage_detail table tr {
  border-bottom: 1px solid #ccc;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation .itempage_detail table th, #sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation .itempage_detail table td {
  padding: 10px;
  font-size: 1.2rem;
  text-align: center;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation .itempage_detail table th {
  width: 30%;
  border-right: 1px solid #ccc;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation .itempage_detail table td {
  width: 70%;
  text-align: left;
  background: #fff;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation .show_bx {
  margin-bottom: 30px;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation .show_bx .show_bx_inner {
  margin-bottom: 10px;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation .show_bx .show_bx_inner .btn_tr {
  padding: 10px 0 10px 35px !important;
  background: #e4e4e4 url(https://leloop-marry.me/img/layout/system/ico_plus.png) 10px center no-repeat !important;
  background-size: 18px !important;
  cursor: pointer;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation .show_bx .show_bx_inner .btn_tr.active {
  background: #e4e4e4 url(https://leloop-marry.me/img/layout/system/ico_minus.png) 10px center no-repeat !important;
  background-size: 18px !important;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation .show_bx .show_bx_inner .contents_tr {
  background-color: #f5f5f5;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysExplanation .show_bx .show_bx_inner .contents_tr table {
  margin-bottom: 0 !important;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysItemId {
  font-size: 1.2rem;
  text-align: right;
  font-family: 'Montserrat', "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysRetailPrice {
  width: 100%;
  margin-bottom: 5px;
  color: #000;
  font-weight: 700;
  text-align: right;
  font-family: 'Montserrat', "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysRetailPrice .sysRetailPriceValue {
  font-size: 2rem;
  font-weight: 700;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm select {
  width: 100%;
  display: inline-block;
  float: none;
  margin: 5px 0;
  padding: 7px .5em;
  border: 1px solid #000;
  line-height: 1;
  border-radius: 0;
  box-sizing: border-box;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysCartInForm #sysVariation {
  width: 100%;
  overflow: hidden;
  margin-left: auto;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysCartInForm #sysVariation .sysFormVariationTable {
  width: 100%;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysCartInForm #sysVariation .sysFormVariationTable .sysFormVariationName {
  background-color: #fdf5f5;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysSelections {
  margin-bottom: 10px;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysSelections > div {
  margin-bottom: 10px;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysSelections > div input {
  border: 1px solid #000;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysNumber {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysNumber select {
  max-width: 120px;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysNumber .sysNumArea {
  display: flex;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysNumber .sysNumArea button {
  overflow: hidden;
  display: block;
  width: 40px;
  height: 30px;
  border: 1px solid #000;
  border-radius: 0;
  background: #000;
  cursor: pointer;
  position: relative;
  font-size: 0;
  transition-duration: 300ms;
  margin-left: 5px;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysNumber .sysNumArea button:hover {
  background-color: #fff !important;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysNumber .sysNumArea button:hover::before {
  color: #000 !important;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysNumber .sysNumArea button.sysBtnPlus::before {
  content: "+";
  display: block;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  line-height: 1.2;
  transition-duration: 300ms;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysNumber .sysNumArea button.sysBtnMinus::before {
  content: "−";
  display: block;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  line-height: 1.4;
  transition-duration: 300ms;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysSubtotal {
  width: 100%;
  color: #000;
  font-weight: 700;
  text-align: right;
  font-family: 'Montserrat', "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysSubtotal .sysSubtotalPrice {
  font-size: 2rem;
  font-weight: 700;
}

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysSubmit .sysCartButton {
  width: 100%;
  max-width: 100%;
  padding: 23px 15px !important;
  text-indent: -999px;
  background: #ec4b39 url(https://leloop-marry.me/img/layout/system/btn_cart.png) center center no-repeat;
  background-size: 140px;
  border: none;
}
#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysWishlist .sysButton {
  width: 100%;
  overflow: hidden;
  border: 1px solid #b9b9b9;
  background-size: 100px;
  border-radius: 0;
}

/* お気に入りボタンの色を変える為に変更 20210216 
#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm #sysWishlist .sysButton {
  width: 100%;
  overflow: hidden;
  text-indent: -999px;
  border: 1px solid #b9b9b9;
  background: #fff url(https://leloop-marry.me/img/layout/system/btn_favo.png) center center no-repeat;
  background-size: 100px;
  border-radius: 0;
}
*/

#sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea .sysForm .sysShare {
  text-align: right;
}

/* SP */
@media only screen and (max-width: 600px) {
  #sysItemDetail #sysAll #sysWrap #sysMain article {
    /* タイトル */
    /* 画像とテキストの横並び設定解除 */
  }
  #sysItemDetail #sysAll #sysWrap #sysMain article .sysItemName h1 {
    font-size: 2rem;
    padding-bottom: 5px;
    margin-bottom: 20px;
  }
  #sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea {
    display: block;
    /* 画像 */
    /* テキスト */
  }
  #sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .sysItemImages {
    width: 100%;
    margin-bottom: 20px;
  }
  #sysItemDetail #sysAll #sysWrap #sysMain article > .orderArea .orderArea {
    width: 100%;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
item_list.css
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
/* 件数表示＋表示切り替え部分 */
.sysItemListDisp {
  margin-bottom: 20px;
  /* リストとサムネイル切り替え部分：アイコンを使用する場合は以下をアクティブにしてください */
}

.sysItemListDisp .sysItemListViewType label {
  font-size: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  cursor: pointer;
}

.sysItemListDisp .sysItemListViewType label:nth-of-type(1) {
  background-image: url(https://leloop-marry.me/img/common/ico_list.png);
}

.sysItemListDisp .sysItemListViewType label:nth-of-type(2) {
  background-image: url(https://leloop-marry.me/img/common/ico_thumbnail.png);
}

.sysItemListDisp .sysItemListViewType label input {
  display: none !important;
}

.sysItemList {
  /* リスト表示 */
  /* サムネイル表示 */
}

.sysItemList ul.sysList li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.sysItemList ul.sysList li > div {
  width: 100%;
}

.sysItemList ul.sysList li .sysThumbnailImage {
  width: 20%;
}

.sysItemList ul.sysList li .itemDetailWrap {
  width: 78%;
}

.sysItemList ul.sysList li .itemDetailWrap .sysItemName {
  font-size: 1.6rem;
  line-height: 1.4;
}

.sysItemList ul.sysList li > form {
  position: absolute;
  bottom: 55px;
  right: 5px;
}

.sysItemList ul.sysList li .sysWishListButtonFormAjax {
  position: absolute;
  bottom: 0;
  right: 5px;
}

.sysItemList ul.sysList li form {
  width: 100%;
  text-align: right;
  margin: 5px 0;
  line-height: 1.6;
}

.sysItemList ul.sysList li form input[type=submit] {
  margin: 0;
  width: 100%;
  max-width: 200px;
}

.sysItemList ul.sysList li form button {
  margin: 0;
  width: 100%;
  max-width: 200px;
  border-radius: 0;
  background-color: #fff;
}

.sysItemList ul.sysList li form input[type="text"],
.sysItemList ul.sysList li form select {
  border: 1px solid #000;
}

.sysItemList ul.sysList li form .sysAddSelection select,
.sysItemList ul.sysList li form .sysAddVariation select {
  width: 100%;
  max-width: 200px;
  margin-bottom: 5px;
}

.sysItemList ul.sysThumbnail {
  display: flex;
  flex-wrap: wrap;
}

.sysItemList ul.sysThumbnail li {
  float: none;
  display: flex;
  flex-direction: column;
}

.sysItemList ul.sysThumbnail li > div {
  width: 100%;
}

.sysItemList ul.sysThumbnail li .sysThumbnailImage {
  flex-shrink: 0;
}

.sysItemList ul.sysThumbnail li .itemDetailWrap {
  height: auto !important;
  margin-bottom: 10px;
}

.sysItemList ul.sysThumbnail li .itemDetailWrap .sysItemName {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.sysItemList ul.sysThumbnail li form {
  width: 100%;
  margin: 10px 0;
  margin-top: auto;
  line-height: 1.6;
}

.sysItemList ul.sysThumbnail li form input[type=submit] {
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.sysItemList ul.sysThumbnail li form button {
  margin: 0;
  width: 100%;
  border-radius: 0;
  background-color: #fff;
}

.sysItemList ul.sysThumbnail li form input[type="text"],
.sysItemList ul.sysThumbnail li form select {
  border: 1px solid #000;
}

.sysItemList ul.sysThumbnail li form .sysAddSelection select,
.sysItemList ul.sysThumbnail li form .sysAddVariation select {
  width: 100%;
  margin-bottom: 5px;
}

#sysItemCategory #sysAll #sysWrap #sysMain {
  /* ソート部分 */
}

#sysItemCategory #sysAll #sysWrap #sysMain .sysItemCategoryPankuzu a {
  font-size: 1.2rem;
}

#sysItemCategory #sysAll #sysWrap #sysMain .sysItemCategoryInfo .sysCategoryDescription {
  padding: 10px 0;
}

#sysItemCategory #sysAll #sysWrap #sysMain .sysItemCategoryInfo .sysCategoryDescription .img {
  width: 100%;
  margin-bottom: 20px;
}

#sysItemCategory #sysAll #sysWrap #sysMain .sysItemCategoryInfo .sysCategoryDescription .img img {
  display: block;
  width: 100%;
}

#sysItemCategory #sysAll #sysWrap #sysMain .sysItemCategoryInfo .sysCategoryDescription .emphasize {
  color: #e69494;
  font-weight: 700;
  font-size: 1.3em;
}

#sysItemCategory #sysAll #sysWrap #sysMain .sysItemCategoryCtl a {
  display: inline-block;
  padding: 1px 4px;
  background: #fff;
  border: 1px solid lightgray;
  border-radius: 0;
  text-decoration: none;
  margin: 2px 0;
}

#sysItemCategory #sysAll #sysWrap #sysMain .sysItemCategoryCtl a:hover {
  opacity: 1;
  background: #e69494;
  color: #fff;
  border: 1px solid #e69494;
}

#sysItemCategory #sysAll #sysWrap #sysMain .sysItemCategoryCtl a.sysCurrent {
  background: #e69494;
  color: #fff;
  font-weight: 400;
  border: 1px solid #e69494;
}

#sysItemCategory #sysAll #sysWrap #sysMain .sysPagination {
  margin-top: 30px;
}

#sysItemCategory #sysAll #sysWrap #sysMain .sysPagination li {
  width: 40px;
  height: 40px;
}

#sysItemCategory #sysAll #sysWrap #sysMain .sysPagination li a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 29px;
  vertical-align: middle;
  border: 1px solid #000;
}

#sysItemCategory #sysAll #sysWrap #sysMain .sysPagination li a.sysCurrent {
  background-color: #000;
  color: #fff;
}

#sysItemSearch #sysAll #sysWrap #sysMain {
  /* 検索条件変更 */
}

#sysItemSearch #sysAll #sysWrap #sysMain h2 {
  margin-bottom: 10px;
}

#sysItemSearch #sysAll #sysWrap #sysMain > form {
  font-size: 1.2rem;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #ededed;
}

#sysItemSearch #sysAll #sysWrap #sysMain > form .sysItemSearchFormWord {
  margin-bottom: 5px;
}

#sysItemSearch #sysAll #sysWrap #sysMain > form .sysItemSearchFormWord input {
  height: 40px;
  vertical-align: bottom;
  border: 1px solid #d0d0d0;
}

#sysItemSearch #sysAll #sysWrap #sysMain > form input[type="radio"] {
  margin: 10px 10px 20px;
}

#sysItemSearch #sysAll #sysWrap #sysMain > form select {
  height: 30px;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 0;
}

#sysItemSearch #sysAll #sysWrap #sysMain > form .sysItemSearchFormRange {
  display: inline-block;
  margin: 5px auto;
}

#sysItemSearch #sysAll #sysWrap #sysMain > form .sysItemSearchFormRange input {
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

#sysItemSearch #sysAll #sysWrap #sysMain > form .sysItemSearchFormCategory {
  display: inline-block;
  margin: 5px auto;
}

#sysItemSearch #sysAll #sysWrap #sysMain > form .sysItemSearchFormSort {
  display: inline-block;
  margin: 5px auto;
}

#sysItemSearch #sysAll #sysWrap #sysMain > form .sysItemSearchFormLimit {
  display: inline-block;
  margin: 5px auto;
}

#sysItemSearch #sysAll #sysWrap #sysMain > form .sysSearchButton {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 100%;
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
  font-size: 120%;
  cursor: pointer;
  border-radius: 0;
}

#sysItemSearch #sysAll #sysWrap #sysMain > form .sysSearchButton:hover {
  background-color: transparent;
  color: #000;
  opacity: 1;
}

/* TB */
@media only screen and (min-width: 601px) and (max-width: 1160px) {
  .sysItemList {
    /* リスト表示 */
  }
  .sysItemList ul.sysList li .sysThumbnailImage {
    width: 30%;
  }
  .sysItemList ul.sysList li .itemDetailWrap {
    width: 68%;
  }
}

/* SP */
@media only screen and (max-width: 600px) {
  .sysItemList {
    /* リスト表示 */
    /* サムネイル表示 */
  }
  .sysItemList ul.sysList li {
    justify-content: space-between;
  }
  .sysItemList ul.sysList li .sysThumbnailImage {
    width: 40%;
  }
  .sysItemList ul.sysList li .itemDetailWrap {
    width: 58%;
  }
  .sysItemList ul.sysList li .itemDetailWrap .sysItemName {
    font-size: 1.4rem;
  }
  .sysItemList ul.sysList li > form {
    position: static;
  }
  .sysItemList ul.sysList li .sysWishListButtonFormAjax {
    position: static;
  }
  .sysItemList ul.sysList li form input[type=submit] {
    max-width: 100%;
  }
  .sysItemList ul.sysList li form button {
    max-width: 100%;
  }
  .sysItemList ul.sysThumbnail li {
    width: 33.32%;
  }
  .sysItemList ul.sysThumbnail li .itemDetailWrap .sysItemName {
    font-size: 1.2rem;
    margin-top: 5px;
  }
  .sysItemList ul.sysThumbnail li form input[type="submit"],
  .sysItemList ul.sysThumbnail li form button {
    font-size: x-small;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
text_page.css
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
#law #sysAll #sysWrap #sysMain,
#shopping-guide #sysAll #sysWrap #sysMain,
#questions #sysAll #sysWrap #sysMain,
#privacypolicy #sysAll #sysWrap #sysMain,
#corporate #sysAll #sysWrap #sysMain {
  max-width: 860px;
}

#law #sysAll #sysWrap #sysMain .text_page,
#shopping-guide #sysAll #sysWrap #sysMain .text_page,
#questions #sysAll #sysWrap #sysMain .text_page,
#privacypolicy #sysAll #sysWrap #sysMain .text_page,
#corporate #sysAll #sysWrap #sysMain .text_page {
  /* テキストページ共通 */
  /* ご利用ガイド */
  /* よくある質問 */
  /* 特定商取引法に基づく表示 */
}

#law #sysAll #sysWrap #sysMain .text_page .sysHeadline,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .sysHeadline,
#questions #sysAll #sysWrap #sysMain .text_page .sysHeadline,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .sysHeadline,
#corporate #sysAll #sysWrap #sysMain .text_page .sysHeadline {
  margin-top: 0;
}

#law #sysAll #sysWrap #sysMain .text_page .pattern01,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .pattern01,
#questions #sysAll #sysWrap #sysMain .text_page .pattern01,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .pattern01,
#corporate #sysAll #sysWrap #sysMain .text_page .pattern01 {
  font-size: 1.8rem;
  border-left: 5px solid #e69494;
  padding-left: 5px;
  margin: .8em 0;
}

#law #sysAll #sysWrap #sysMain .text_page .pattern02,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .pattern02,
#questions #sysAll #sysWrap #sysMain .text_page .pattern02,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .pattern02,
#corporate #sysAll #sysWrap #sysMain .text_page .pattern02 {
  font-size: 1.6rem;
  border-bottom: 1px solid #e69494;
  padding-left: 5px;
  padding-bottom: 5px;
  margin: .6em 0;
}

#law #sysAll #sysWrap #sysMain .text_page .tel_link,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .tel_link,
#questions #sysAll #sysWrap #sysMain .text_page .tel_link,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .tel_link,
#corporate #sysAll #sysWrap #sysMain .text_page .tel_link {
  pointer-events: none;
  color: #000 !important;
  text-decoration: none !important;
}

#law #sysAll #sysWrap #sysMain .text_page .list_disc,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .list_disc,
#questions #sysAll #sysWrap #sysMain .text_page .list_disc,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .list_disc,
#corporate #sysAll #sysWrap #sysMain .text_page .list_disc {
  padding-left: 1.5em;
}

#law #sysAll #sysWrap #sysMain .text_page .list_disc li,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .list_disc li,
#questions #sysAll #sysWrap #sysMain .text_page .list_disc li,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .list_disc li,
#corporate #sysAll #sysWrap #sysMain .text_page .list_disc li {
  list-style-type: disc;
}

#law #sysAll #sysWrap #sysMain .text_page .list_decimal,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .list_decimal,
#questions #sysAll #sysWrap #sysMain .text_page .list_decimal,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .list_decimal,
#corporate #sysAll #sysWrap #sysMain .text_page .list_decimal {
  padding-left: 1.5em;
}

#law #sysAll #sysWrap #sysMain .text_page .list_decimal li,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .list_decimal li,
#questions #sysAll #sysWrap #sysMain .text_page .list_decimal li,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .list_decimal li,
#corporate #sysAll #sysWrap #sysMain .text_page .list_decimal li {
  list-style-type: decimal;
}

#law #sysAll #sysWrap #sysMain .text_page .txtBlock,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .txtBlock,
#questions #sysAll #sysWrap #sysMain .text_page .txtBlock,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .txtBlock,
#corporate #sysAll #sysWrap #sysMain .text_page .txtBlock {
  margin: 30px 0;
  font-size: 1.4rem;
}

#law #sysAll #sysWrap #sysMain .text_page .txtBlock .larger,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .txtBlock .larger,
#questions #sysAll #sysWrap #sysMain .text_page .txtBlock .larger,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .txtBlock .larger,
#corporate #sysAll #sysWrap #sysMain .text_page .txtBlock .larger {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

#law #sysAll #sysWrap #sysMain .text_page .txtBlock ul li,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .txtBlock ul li,
#questions #sysAll #sysWrap #sysMain .text_page .txtBlock ul li,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .txtBlock ul li,
#corporate #sysAll #sysWrap #sysMain .text_page .txtBlock ul li {
  margin: 5px 0;
}

#law #sysAll #sysWrap #sysMain .text_page .txtBlock a,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .txtBlock a,
#questions #sysAll #sysWrap #sysMain .text_page .txtBlock a,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .txtBlock a,
#corporate #sysAll #sysWrap #sysMain .text_page .txtBlock a {
  display: inline-block;
  color: #068acc;
  text-decoration: underline;
}

#law #sysAll #sysWrap #sysMain .text_page hr.style01,
#shopping-guide #sysAll #sysWrap #sysMain .text_page hr.style01,
#questions #sysAll #sysWrap #sysMain .text_page hr.style01,
#privacypolicy #sysAll #sysWrap #sysMain .text_page hr.style01,
#corporate #sysAll #sysWrap #sysMain .text_page hr.style01 {
  width: 100%;
  height: 1px;
  background: #222222;
  margin: 50px auto;
  padding: 0;
  border: 0;
}

#law #sysAll #sysWrap #sysMain .text_page .guideBlock,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock,
#questions #sysAll #sysWrap #sysMain .text_page .guideBlock,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock,
#corporate #sysAll #sysWrap #sysMain .text_page .guideBlock {
  padding-top: 0;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0;
  margin-bottom: 30px;
}

#law #sysAll #sysWrap #sysMain .text_page .guideBlock .txtBlock > ul > li,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .txtBlock > ul > li,
#questions #sysAll #sysWrap #sysMain .text_page .guideBlock .txtBlock > ul > li,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .txtBlock > ul > li,
#corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .txtBlock > ul > li {
  margin-bottom: 30px;
}

#law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee,
#questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee,
#corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee {
  width: 100%;
  margin: 20px auto;
}

#law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .tableTitle,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .tableTitle,
#questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .tableTitle,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .tableTitle,
#corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .tableTitle {
  font-size: 1.6rem;
  color: #424242;
  margin-bottom: 10px;
}

#law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable,
#questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable,
#corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  line-height: 1.4;
  text-align: center;
}

#law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead,
#questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead,
#corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead {
  background: #555;
  text-align: center;
}

#law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead th,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead th,
#questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead th,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead th,
#corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead th {
  padding: 10px;
  vertical-align: top;
  font-weight: normal;
  color: #fff;
}

#law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead.spThead,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead.spThead,
#questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead.spThead,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead.spThead,
#corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead.spThead {
  display: none;
}

#law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody th,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody th,
#questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody th,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody th,
#corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody th {
  width: 55%;
  padding: 10px;
  vertical-align: top;
  background: #fff;
  font-weight: normal;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  box-sizing: border-box;
}

#law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody td,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody td,
#questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody td,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody td,
#corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody td {
  width: 45%;
  padding: 10px;
  vertical-align: top;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
  background: #eee;
}

#law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable b,
#shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable b,
#questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable b,
#privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable b,
#corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable b {
  color: #D42E30;
  display: inline-block;
  padding: 0 3px;
  font-size: 1.2em;
}

#law #sysAll #sysWrap #sysMain .text_page.questions .txtBlock > ul > li,
#shopping-guide #sysAll #sysWrap #sysMain .text_page.questions .txtBlock > ul > li,
#questions #sysAll #sysWrap #sysMain .text_page.questions .txtBlock > ul > li,
#privacypolicy #sysAll #sysWrap #sysMain .text_page.questions .txtBlock > ul > li,
#corporate #sysAll #sysWrap #sysMain .text_page.questions .txtBlock > ul > li {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

#law #sysAll #sysWrap #sysMain .text_page.questions .txtBlock .answer,
#shopping-guide #sysAll #sysWrap #sysMain .text_page.questions .txtBlock .answer,
#questions #sysAll #sysWrap #sysMain .text_page.questions .txtBlock .answer,
#privacypolicy #sysAll #sysWrap #sysMain .text_page.questions .txtBlock .answer,
#corporate #sysAll #sysWrap #sysMain .text_page.questions .txtBlock .answer {
  color: #e69494;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1;
}

#law #sysAll #sysWrap #sysMain .text_page #main_tradelaw,
#shopping-guide #sysAll #sysWrap #sysMain .text_page #main_tradelaw,
#questions #sysAll #sysWrap #sysMain .text_page #main_tradelaw,
#privacypolicy #sysAll #sysWrap #sysMain .text_page #main_tradelaw,
#corporate #sysAll #sysWrap #sysMain .text_page #main_tradelaw {
  width: 100%;
  border: 1px solid #ddd;
  margin: 0 auto 30px;
}

#law #sysAll #sysWrap #sysMain .text_page #main_tradelaw dl,
#shopping-guide #sysAll #sysWrap #sysMain .text_page #main_tradelaw dl,
#questions #sysAll #sysWrap #sysMain .text_page #main_tradelaw dl,
#privacypolicy #sysAll #sysWrap #sysMain .text_page #main_tradelaw dl,
#corporate #sysAll #sysWrap #sysMain .text_page #main_tradelaw dl {
  display: flex;
  background: #ededed;
  border-bottom: 1px dotted #bfbfbf;
}

#law #sysAll #sysWrap #sysMain .text_page #main_tradelaw dl:last-of-type,
#shopping-guide #sysAll #sysWrap #sysMain .text_page #main_tradelaw dl:last-of-type,
#questions #sysAll #sysWrap #sysMain .text_page #main_tradelaw dl:last-of-type,
#privacypolicy #sysAll #sysWrap #sysMain .text_page #main_tradelaw dl:last-of-type,
#corporate #sysAll #sysWrap #sysMain .text_page #main_tradelaw dl:last-of-type {
  border: none;
}

#law #sysAll #sysWrap #sysMain .text_page #main_tradelaw dt,
#shopping-guide #sysAll #sysWrap #sysMain .text_page #main_tradelaw dt,
#questions #sysAll #sysWrap #sysMain .text_page #main_tradelaw dt,
#privacypolicy #sysAll #sysWrap #sysMain .text_page #main_tradelaw dt,
#corporate #sysAll #sysWrap #sysMain .text_page #main_tradelaw dt {
  width: 25%;
  padding: 15px;
  font-weight: 700;
}

#law #sysAll #sysWrap #sysMain .text_page #main_tradelaw dd,
#shopping-guide #sysAll #sysWrap #sysMain .text_page #main_tradelaw dd,
#questions #sysAll #sysWrap #sysMain .text_page #main_tradelaw dd,
#privacypolicy #sysAll #sysWrap #sysMain .text_page #main_tradelaw dd,
#corporate #sysAll #sysWrap #sysMain .text_page #main_tradelaw dd {
  width: 75%;
  padding: 15px;
  background: #fff;
  margin-left: 0;
}

#law #sysAll #sysWrap #sysMain .text_page #main_tradelaw dd a,
#shopping-guide #sysAll #sysWrap #sysMain .text_page #main_tradelaw dd a,
#questions #sysAll #sysWrap #sysMain .text_page #main_tradelaw dd a,
#privacypolicy #sysAll #sysWrap #sysMain .text_page #main_tradelaw dd a,
#corporate #sysAll #sysWrap #sysMain .text_page #main_tradelaw dd a {
  display: inline-block;
  color: #068acc;
  text-decoration: underline;
}

/* SP */
@media only screen and (max-width: 600px) {
  #law #sysAll #sysWrap #sysMain .text_page,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page,
  #questions #sysAll #sysWrap #sysMain .text_page,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page,
  #corporate #sysAll #sysWrap #sysMain .text_page {
    /* テキストページ共通 */
    /* ご利用ガイド */
    /* 特定商取引法に基づく表示 */
  }
  #law #sysAll #sysWrap #sysMain .text_page .pattern01,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page .pattern01,
  #questions #sysAll #sysWrap #sysMain .text_page .pattern01,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page .pattern01,
  #corporate #sysAll #sysWrap #sysMain .text_page .pattern01 {
    font-size: 1.6rem;
  }
  #law #sysAll #sysWrap #sysMain .text_page .pattern02,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page .pattern02,
  #questions #sysAll #sysWrap #sysMain .text_page .pattern02,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page .pattern02,
  #corporate #sysAll #sysWrap #sysMain .text_page .pattern02 {
    font-size: 1.4rem;
  }
  #law #sysAll #sysWrap #sysMain .text_page .tel_link,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page .tel_link,
  #questions #sysAll #sysWrap #sysMain .text_page .tel_link,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page .tel_link,
  #corporate #sysAll #sysWrap #sysMain .text_page .tel_link {
    pointer-events: auto;
    color: #068acc !important;
    text-decoration: underline !important;
  }
  #law #sysAll #sysWrap #sysMain .text_page .txtBlock,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page .txtBlock,
  #questions #sysAll #sysWrap #sysMain .text_page .txtBlock,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page .txtBlock,
  #corporate #sysAll #sysWrap #sysMain .text_page .txtBlock {
    font-size: 1.2rem;
    margin: 20px 0;
  }
  #law #sysAll #sysWrap #sysMain .text_page .txtBlock .larger,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page .txtBlock .larger,
  #questions #sysAll #sysWrap #sysMain .text_page .txtBlock .larger,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page .txtBlock .larger,
  #corporate #sysAll #sysWrap #sysMain .text_page .txtBlock .larger {
    font-size: 1.4rem;
  }
  #law #sysAll #sysWrap #sysMain .text_page hr.style01,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page hr.style01,
  #questions #sysAll #sysWrap #sysMain .text_page hr.style01,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page hr.style01,
  #corporate #sysAll #sysWrap #sysMain .text_page hr.style01 {
    margin: 30px auto;
  }
  #law #sysAll #sysWrap #sysMain .text_page .guideBlock,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock,
  #questions #sysAll #sysWrap #sysMain .text_page .guideBlock,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock,
  #corporate #sysAll #sysWrap #sysMain .text_page .guideBlock {
    padding-top: 0;
  }
  #law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable,
  #questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable,
  #corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable {
    text-align: left;
    font-size: 1.2rem;
  }
  #law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead,
  #questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead,
  #corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead {
    width: 100%;
  }
  #law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead th,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead th,
  #questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead th,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead th,
  #corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead th {
    display: block;
  }
  #law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead.spThead,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead.spThead,
  #questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead.spThead,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead.spThead,
  #corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead.spThead {
    display: block;
  }
  #law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead.pcThead,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead.pcThead,
  #questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead.pcThead,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead.pcThead,
  #corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable thead.pcThead {
    display: none;
  }
  #law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody th,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody th,
  #questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody th,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody th,
  #corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody th {
    display: block;
    width: 100%;
    border: none;
  }
  #law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody td,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody td,
  #questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody td,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody td,
  #corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable tbody td {
    display: block;
    width: 100%;
    border: none;
  }
  #law #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable b,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable b,
  #questions #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable b,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable b,
  #corporate #sysAll #sysWrap #sysMain .text_page .guideBlock .shipFee .shipFeeTable b {
    color: #D42E30;
    display: inline-block;
    padding: 0 3px;
    font-size: 1.2em;
  }
  #law #sysAll #sysWrap #sysMain .text_page #main_tradelaw,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page #main_tradelaw,
  #questions #sysAll #sysWrap #sysMain .text_page #main_tradelaw,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page #main_tradelaw,
  #corporate #sysAll #sysWrap #sysMain .text_page #main_tradelaw {
    border: none;
  }
  #law #sysAll #sysWrap #sysMain .text_page #main_tradelaw dl,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page #main_tradelaw dl,
  #questions #sysAll #sysWrap #sysMain .text_page #main_tradelaw dl,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page #main_tradelaw dl,
  #corporate #sysAll #sysWrap #sysMain .text_page #main_tradelaw dl {
    display: block;
    border: none;
  }
  #law #sysAll #sysWrap #sysMain .text_page #main_tradelaw dt,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page #main_tradelaw dt,
  #questions #sysAll #sysWrap #sysMain .text_page #main_tradelaw dt,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page #main_tradelaw dt,
  #corporate #sysAll #sysWrap #sysMain .text_page #main_tradelaw dt {
    width: 100%;
  }
  #law #sysAll #sysWrap #sysMain .text_page #main_tradelaw dd,
  #shopping-guide #sysAll #sysWrap #sysMain .text_page #main_tradelaw dd,
  #questions #sysAll #sysWrap #sysMain .text_page #main_tradelaw dd,
  #privacypolicy #sysAll #sysWrap #sysMain .text_page #main_tradelaw dd,
  #corporate #sysAll #sysWrap #sysMain .text_page #main_tradelaw dd {
    width: 100%;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
top.css
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
/* PC */
#top p {
  margin: 0 auto;
}

#top #sysAll #sysHeader {
  /* スライダー */
}

#top #sysAll #sysHeader .top_slider {
  margin-top: 113px;
}

#top #sysAll #sysHeader .top_slider img {
  display: block;
  width: 100%;
}

#top #sysAll #sysHeader .top_slider .slick-slide {
  opacity: .7;
  transition-duration: .2s;
}

#top #sysAll #sysHeader .top_slider .slick-current {
  opacity: 1;
}

#top #sysAll #sysWrap {
  margin-top: 0;
}

#top #sysAll #sysWrap #sysMain {
  /* 新着アイテム */
  /* 特集一覧 */
  /* おすすめ商品 */
  /* ランキング */
}

#top #sysAll #sysWrap #sysMain .top_newarrival {
  padding: 30px 0 70px;
}

#top #sysAll #sysWrap #sysMain .top_newarrival .sysItemBlock ul li {
  width: 33.32%;
  padding: 5px 25px;
}

#top #sysAll #sysWrap #sysMain .top_features {
  background-color: #fff0f6;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 30px 0 70px;
}

#top #sysAll #sysWrap #sysMain .top_features .sysContent {
  max-width: 1160px;
  padding: 0 30px;
  margin: 0 auto;
}

#top #sysAll #sysWrap #sysMain .top_features ul {
  display: flex;
  flex-wrap: wrap;
}

#top #sysAll #sysWrap #sysMain .top_features ul li {
  width: 33.32%;
  padding: 10px;
}

#top #sysAll #sysWrap #sysMain .top_features ul li .featuresText {
  margin: 10px auto;
}

#top #sysAll #sysWrap #sysMain .top_features ul li .featuresText span {
  display: block;
}

#top #sysAll #sysWrap #sysMain .top_recommend_item {
  padding: 30px 0 70px;
}

#top #sysAll #sysWrap #sysMain .top_recommend_item .sysItemBlock ul li {
  float: left;
}

#top #sysAll #sysWrap #sysMain .top_ranking_item {
  padding: 0 0 30px;
}

/* TB */
@media only screen and (min-width: 601px) and (max-width: 1160px) {
  #top #sysAll #sysHeader {
    /* スライダー */
  }
  #top #sysAll #sysHeader .top_slider {
    margin-top: 104px;
  }
  #top #sysAll #sysWrap #sysMain {
    /* 新着アイテム */
    /* 特集一覧 */
    /* おすすめ商品 */
  }
  #top #sysAll #sysWrap #sysMain .top_newarrival {
    padding: 30px 0 40px;
  }
  #top #sysAll #sysWrap #sysMain .top_newarrival .sysItemBlock ul li {
    width: 33%;
    padding: 5px 10px;
  }
  #top #sysAll #sysWrap #sysMain .top_features {
    padding: 10px 0 40px;
  }
  #top #sysAll #sysWrap #sysMain .top_features .sysContent {
    padding: 0 3%;
  }
  #top #sysAll #sysWrap #sysMain .top_recommend_item {
    padding: 10px 0 40px;
  }
  #top #sysAll #sysWrap #sysMain .top_recommend_item .sysItemBlock ul li {
    float: left;
  }
}

/* SP */
@media only screen and (max-width: 600px) {
  #top #sysAll #sysHeader {
    /* スライダー */
  }
  #top #sysAll #sysHeader .top_slider {
    margin-top: 102px;
  }
  #top #sysAll #sysWrap {
    margin-top: 0;
  }
  #top #sysAll #sysWrap #sysMain {
    /* 新着アイテム */
    /* 特集一覧 */
    /* おすすめ商品 */
    /* 商品ランキング */
  }
  #top #sysAll #sysWrap #sysMain .top_newarrival {
    padding: 10px 0 30px;
  }
  #top #sysAll #sysWrap #sysMain .top_newarrival .sysItemBlock ul li {
    padding: 5px;
  }
  #top #sysAll #sysWrap #sysMain .top_features {
    padding: 5px 0 30px;
  }
  #top #sysAll #sysWrap #sysMain .top_features .sysContent {
    padding: 0 3%;
  }
  #top #sysAll #sysWrap #sysMain .top_features ul li {
    width: 46%;
    padding: 0;
    margin: 2%;
  }
  #top #sysAll #sysWrap #sysMain .top_features ul li:nth-of-type(1), #top #sysAll #sysWrap #sysMain .top_features ul li:nth-of-type(2) {
    width: 100%;
    position: relative;
  }
  #top #sysAll #sysWrap #sysMain .top_features ul li:nth-of-type(1) .featuresText, #top #sysAll #sysWrap #sysMain .top_features ul li:nth-of-type(2) .featuresText {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 15;
    margin: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  }
  #top #sysAll #sysWrap #sysMain .top_features ul li .featuresText {
    margin: 10px auto;
  }
  #top #sysAll #sysWrap #sysMain .top_features ul li .featuresText span {
    display: block;
  }
  #top #sysAll #sysWrap #sysMain .top_recommend_item {
    padding: 10px 0 30px;
  }
  #top #sysAll #sysWrap #sysMain .top_recommend_item .sysItemBlock ul li .sysCartButton {
    width: 100%;
    font-size: 1rem;
    letter-spacing: -1px;
  }
  #top #sysAll #sysWrap #sysMain .top_ranking_item {
    padding: 0 0 10px;
  }
  #top #sysAll #sysWrap #sysMain .top_ranking_item .sysItemBlock ul li .sysCartButton {
    width: 100%;
    font-size: 1rem;
    letter-spacing: -1px;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
parts.css
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
/* ===========================
フェードインアニメーション
=========================== */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition-duration: 1200ms;
}

.fade.viewed {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
見出し
=========================== */
.sysTitle,
.sysHeadline {
  width: 100%;
  margin: 30px auto;
  position: relative;
  text-align: center;
  font-size: 4rem;
  letter-spacing: 3px;
  font-family: 'Montserrat', "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
  font-weight: 300;
}

.sysTitle span,
.sysHeadline span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 2.5em;
  padding: 0 40px;
  text-align: center;
}

.sysTitle b,
.sysHeadline b {
  display: block;
  font-size: 1.6rem;
  text-align: center;
}

.common_ttl01 {
  font-size: 1.8rem;
  border-left: 5px solid #e69494;
  padding-left: 5px;
  margin: .8em 0;
}

.common_ttl02 {
  font-size: 1.6rem;
  border-bottom: 1px solid #e69494;
  padding-left: 5px;
  padding-bottom: 5px;
  margin: .6em 0;
}

/* SP */
@media only screen and (max-width: 600px) {
  .sysTitle,
  .sysHeadline {
    position: static;
    font-size: 3rem;
    margin: 20px auto;
  }
  .sysTitle::before,
  .sysHeadline::before {
    height: 0;
  }
  .sysTitle span,
  .sysHeadline span {
    position: relative;
    margin: 0;
    padding: 0;
  }
  .sysTitle b,
  .sysHeadline b {
    font-size: 1.2rem;
  }
  .common_ttl01 {
    font-size: 1.6rem;
  }
  .common_ttl02 {
    font-size: 1.4rem;
  }
}

/* ----------------------------------------------------------------------------------- */
/* ===========================
ボタン
=========================== */
.common_btn {
  width: 100%;
  max-width: 250px;
  margin: 20px auto 50px;
  position: relative;
}

.common_btn a {
  display: block;
  padding: 15px 0;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  background: #000;
  border: 1px solid #000;
}

.common_btn a i {
  display: inline-block;
  margin-left: 10px;
  font-size: 2rem;
  transition-duration: 300ms;
}

.common_btn a:hover {
  background-color: transparent;
  color: #000;
}

.common_btn a:hover i {
  color: #000;
}

.sysCartButton {
  width: 100%;
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
  max-width: 200px;
  transition-duration: 300ms;
}

.sysCartButton:hover {
  background-color: transparent;
  opacity: 1;
  color: #000;
}

/* ----------------------------------------------------------------------------------- */
/* ===========================
スライダー設定
=========================== */
.slick-slider .slick-arrow {
  width: 11px;
  height: 20.4px;
  outline: none;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  transform: translateY(40%);
}

.slick-slider .slick-arrow.slick_prev {
  left: 35%;
  background: url(https://leloop-marry.me/img/common/controls.png) no-repeat 0 0;
  background-size: 22px;
}

.slick-slider .slick-arrow.slick_next {
  right: 35%;
  background: url(https://leloop-marry.me/img/common/controls.png) no-repeat -11px 0;
  background-size: 22px;
}

.slick-slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 0;
}

.slick-slider .slick-dots li {
  width: 40px !important;
  height: 5px !important;
  background-color: #ddd;
  border-radius: 0;
  margin: 0 4px !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  cursor: pointer;
}

.slick-slider .slick-dots li.slick-active {
  background-color: #000;
}

/* TB */
@media only screen and (min-width: 601px) and (max-width: 1160px) {
  .slick-slider .slick-arrow.slick_prev {
    left: 20%;
  }
  .slick-slider .slick-arrow.slick_next {
    right: 20%;
  }
}

/* SP */
@media only screen and (max-width: 600px) {
  .slick-slider .slick-arrow {
    width: 11px;
    height: 20.4px;
    transform: translateY(40%);
  }
  .slick-slider .slick-arrow.slick_prev {
    left: 15%;
    background: url(https://leloop-marry.me/img/common/controls.png) no-repeat 0 0;
    background-size: 22px;
  }
  .slick-slider .slick-arrow.slick_next {
    right: 15%;
    background: url(https://leloop-marry.me/img/common/controls.png) no-repeat -11px 0;
    background-size: 22px;
  }
  .slick-slider .slick-dots {
    margin: 20px auto 0;
  }
  .slick-slider .slick-dots li {
    width: 20px !important;
    height: 5px !important;
  }
}

/* ----------------------------------------------------------------------------------- */
/* ===========================
アイテムブロック
=========================== */
.sysFuncItemBlock .sysItemBlock .sysHorizontal {
  display: flex;
  flex-wrap: wrap;
}

.sysFuncItemBlock .sysItemBlock .sysHorizontal li {
  float: none;
  width: 33.32%;
  padding: 5px 25px;
  font-size: 1.2rem;
  margin: 0 0 20px;
}

.sysFuncItemBlock .sysItemBlock .sysHorizontal li .sysItemName {
  font-size: 1.5rem;
  padding-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.sysFuncItemBlock .sysItemBlock .sysHorizontal li .sysItemName a {
  display: block;
}

.sysFuncItemBlock .sysItemBlock .sysHorizontal li .sysAddSelection select,
.sysFuncItemBlock .sysItemBlock .sysHorizontal li .sysAddVariation select {
  width: 100%;
  margin-bottom: 5px;
}

/* TB */
@media only screen and (min-width: 601px) and (max-width: 1160px) {
  .sysFuncItemBlock .sysItemBlock .sysHorizontal li {
    padding: 5px 10px;
  }
}

/* SP */
@media only screen and (max-width: 600px) {
  .sysFuncItemBlock .sysItemBlock .sysHorizontal li {
    width: 33%;
    padding: 5px;
  }
  .sysFuncItemBlock .sysItemBlock .sysHorizontal li .sysItemName {
    font-size: 1.2rem;
    padding-top: 5px;
  }
}

/* ----------------------------------------------------------------------------------- */
/* ===========================
PR設定
=========================== */
.sysPr span {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
  text-align: center;
  border: 1px solid #222;
  border-radius: 0;
  padding: 3px 10px;
  margin: 0 0 5px;
  font-family: 'Montserrat', "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

.sysPr span:first-of-type {
  display: none;
}

/* ----------------------------------------------------------------------------------- */

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

}
@media screen and (min-width:601px) and (max-width:1160px){

}
@media screen and (min-width:1161px){

}
/* #END_OF_RESOURCE_FILE */
