@charset "utf-8";

:root {
  /* color */
  --my-bg-main: #16362f;
  --my-bg-light: #144036;
  --my-text-main: #333333;
  --my-text-feature: #b1856f;
  --my-text-main-rev: #ffffff;
  --my-text-feature-rev: #deb388;
  --my-text-compare: #555555;
  --my-button-conversion: #9e7a7a;
  --my-button-conversion-rev: #fbf7f3;
  --my-button-conversion-sub: #f7f0e9;
  --my-menu-border: #5e7e5f;
  --my-button-disabled: #a0a0a0;
  /* size */
  --my-header-height: 56px;
}
@media screen and (min-width: 768px) {
  :root {
    /* size */
    --my-header-height: 120px;
  }
}
@keyframes slide-in {
  0% {
    transform: translateX(10%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slide-out {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-10%);
  }
}
@keyframes modal-open {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modal-close {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(30px);
  }
}
@keyframes modal-closing {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
@keyframes zoom-out {
  0% {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
@keyframes rise-up {
  0% {
    opacity: 1;
    transform: translateY(120%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes rise-up-out {
  0% {
    opacity: 1;
    transform: translateY(0%);
  }
  to {
    opacity: 1;
    transform: translateY(-120%);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes overlay-on {
  0% {
    opacity: 0;
  }
  to {
    opacity: 0.6;
  }
}
@keyframes overlay-off {
  0% {
    opacity: 0.6;
  }
  to {
    opacity: 0;
  }
}
/**-----------------------------------------------------------------------------**/
/** init **/
/**-----------------------------------------------------------------------------**/
*,
*:before,
*:after {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  scroll-behavior: auto !important;
  font-size: 62.5% !important;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
@media screen and (min-width: 768px) {
  .scroll ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  .scroll ::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
  }
  .scroll ::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 5px;
  }
}
body {
  margin: 0 auto;
  padding: 0;
  line-height: 1.7 !important;
  letter-spacing: 0.05rem;
  font-size: 1.4rem;
  font-family: 'Lato', 'Noto Sans JP', 'sans-serif';
  color: #333333;
  background: #ffffff;
  word-break: break-word;
  overflow-wrap: break-word;
  text-rendering: optimizeSpeed;
}
a,
a:hover,
a:active {
  color: inherit;
  background-color: transparent;
  outline: 0;
}
a.underline {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: top;
  image-rendering: -webkit-optimize-contrast;
}
p,
button {
  margin: 0;
  padding: 0;
}
input,
textarea {
  outline: 0;
  font-size: 1.6rem !important;
}
textarea::placeholder {
  font-size: 1.4rem;
}
select {
  outline: 0;
  font-size: 1.4rem !important;
  color: var(--my-text-main);
}
label {
  display: inline;
}
svg:not(:root) {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.5;
}
#mainMenu h1 {
  display: flex;
  width: 100%;
}
.list-image-title h1 {
  line-height: 1.7;
}
.sr-only-visual {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
hr {
  display: block;
  margin: 0;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: #d3d3d3 1px solid;
}

header,
nav,
article,
footer {
  clear: both;
}
dl,
ol,
ul {
  margin-bottom: 0;
}
.lh-10 {
  line-height: 1em;
}
.lh-11 {
  line-height: 1.1em;
}
.lh-12 {
  line-height: 1.2em;
}
.lh-13 {
  line-height: 1.3em;
}
.lh-14 {
  line-height: 1.4em;
}
.lh-15 {
  line-height: 1.5em;
}
.lh-16 {
  line-height: 1.6em;
}
.lh-18 {
  line-height: 1.8em;
}
.lh-20 {
  line-height: 2em;
}
.lh-24 {
  line-height: 2.4em;
}
.lh-30 {
  line-height: 3em;
}
.lh-40 {
  line-height: 4em;
}
header ul,
footer ul {
  list-style: none;
}

.no-scroll {
  overflow: hidden;
}
[data-scrollable] {
  overflow: auto;
  /*-webkit-overflow-scrolling: touch;*/
}
.text-feature {
  color: var(--my-text-feature);
}

.page-width,
.narrow-width,
.tight-width {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .tight-width {
    max-width: 830px;
  }
}
@media screen and (min-width: 992px) {
  .narrow-width {
    max-width: 1060px;
  }
}
@media screen and (min-width: 1200px) {
  .page-width {
    max-width: 1240px;
  }
}

/* button */
.button {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  line-height: normal;
  min-width: 200px;
  border: 1px solid transparent;
  border-radius: 0;
  outline: 0;
  text-transform: uppercase;
  font-size: 1.4rem;
  text-align: center;
  text-decoration: none;
  background-color: transparent;
  transition:
    color 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86),
    border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  -webkit-tap-highlight-color: initial;
}
.button:hover {
  text-decoration: none;
  opacity: 1;
}
.button::before {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: left center;
  z-index: -1;
}
.button:not([disabled])::before {
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.button:not([disabled]):hover::before {
  transform-origin: right center;
  transform: scaleX(0);
}
.button-primary {
  color: var(--my-text-main-rev);
  border-color: var(--my-button-conversion);
}
.button-primary::before {
  background-color: var(--my-button-conversion);
}
.button-primary:not([disabled]):hover {
  color: var(--my-button-conversion);
  background-color: transparent;
}
.button-secondary {
  color: #555555;
  border-color: var(--my-button-conversion-rev);
}
.button-secondary::before {
  background-color: var(--my-button-conversion-rev);
}
.button-secondary:not([disabled]):hover {
  color: var(--my-text-main-rev);
  background-color: transparent;
}
.button-tertiary {
  color: var(--my-text-compare);
  border-color: var(--my-button-conversion-sub);
}
.button-tertiary::before {
  background-color: var(--my-button-conversion-sub);
}
.button-tertiary:not([disabled]):hover {
  color: var(--my-text-compare);
  background-color: transparent;
}
.button-review {
  color: var(--my-button-conversion);
  border-color: var(--my-button-conversion);
  padding: 7px 28px;
  width: 350px;
}
.button-review::before {
  background-color: var(--my-text-main-rev);
}
.button-review:not([disabled]):hover {
  color: var(--my-button-conversion);
  background-color: var(--my-button-conversion-sub);
}
.button-white {
  color: var(--my-text-main);
  background-color: var(--my-text-main);
  border-color: var(--my-text-main);
}
.button-white::before {
  background-color: var(--my-text-main-rev);
}
.button-white:not([disabled]):hover {
  color: var(--my-text-main-rev) !important;
  background-color: var(--my-text-main);
}
.button-black {
  color: var(--my-text-main-rev);
  background-color: transparent;
  border-color: var(--my-text-main);
}
.button-black::before {
  background-color: var(--my-text-main);
}
.button-black:not([disabled]):hover {
  color: var(--my-text-main) !important;
  background-color: transparent;
}
.button[disabled] {
  cursor: not-allowed;
}
[class*='button-'].disabled {
  pointer-events: none;
  cursor: not-allowed;
  border-color: var(--my-button-disabled);
  background-color: var(--my-button-disabled);
  opacity: 0.6;
}
[class*='button-'].disabled::before {
  background-color: var(--my-button-disabled);
}
.button-suggest {
  padding: 8px 10px;
  color: var(--my-text-main-rev);
  background: var(--my-button-conversion);
  border-radius: 5px;
}
.button-suggest:hover,
.button-suggest-tight:hover {
  color: var(--my-button-conversion);
  background: var(--my-button-conversion-rev);
}
.button-suggest-tight {
  padding: 2px 10px;
  color: var(--my-text-main-rev);
  background: var(--my-button-conversion);
  border-radius: 5px;
}
.button-suggest-conversion {
  padding: 4px 10px;
  color: var(--my-button-conversion);
  background: var(--my-text-main-rev);
  border: var(--my-button-conversion) 1px solid;
}
.button-suggest-conversion:hover {
  color: var(--my-button-conversion-rev);
  background: var(--my-button-conversion);
}

@media screen and (min-width: 768px) {
  .button-md-primary {
    color: var(--my-text-main-rev);
    border-color: var(--my-button-conversion);
  }
  .button-md-primary::before {
    background-color: var(--my-button-conversion);
  }
  .button-md-primary:not([disabled]):hover {
    color: var(--my-button-conversion);
    background-color: transparent;
  }
  .button-md-secondary {
    color: #555555;
    border-color: var(--my-button-conversion-rev);
  }
  .button-md-secondary::before {
    background-color: var(--my-button-conversion-rev);
  }
  .button-md-secondary:not([disabled]):hover {
    color: var(--my-text-main-rev);
    background-color: transparent;
  }
}
@media screen and (min-width: 992px) {
  .button-lg-primary {
    color: var(--my-text-main-rev);
    border-color: var(--my-button-conversion);
  }
  .button-lg-primary::before {
    background-color: var(--my-button-conversion);
  }
  .button-lg-primary:not([disabled]):hover {
    color: var(--my-button-conversion);
    background-color: transparent;
  }
  .button-lg-secondary {
    color: #555555;
    border-color: var(--my-button-conversion-rev);
  }
  .button-lg-secondary::before {
    background-color: var(--my-button-conversion-rev);
  }
  .button-lg-secondary:not([disabled]):hover {
    color: var(--my-text-main-rev);
    background-color: transparent;
  }
}

/* pagination */
.pagenum {
  display: flex;
  justify-content: center;
  gap: 25px;
}
.pagenum img {
  display: none;
}
.pagenum a.on {
  color: var(--my-text-feature);
  text-decoration: none;
}
.pagenum a.left,
.pagenum a.right {
  position: relative;
  display: inline-block;
  color: var(--my-text-main-rev);
  vertical-align: middle;
  text-decoration: none;
}
.pagenum a.left {
  padding-right: 30px;
}
.pagenum a.right {
  padding-left: 30px;
}
.pagenum a.left::before,
.pagenum a.left::after,
.pagenum a.right::before,
.pagenum a.right::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  vertical-align: middle;
}
.pagenum a.left::before,
.pagenum a.right::before {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--my-text-feature);
}
.pagenum a.left::after,
.pagenum a.right::after {
  width: 8px;
  height: 8px;
  border-top: var(--my-text-main-rev) 2px solid;
  border-right: var(--my-text-main-rev) 2px solid;
}
.pagenum a.left::after {
  left: 12px;
  transform: rotate(225deg);
}
.pagenum a.right::after {
  left: 10px;
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .pagenum a.left {
    padding-right: 45px;
  }
  .pagenum a.right {
    padding-left: 45px;
  }
  .pagenum a.left::before,
  .pagenum a.right::before {
    width: 45px;
    height: 45px;
  }
  .pagenum a.left::after {
    left: 20px;
    width: 10px;
    height: 10px;
  }
  .pagenum a.right::after {
    left: 16px;
    width: 10px;
    height: 10px;
  }
}

/* effect */
a {
  transition: 0.25s ease-in-out;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
header a:hover,
footer a:hover,
.carousel a:hover,
.no-hover:hover {
  opacity: 1;
}
body.nStyle #wrapper a:not(.button):not(.no-underline),
body.nStyle .modaal-wrapper a:not(.button):not(.no-underline) {
  display: inline;
  padding-bottom: 2px;
  border-bottom: #e1e1e1 1px solid;
}
body.nStyle #wrapper a:not(.button):not(.no-underline):hover,
body.nStyle .modaal-wrapper a:not(.button):not(.no-underline):hover {
  border-bottom: var(--my-text-main) 1px solid;
  opacity: 1;
}
body.nStyle #wrapper a:not(.button):not(.no-underline) > span,
body.nStyle .modaal-wrapper a:not(.button):not(.no-underline) > span {
  padding-bottom: 3px;
  background: linear-gradient(var(--my-text-main), var(--my-text-main)) 0 100%/0 1px no-repeat;
  transition: background-size 0.25s;
}
body.nStyle #wrapper a:not(.button):not(.no-underline):hover > span,
body.nStyle .modaal-wrapper a:not(.button):not(.no-underline):hover > span {
  background-size: 100% 1px !important;
}
body.nStyle #wrapper a.color-primary {
  border-bottom: var(--my-button-conversion-sub) 1px solid !important;
}
body.nStyle #wrapper a.color-primary:hover {
  color: var(--my-button-conversion);
}
body.nStyle #wrapper a.color-primary > span {
  background: linear-gradient(var(--my-button-conversion), var(--my-button-conversion)) 0 100%/0 1px no-repeat !important;
}
.ef_underline::after {
  position: relative;
  display: block;
  content: '';
  bottom: 1px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--my-text-main);
  transition: width 0.3s ease-in-out;
}
.ef_underline.active::after,
.is-selected .ef_underline::after {
  width: 100%;
}
.text-shadow {
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25) !important;
}

/* modal */
.modal-inner {
  display: none;
}
.modaal-wrapper .modaal-close {
  background-color: #d9d9d9;
}
.modaal-close {
  position: absolute;
  right: 0;
  top: -50px;
  width: 40px;
  height: 40px;
}
.modaal-close:after,
.modaal-close:before {
  width: 2px;
  top: 9px;
  left: 19px;
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}
.modaal-content-container {
  padding: 0;
}
#check-inner01 {
  padding: 30px;
}

/* other */
.bold {
  font-weight: 700;
}
.error-msg {
  display: block;
  color: #de2525;
  font-size: unset !important;
}
.newwindow:after {
  content: url(./images/target.png);
  position: relative;
  bottom: -0.1em;
  margin-left: 0.3em;
}
input.error,
select.error,
textarea.error {
  color: #de2525;
  background: #fae3e0;
}
.color-main {
  color: var(--my-text-main);
}
.color-primary {
  color: var(--my-button-conversion);
}
.box-gray {
  padding: 15px;
  background: #eeeeee;
}
.border-gray {
  padding: 15px;
  border: #cccccc 1px solid;
}
.border-bottom-gray {
  border-bottom: #cccccc 1px solid;
}
.box-gray-radius {
  padding: 0 10px;
  border: #cccccc 1px solid;
  border-radius: 5px;
}
.box-gray-radius > div {
  padding: 10px 0;
}
.box-primary {
  padding: 20px;
  color: var(--my-text-main-rev);
  background: var(--my-button-conversion);
}
.box-secondary {
  padding: 20px;
  background: var(--my-button-conversion-rev);
}
@media screen and (min-width: 768px) {
  .box-primary,
  .box-secondary {
    padding: 30px;
  }
}
.turnstile_info {
  display: none;
}
.turnstile_info > td {
  padding-bottom: 0 !important;
}
.turnstile_info > td > div {
  min-height: 60px;
}

/**-----------------------------------------------------------------------------**/
/** header **/
/**-----------------------------------------------------------------------------**/
body.top header {
  margin-bottom: calc(-1 * var(--my-header-height));
}
body.no-header-transition header {
  transition: none !important;
}
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--my-header-height);
  background: var(--my-bg-main);
  z-index: 10;
  transition:
    background 0.25s,
    top 0.3s ease;
}
header a {
  text-decoration: none;
}
header.header-transparent {
  background: transparent;
}
body.header-hide header {
  top: calc(-1 * calc(var(--my-header-height) + 1px));
}
header.header-relative {
  position: relative;
}
body.fixed header::after {
  animation: overlay-on 0.25s forwards;
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e6e6e6;
  opacity: 0;
  z-index: 11;
}

/* menu */
#mainMenu {
  height: var(--my-header-height);
}
#mainMenu .container-fluid {
  position: relative;
}
#mainMenu .navbar-brand {
  margin: 0 auto;
  z-index: 1;
}
#mainMenu .navbar-brand img,
#footMenu .foot-logo img {
  width: 165px;
}
#navFunc {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px 0 0;
  text-align: right;
}
#navFunc a {
  font-size: 1.2rem;
  color: var(--my-text-main-rev);
}
#navFunc .menu-cart-icon {
  display: block;
  visibility: hidden;
  position: absolute;
  top: calc(50% - 3px);
  right: -5px;
  width: 15px;
  height: 15px;
  background-color: #ff4f33;
  border: 2px solid;
  border-color: #fff;
  border-radius: 50%;
}
#hMenu {
  position: absolute;
  margin: 0;
  padding: 0;
  top: 2px;
  left: 13px;
  width: 30px;
  height: 30px;
  z-index: 5;
  background: url(../images/nav-open.svg) no-repeat center;
}
#hMenu2,
#hMenu3 {
  margin-left: 15px;
  margin-right: auto;
  min-height: var(--my-header-height);
  width: 30px;
  background: url(../images/nav-close.svg) no-repeat left center;
}
#navbarMenu,
#extractMenu {
  max-width: 95%;
  width: 350px;
  left: 0;
  color: var(--my-text-main-rev);
  background-color: var(--my-bg-main);
}
#navbarMenu ul.navbar-nav {
  padding: 0 20px;
}
#navbarMenu a,
#extractMenu a {
  display: block;
  padding: 10px 0;
  color: var(--my-text-main-rev);
}
#extractMenu .navbar-nav:not(:first-of-type) {
  border-top: var(--my-menu-border) 1px solid;
}
#navbarMenu .navbar-nav > li > a,
#extractMenu .navbar-nav > li > a {
  padding: 15px 0;
}
#navbarMenu .sub-menu .menu-rev,
#extractMenu .sub-menu .menu-rev {
  display: none;
}
.menu-wrapper,
.extract-wrapper {
  flex-grow: 1;
  width: 100%;
  height: auto;
  overflow-y: auto;
}
.menu-bottom {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  border-top: var(--my-menu-border) 1px solid;
}
.dropdown-menu {
  background: transparent;
}
ul.navbar-nav li.has-children > ul {
  display: none;
}
ul.navbar-nav li.has-children > a {
  position: relative;
}
ul.navbar-nav li.has-children > a > span {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: 8px;
  right: -5px;
}
#navbarMenu ul.navbar-nav li.has-children.l-2 > ul {
  display: block;
}
ul.navbar-nav > li.has-children > a > span {
  top: 12px;
}
ul.navbar-nav li.has-children > a > span::before,
ul.navbar-nav li.has-children > a > span::after {
  position: absolute;
  display: block;
  content: '';
  background-color: var(--my-text-main-rev);
  width: 15px;
  height: 1px;
  top: 13px;
  right: 7px;
  border: none;
}
ul.navbar-nav ul.menu-large li.has-children > a > span::before,
ul.navbar-nav ul.menu-large li.has-children > a > span::after {
  content: none;
}
ul.navbar-nav ul.menu-large li.has-children.menu-rev > a > span {
  display: none;
}
ul.navbar-nav > li.has-children > a > span::before,
ul.navbar-nav > li.has-children > a > span::after {
  top: 14px;
}
ul.navbar-nav li.has-children > a > span::before {
  transform: translate(-8px, 0) rotate(90deg);
  right: -1px;
}
ul.navbar-nav li.has-children.open > a > span::before {
  transform: translate(-8px, 0) rotate(0deg);
}
ul.navbar-nav li.has-children .has-sub {
  cursor: pointer;
}
ul.navbar-nav li.sep {
  border-top: var(--my-menu-border) 1px solid;
}
ul.navbar-nav ul.menu-large li:not(.menu-rev) ul {
  padding-left: 0;
}
#extractMenu ul.navbar-nav li.has-children > a > span::before {
  content: none;
}
#extractMenu ul.navbar-nav li.has-children > a > span::after {
  background: none;
  border-top: var(--my-text-main-rev) 1px solid;
  border-right: var(--my-text-main-rev) 1px solid;
  width: 10px;
  height: 10px;
  top: 8px;
  right: 9px;
  transform: rotate(135deg);
}
#extractMenu ul.navbar-nav li.has-children.open > a > span::after {
  top: 13px;
  transform: rotate(-45deg);
}

/* search */
#menu-search {
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  background: var(--my-bg-main);
  border-top: var(--my-menu-border) 1px solid;
  z-index: 40;
}
#menu-search > div {
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}
#menu-search .menu-search-cmd {
  text-align: right;
  padding-bottom: 15px;
}
#menu-search form {
  position: relative;
  margin: 0 auto;
  max-width: 750px;
}
#menu-search input[type='text'] {
  width: 100%;
  max-width: 750px;
  padding: 20px;
  background-color: var(--my-button-conversion-rev);
  border: var(--my-button-conversion-rev) 1px solid;
  border-radius: 5px;
}
#menu-search input[type='text']::placeholder {
  color: var(--my-text-feature);
}
#menu-search .loading {
  display: none;
  position: absolute;
  top: 20px;
  right: 65px;
}
#menu-search .loading img {
  width: 20px;
}
#menu-search button {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
}
#menu-search h6 {
  color: var(--my-text-main-rev);
}
#menu-search .suggest {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 750px;
}
.keyword-title {
  color: #ffffff;
  margin-bottom: 0;
  text-align: left;
}
.keyword-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.keyword-item {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: opacity 0.2s ease;
  text-align: left;
}
.keyword-item:hover {
  color: #ffffff;
  opacity: 0.7;
  text-decoration: none;
}
.keyword-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.suggestions-panel {
  display: none;
  position: absolute;
  top: 110px;
  left: 20px;
  right: 20px;
  background-color: #fbf7f3;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 8px 0;
  max-height: 400px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 100;
}
.suggestions-panel.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.suggestion-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.2s ease;
}
.suggestion-item:last-child {
  border-bottom: none;
}
.suggestion-item:hover {
  background-color: #f5f5f5;
}
.suggestion-item.selected {
  background-color: #e8f5e9;
  border-left: 3px solid #4a9b8e;
  padding-left: 13px;
}
.suggestion-name {
  padding-right: 5px;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}
.badge-category {
  background-color: #4a9b8e;
}
.badge-color {
  background-color: #e67e22;
}
.badge-product {
  background-color: #3498db;
}
.suggestions-panel::-webkit-scrollbar {
  width: 8px;
}
.suggestions-panel::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.suggestions-panel::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.suggestions-panel::-webkit-scrollbar-thumb:hover {
  background: #555;
}
#header-restore {
  color: var(--my-text-feature);
  background-color: var(--my-button-conversion-sub);
  height: 50px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-weight: bold;
}
#header-restore [class^='n-restore-'] {
  background: none;
  margin: 0 0 0 5px;
  padding: 0 4px;
  border: #fff 1px solid;
}
#header-point {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  background: linear-gradient(105deg, var(--my-text-feature-rev) 0%, var(--my-text-feature-rev) 70%, var(--my-bg-main) 70.1%, var(--my-bg-main) 100%);
}
#header-point .point-l {
  width: 70%;
  padding-left: 10px;
}
#header-point .point-r {
  width: 30%;
  color: var(--my-text-main-rev);
  text-align: center;
}
/* shopping */
#shopping {
  min-height: calc(var(--vh, 1vh) * 100 - 50px);
}
.shopping-header {
  height: 75px;
}

/**-----------------------------------------------------------------------------**/
/** header breakpoint **/
/**-----------------------------------------------------------------------------**/
@media screen and (min-width: 768px) {
  body.top header {
    margin-bottom: calc(-1 * var(--my-header-height));
  }
  header {
    height: var(--my-header-height);
  }
  /* menu */
  #mainMenu {
    display: block;
    padding: 25px 0 0;
    height: var(--my-header-height);
    border-bottom: var(--my-menu-border) 1px solid;
  }
  body.top #mainMenu {
    border-bottom: rgb(226, 242, 227, 0.25) 1px solid;
  }
  #mainMenu .container-fluid {
    flex-direction: column;
    height: 100%;
    padding: 0;
  }
  #navFunc {
    padding: 5px 20px 0 0;
  }
  #navFunc .account-button {
    padding-left: 20px;
    background: url(../images/ic-mypage.svg) no-repeat left center;
    background-size: 14px;
  }
  #navFunc .login-button {
    padding-left: 20px;
    background: url(../images/ic-login.svg) no-repeat left center;
    background-size: 14px;
  }
  #navFunc .search-button {
    padding-left: 20px;
    background: url(../images/ic-search.svg) no-repeat left center;
    background-size: 14px;
  }
  #navFunc .cart-button {
    padding-left: 20px;
    background: url(../images/ic-cart.svg) no-repeat left center;
    background-size: 14px;
  }
  #hMenu,
  #hMenu2,
  #hMenu3 {
    display: none;
  }
  #navbarMenu {
    visibility: visible !important;
    position: relative;
    display: block !important;
    left: 0;
    min-width: 100%;
    overflow: initial;
    transition: none;
    transform: translateX(0);
    background: transparent;
    border-left: none;
    z-index: 30;
  }
  #navbarMenu a {
    padding: 0 0 10px;
  }
  ul.navbar-nav li.has-children {
    position: static;
  }
  ul.navbar-nav li.has-children ul:not(.sub-menu) {
    display: block;
  }
  ul.navbar-nav li.sep {
    border-top: none;
  }
  #navbarMenu ul.navbar-nav li.has-children > a > span {
    display: none;
  }
  #navbarMenu ul.navbar-nav {
    margin: 0 auto;
    padding: 5px 0 0 0;
  }
  #navbarMenu ul.navbar-nav > li > a {
    margin-left: 20px;
    margin-right: 20px;
  }
  #navbarMenu ul.navbar-nav > li:hover .sub-menu {
    visibility: visible;
  }
  #navbarMenu ul.navbar-nav > li:hover .sub-menu > li {
    opacity: 1;
    transition-delay: 0.1s;
  }
  #navbarMenu ul.navbar-nav > li > a {
    position: relative;
  }
  #navbarMenu ul.navbar-nav > li > a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: var(--my-menu-border);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.25s;
  }
  #navbarMenu ul.navbar-nav > li > a:hover::after,
  #navbarMenu ul.navbar-nav > li:hover > a::after {
    transform: scale(1, 1);
  }
  #navbarMenu .menu-wrapper {
    display: flex;
    align-items: flex-end;
    height: 100%;
    overflow: initial;
  }
  #navbarMenu .sub-menu {
    visibility: hidden;
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    min-width: 100%;
    min-height: 276px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    padding: 21px 20px 20px;
    border-top: transparent 1px solid;
    background: var(--my-bg-main);
    background-clip: padding-box;
  }
  #navbarMenu .sub-menu > li {
    width: 230px;
    opacity: 0;
    transition: opacity 0.25s;
  }
  #navbarMenu .sub-menu > li > a {
    margin-bottom: 10px;
    color: var(--my-text-feature-rev);
  }
  #navbarMenu .sub-menu > li > a:hover {
    opacity: 1;
  }
  #navbarMenu .sub-menu > li.menu-rev > a {
    margin-bottom: 0;
  }
  #navbarMenu .sub-menu > li > ul {
    padding-left: 0;
  }
  #navbarMenu .sub-menu .menu-rev {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  #navbarMenu .sub-menu .menu-rev > a {
    order: 2;
  }
  #navbarMenu .sub-menu .menu-rev > ul {
    order: 1;
  }
  .keyword-title,
  .keyword-grid {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
  .keyword-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .keyword-item {
    padding: 1.5rem 1rem;
  }
  .keyword-item:nth-child(4),
  .keyword-item:nth-child(5),
  .keyword-item:nth-child(6) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .suggestions-panel {
    max-width: 750px;
    width: 750px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-8px);
    min-width: 400px;
  }
  .suggestions-panel.show {
    transform: translateX(-50%) translateY(0);
  }
  #header-point {
    height: 35px;
    background: linear-gradient(135deg, var(--my-text-feature-rev) 0%, var(--my-text-feature-rev) 75%, var(--my-bg-main) 75.1%, var(--my-bg-main) 100%);
  }
  #header-point .point-l {
    width: 75%;
    max-width: 900px;
  }
  #header-point .point-r {
    width: 25%;
    max-width: 300px;
    padding-right: 20px;
    text-align: right;
  }
}
@media screen and (min-width: 1400px) {
  /* menu */
  #header-point {
    background: linear-gradient(135deg, var(--my-text-feature-rev) 0%, var(--my-text-feature-rev) 65%, var(--my-bg-main) 65.1%, var(--my-bg-main) 100%);
  }
}

/**-----------------------------------------------------------------------------**/
/** footer **/
/**-----------------------------------------------------------------------------**/
footer {
  overflow: auto;
  padding-top: 50px;
  font-size: 1.2rem;
}
#footInfo {
  display: flex;
  align-items: center;
  height: 342px;
  padding: 40px 25px;
  background: url(../banner/footer-background-sp.webp) no-repeat center center;
  background-size: cover;
}
#footInfo > div > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 450px;
  height: 100%;
  margin: 0 auto;
  padding: 20px;
  background: rgb(251, 247, 243, 0.9);
}
#footGuide {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 50px 20px;
  color: var(--my-text-main-rev);
  background: var(--my-bg-light);
}
#footMenu {
  padding: 40px 20px;
  color: var(--my-text-main-rev);
  background: var(--my-bg-main);
}
#footMenu > div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 30px 10px;
}
#footMenu .foot-logo {
  width: 100%;
}
#footMenu .foot-info,
#footMenu .foot-service,
#footMenu .foot-about,
#footMenu .foot-sns {
  width: calc(50% - 5px);
}
#footMenu .foot-title {
  color: var(--my-text-feature-rev);
  padding-bottom: 15px;
}
#footMenu ul {
  padding-left: 0;
}
#footMenu ul li {
  padding-bottom: 10px;
}
#footMenu .foot-sns ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#footMenu .foot-sns ul li {
  padding-bottom: 0;
}
footer .copyright {
  padding: 0 30px 30px;
  color: var(--my-text-main-rev);
  background: var(--my-bg-main);
}
#foot-error {
  position: fixed;
  top: 0;
  z-index: 10000;
  color: #ffffff;
  background-color: #d93a49;
  width: 100%;
  height: 56px;
  line-height: 56px;
  font-weight: bold;
}
#foot-notice {
  position: fixed;
  top: 0;
  z-index: 100;
  color: #ffffff;
  background-color: #29767a;
  width: 100%;
  height: 56px;
  line-height: 56px;
  font-weight: bold;
}

/**-----------------------------------------------------------------------------**/
/** footer breakpoint **/
/**-----------------------------------------------------------------------------**/
@media screen and (min-width: 576px) {
  #footGuide {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  #footGuide > div {
    width: calc(50% - 20px);
  }
  #footMenu {
    padding: 40px;
  }
}
@media screen and (min-width: 768px) {
  footer {
    padding-top: 70px;
  }
  #footInfo {
    height: 425px;
    background: url(../banner/footer-background.webp) no-repeat center center;
    background-size: cover;
  }
  #footInfo > div > div {
    width: 520px;
    max-width: 520px;
    margin-right: 0;
    padding: 30px 40px;
  }
  #footGuide {
    flex-wrap: nowrap;
  }
  #footGuide > div {
    width: auto;
  }
  #footMenu > div {
    gap: 40px;
  }
  #footMenu .foot-info,
  #footMenu .foot-service,
  #footMenu .foot-about,
  #footMenu .foot-sns {
    width: calc(25% - 30px);
  }
}
@media screen and (min-width: 992px) {
  #footGuide {
    gap: 80px;
  }
  #footMenu .foot-logo,
  #footMenu .foot-info,
  #footMenu .foot-service,
  #footMenu .foot-about,
  #footMenu .foot-sns {
    width: calc(20% - 32px);
  }
}

/**-----------------------------------------------------------------------------**/
/** top **/
/**-----------------------------------------------------------------------------**/

/* slider */
#top-slider {
  height: calc(var(--vh, 1vh) * 100 - 50px);
  overflow: hidden;
  background: #000;
}
#top-slider .flickity-viewport {
  background: #000;
}
#top-slider.pause .flickity-viewport {
  opacity: 0;
}
#top-slider .main-carousel,
#top-slider .carousel-cell {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100 - 50px);
  min-height: 400px;
}
#top-slider .carousel-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#top-slider .carousel-image:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}
#top-slider:not(.pause) .carousel-cell .carousel-image {
  animation: slide-out 0.6s forwards;
}
#top-slider:not(.pause) .carousel-cell.is-selected .carousel-image {
  animation: slide-in 0.6s forwards;
}
#top-slider .carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top-slider a {
  transition: none;
}
#top-slider .flickity-page-dots {
  width: auto;
  left: auto;
  right: 20px;
  bottom: 20px;
}
#top-slider .flickity-page-dots .dot {
  margin: 0 7px;
  border: #ffffff 1.5px solid;
  background: transparent;
  opacity: 0.75;
}
#top-slider .flickity-page-dots .dot.is-selected {
  background: #ffffff;
  opacity: 1;
}
/* catch */
#top-slider .catch-wrap {
  position: relative;
  height: 100%;
  color: var(--my-text-main-rev);
}
#top-slider .catch-wrap .page-width {
  position: relative;
  height: 100%;
}
#top-slider .catch-wrap .page-width > div {
  width: 100%;
}
#top-slider .catch-wrap .catch-bottom-left {
  position: absolute;
  left: 20px;
  bottom: 55px;
  padding-right: 20px;
}
#top-slider .catch-wrap .catch-bottom-center {
  position: absolute;
  left: 50%;
  bottom: 55px;
  transform: translate(-50%, 0);
  padding: 0 20px;
  text-align: center;
}
#top-slider .catch-wrap .catch-bottom-right {
  position: absolute;
  right: 20px;
  bottom: 55px;
  padding-left: 20px;
  text-align: right;
}
#top-slider .catch-wrap .catch-center-left {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  padding-right: 20px;
}
#top-slider .catch-wrap .catch-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
  text-align: center;
}
#top-slider .catch-wrap .catch-center-right {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  padding-left: 20px;
  text-align: right;
}
#top-slider .catch-wrap .catch-lefttop {
  position: absolute;
  top: 55px;
  left: 20px;
  padding-right: 20px;
}
.carousel .carousel-cell .animation-cropper {
  overflow: hidden;
  opacity: 0;
}
.carousel .carousel-cell.is-selected .animation-cropper {
  opacity: 1;
}
.carousel:not(.pause) .carousel-cell .animation-contents {
  opacity: 0;
  transform: translateY(15px);
  transition: none;
}
.carousel .carousel-cell .fade-contents {
  opacity: 0;
}
.carousel:not(.pause) .carousel-cell.is-selected .animation-contents {
  transform: translateY(0);
}
#top-slider.carousel .carousel-cell .animation-cropper {
  display: inline-flex;
}
#top-slider:not(.pause) .carousel-cell.is-selected .catch-title .animation-contents {
  animation: 0.8s cubic-bezier(0.26, 0.54, 0.32, 1) 0.3s forwards;
  animation-name: rise-up;
}
#top-slider:not(.pause) .carousel-cell.is-selected .catch-sub .animation-contents {
  animation: 1s cubic-bezier(0.26, 0.54, 0.32, 1) 0.7s forwards;
  animation-name: rise-up;
}
#top-slider:not(.pause) .carousel-cell.is-selected .fade-contents {
  animation: fade-in 1.6s ease 1.2s forwards;
}
/* feature items */
#feature-items .nav-pills {
  justify-content: center;
  gap: 10px 50px;
}
#feature-items .nav-pills .nav-link {
  padding: 0;
  color: var(--my-text-main);
  background: transparent;
  border-radius: 0;
  outline: 0;
}
#feature-items .tab-pane {
  animation: modal-close 0.5s forwards;
}
#feature-items .tab-pane.show {
  animation: modal-open 0.5s forwards;
}
#feature-items .tab-pane-item-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  margin: 0 20px;
  padding-bottom: 10px;
}
#feature-items .tab-pane-item {
  width: 200px;
  flex: 0 0 auto;
  min-height: 290px;
}
#feature-items .fade {
  transition: opacity 0.3s linear;
}
#top-feature-items .tab-pane-item-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  margin: 0 20px;
  padding-bottom: 10px;
}
#top-feature-items .tab-pane-item {
  width: 180px;
  flex: 0 0 auto;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
#top-feature-items .tab-pane-item > a {
  flex-grow: 1;
}
#top-feature-items h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
#top-feature-items .button {
  min-width: 180px;
}
/* feature category */
#feature-category:after {
  content: 'flickity';
  display: none;
}
#feature-category .carousel-cell {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
#feature-category .carousel-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: scale(1);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#feature-category .carousel-image:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
}
#feature-category .carousel-cell:hover .carousel-image {
  transform: scale(1.2);
}
#feature-category .carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#feature-category .flickity-page-dots {
  width: auto;
  left: auto;
  right: 20px;
  bottom: 20px;
}
#feature-category .flickity-page-dots .dot {
  margin: 0 7px;
  border: #ffffff 1.5px solid;
  background: transparent;
  opacity: 0.75;
}
#feature-category .flickity-page-dots .dot.is-selected {
  background: #ffffff;
  opacity: 1;
}
#feature-category .catch-wrap {
  position: relative;
  height: 100%;
  color: var(--my-text-main-rev);
}
#feature-category .catch-wrap .catch-left {
  position: absolute;
  bottom: 55px;
  left: 20px;
  padding-right: 20px;
}
/* sales */
#top-sales .top-sales-wrapper {
  display: flex;
  flex-direction: column;
}
#top-sales .top-sales-image {
  height: 456px;
}
#top-sales .top-sales-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top-sales .carousel {
  margin-bottom: 40px;
}
#top-sales .carousel-cell {
  width: 100%;
  height: auto;
}
#top-sales .carousel-inner {
  margin: 0 auto;
  width: 250px;
}
#top-sales .flickity-page-dots {
  bottom: -30px;
}
#top-sales .flickity-page-dots .dot {
  margin: 0 7px;
  border: #695340 1.5px solid;
  background: transparent;
  opacity: 0.75;
}
#top-sales .flickity-page-dots .dot.is-selected {
  background: #695340;
  opacity: 1;
}
/* seminar & info */
#top-seminar .carousel-cell,
#top-info .carousel-cell {
  position: relative;
  width: 100%;
}
#top-seminar .carousel-cell .carousel-image,
#top-info .carousel-cell .carousel-image {
  animation: slide-out 0.6s forwards;
}
#top-seminar .carousel-cell.is-selected .carousel-image,
#top-info .carousel-cell.is-selected .carousel-image {
  animation: slide-in 0.6s forwards;
}
#top-seminar .carousel-image,
#top-info .carousel-image {
  height: 580px;
}
#top-seminar .carousel-image img,
#top-info .carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top-seminar .catch-wrap,
#top-info .catch-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: var(--my-text-main-rev);
}
#top-seminar .top-seminar-nav-item,
#top-info .top-info-nav-item {
  position: relative !important;
  transform: translateX(0) !important;
}
#top-seminar .top-seminar-nav .flickity-viewport,
#top-info .top-info-nav .flickity-viewport {
  overflow: unset;
  height: auto !important;
}
#top-seminar .top-seminar-nav .flickity-slider,
#top-info .top-info-nav .flickity-slider {
  position: relative;
  transform: translateX(0) !important;
}
#top-seminar .top-seminar-nav .ef_underline,
#top-info .top-info-nav .ef_underline {
  display: inline-block;
  cursor: pointer;
}
#top-seminar .animation-contents,
#top-info .animation-contents {
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
}
#top-seminar .carousel-cell.is-selected .catch-title .animation-contents,
#top-info .carousel-cell.is-selected .catch-title .animation-contents {
  animation: 0.2s cubic-bezier(0.26, 0.54, 0.32, 1) 0.1s forwards;
  animation-name: rise-up;
}
#top-seminar .carousel-cell.is-selected .catch-sub .animation-contents,
#top-info .carousel-cell.is-selected .catch-sub .animation-contents {
  animation: 0.3s cubic-bezier(0.26, 0.54, 0.32, 1) 0.1s forwards;
  animation-name: rise-up;
}
#top-seminar .carousel-cell.is-selected .catch-desc .animation-contents,
#top-info .carousel-cell.is-selected .catch-desc .animation-contents {
  animation: 0.5s cubic-bezier(0.26, 0.54, 0.32, 1) 0.1s forwards;
  animation-name: rise-up;
}
#top-seminar .carousel-cell.is-selected .fade-contents,
#top-info .carousel-cell.is-selected .fade-contents {
  animation: fade-in 1s ease 0.5s forwards;
}
/* blog */
.top-blog .top-blog-inner {
  display: flex;
	flex-wrap: wrap;
	gap: 25px;
}
.top-blog .top-blog-item {
	width: calc((100% - 25px) / 2);
}
.top-blog .top-blog-item img {
  width: 100%;
  object-fit: cover;
}
.top-blog h4 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
#top-notice .top-notice-item:not(:first-child) {
  border-top: #d3d3d3 1px dashed;
}
/* instagram */
#top-insta .top-insta-inner {
  display: flex;
  flex-direction: row;
  gap: 25px;
  overflow-x: auto;
}
#top-insta .top-insta-item {
  position: relative;
  display: block;
  width: 126px;
  min-width: 126px;
}
#top-insta .top-insta-link::before {
  content: '';
  display: block;
  padding-top: 100%;
}
#top-insta .top-insta-link img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}

/**-----------------------------------------------------------------------------**/
/** top breakpoint **/
/**-----------------------------------------------------------------------------**/
@media screen and (min-width: 768px) {
  /* slider */
  #top-slider,
  #top-slider .main-carousel,
  #top-slider .carousel-cell {
    height: 726px;
  }
  #top-slider .catch-wrap .catch-left {
    left: 60px;
  }
  /* feature items */
  #feature-items .tab-pane-item {
    width: 25%;
    flex: auto;
    min-height: 352.5px;
  }
  #top-feature-items h4 {
    display: block;
  }
  #top-feature-items .tab-pane-item {
    width: 25%;
    flex: auto;
  }
  /* feature category */
  #feature-category {
    display: flex;
    flex-wrap: wrap;
  }
  #feature-category:after {
    content: '';
  }
  #feature-category .carousel-cell {
    width: calc(100% / 3);
    height: 600px;
  }
  #feature-category .carousel-cell:nth-child(n + 4) {
    width: calc(100% / 2);
  }
  /* sales */
  #top-sales .top-sales-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  #top-sales .top-sales-image {
    width: 60%;
    height: 550px;
  }
  #top-sales .carousel {
    width: 40%;
  }
  /* seminar & info */
  #top-seminar .carousel-cell,
  #top-info .carousel-cell {
    display: flex;
    gap: 0 60px;
  }
  #top-seminar .top-seminar-image {
    width: 50%;
    height: 515px;
  }
  #top-info .carousel-image {
    width: 50%;
    height: 515px;
    order: 2;
  }
  #top-seminar .catch-wrap {
    position: relative;
    width: 50%;
    height: auto;
    align-items: flex-end;
    padding: 0;
    color: var(--my-text-main);
  }
  #top-info .catch-wrap {
    position: relative;
    width: 50%;
    height: auto;
    align-items: center;
    padding: 0;
    color: var(--my-text-main);
    order: 1;
  }
  #top-seminar .animation-contents,
  #top-info .animation-contents {
    text-shadow: none;
  }
  #top-seminar .top-seminar-nav .top-seminar-nav-item,
  #top-info .top-info-nav .top-info-nav-item {
    display: inline-block;
    font-size: 1.5rem;
    transform: scale(1) !important;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  }
  #top-seminar .top-seminar-nav .top-seminar-nav-item.is-selected,
  #top-info .top-info-nav .top-info-nav-item.is-selected {
    transform: scale(1.2) !important;
  }
  /* blog */
	.top-blog .top-blog-inner {
		gap: 60px;
  }
	.top-blog .top-blog-item {
		width: calc((100% - 180px) / 4);
  }
  /* instagram */
  #top-insta .top-insta-inner {
    gap: 30px;
    overflow: unset;
  }
  #top-insta .top-insta-item {
    width: 20%;
    min-width: auto;
  }
}
@media screen and (min-width: 992px) {
  /* feature items */
  #feature-items .tab-pane-item-wrapper,
  #top-feature-items .tab-pane-item-wrapper {
    gap: 60px;
  }
}

/**-----------------------------------------------------------------------------**/
/** list **/
/**-----------------------------------------------------------------------------**/

#list .page-width {
  padding: 0 10px;
}

/* title */
#list .list-title {
  background: var(--my-button-conversion-sub);
  line-height: 1.4;
}
/* point */
#list .point,
#detail .point,
.detail-foot-add-cart-inner .point {
  color: #de2525;
  font-weight: bold;
}
/* search */
#list .list-search-zend > a {
  display: inline-block;
  min-height: 24px;
  padding-left: 30px;
  color: var(--my-text-feature);
  background: url(../images/ic-info.svg) no-repeat left top;
}
/* slider */
#list #category-slider {
  background: #f5f5f5;
}
#list .carousel-cell {
  width: 82.5%;
  padding: 0 10px;
  text-align: center;
}
#list .slider-thumbnail {
  display: none;
}
#list .slider-thumbnail:after {
  content: '';
  display: none;
}
#list .flickity-page-dots {
  bottom: -30px;
}
#list .flickity-page-dots .dot {
  margin: 0 7px;
  border: #695340 1.5px solid;
  background: transparent;
  opacity: 0.75;
}
#list .flickity-page-dots .dot.is-selected {
  background: #695340;
  opacity: 1;
}
/* image */
#list .list-image {
  position: relative;
}
#list .list-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
#list .list-image-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: var(--my-text-main-rev);
}
/* sub category */
#list .list-sub-category,
#excerpt-category .list-sub-category {
  line-height: 1.3;
}
#list .list-sub-category-inner {
  display: flex;
  gap: 20px;
  padding-bottom: 15px;
  overflow-x: auto;
}
#excerpt-category .list-sub-category-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px calc(100% - 87px * 2);
  padding-bottom: 15px;
}
@media screen and (min-width: 341px) {
  #excerpt-category .list-sub-category-inner {
    column-gap: calc((100% - 87px * 3) / 2);
  }
}
@media screen and (min-width: 448px) {
  #excerpt-category .list-sub-category-inner {
    column-gap: calc((100% - 87px * 4) / 3);
  }
}
@media screen and (min-width: 555px) {
  #excerpt-category .list-sub-category-inner {
    column-gap: calc((100% - 87px * 5) / 4);
  }
}
@media screen and (min-width: 662px) {
  #excerpt-category .list-sub-category-inner {
    column-gap: calc((100% - 87px * 6) / 5);
  }
}
@media screen and (min-width: 768px) {
  #excerpt-category .list-sub-category-inner {
    column-gap: calc((100% - 160px * 4) / 3);
  }
}
@media screen and (min-width: 920px) {
  #excerpt-category .list-sub-category-inner {
    column-gap: calc((100% - 160px * 5) / 4);
  }
}
@media screen and (min-width: 1100px) {
  #excerpt-category .list-sub-category-inner {
    column-gap: calc((100% - 160px * 6) / 5);
  }
}
#list .list-sub-category-item,
#excerpt-category .list-sub-category-item {
  width: 87px;
  min-width: 87px;
}
#list .list-sub-category-item-image,
#excerpt-category .list-sub-category-item-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 87px;
  height: 87px;
  background: var(--my-button-conversion-rev);
  border-radius: 50%;
  transition: transform 0.2s ease;
}
#list .list-sub-category-item-image:hover,
#excerpt-category .list-sub-category-item-image:hover {
  background: transparent;
  box-shadow: 0 3px 10px #0000001a;
  transform: translateY(-3px);
}
#list .list-sub-category-item img,
#excerpt-category .list-sub-category-item img {
  max-width: 54px;
  max-height: 54px;
}
/* free comment */
/* #list .list-free-comment .page-width > div {
  text-align: center;
} */
#list-free-feature:after {
  content: 'flickity';
  display: none;
}
#list-free-feature .carousel-cell {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#list-free-feature .flickity-prev-next-button {
  top: 75px;
  width: 25px;
  height: 25px;
}
#list-free-feature .flickity-prev-next-button.previous {
  left: -25px;
}
#list-free-feature .flickity-prev-next-button.next {
  right: -25px;
}
#list-free-feature .flickity-button {
  background: transparent;
}
#list-free-feature .flickity-button:focus {
  box-shadow: none;
}
#list-free-feature .flickity-page-dots {
  bottom: -30px;
}
#list-free-feature .flickity-page-dots .dot {
  margin: 0 7px;
  border: #695340 1.5px solid;
  background: transparent;
  opacity: 0.75;
}
#list-free-feature .flickity-page-dots .dot.is-selected {
  background: #695340;
  opacity: 1;
}
#list-free-feature .gradient {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 140px;
  background: linear-gradient(135deg, #e7d0be 0%, #d7a57e 100%);
}
#list .diagnosis {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  text-align: center;
}
#list .diagnosis img {
  width: 200px;
}
/* #list .list-free-comment .nav-pills {
  justify-content: center;
  gap: 10px 20px;
}
#list .list-free-comment .nav-pills .nav-link {
  padding: 0;
  color: var(--my-text-main);
  background: transparent;
  border-radius: 0;
  outline: 0;
}
#list .list-free-comment .fade {
  transition: opacity 0.3s linear;
}
#list .list-free-comment .tab-pane-item {
  position: relative;
  width: 100%;
  height: 400px;
  overflow-x: auto;
}
#list .list-free-comment table {
  width: 100%;
  height: 372px;
  border-collapse: separate;
}
#list .list-free-comment th,
#list .list-free-comment td {
  border: #fff 2px solid;
}
#list .list-free-comment th {
  min-width: 100px;
  height: 60px;
  background: #e7d0be;
  vertical-align: middle;
  font-weight: normal;
}
#list .list-free-comment th.no-bg {
  background: none;
}
#list .list-free-comment td {
  height: 52px;
  background: #fbf7f3;
  vertical-align: middle;
  font-size: 1.2rem;
}
#list .list-free-comment #comparePane2 table td,
#list .list-free-comment #comparePane3 table td,
#list .list-free-comment #comparePane4 table td {
  padding: 25px 0;
  height: 312px;
  background: linear-gradient(180deg, #fbf7f3 0%, #f8eadd 100%);
}
#list .list-free-comment #comparePane5 table td {
  height: 156px;
}
#list .list-free-comment .top-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.4rem;
}
#list .list-free-comment td:not(.top-bottom) > div {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
#list .list-free-comment td:not(.top-bottom) > div > div {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}
#list .list-free-comment #comparePane2 td span,
#list .list-free-comment #comparePane5 td span {
  position: relative;
  padding-left: 16px;
}
#list .list-free-comment #comparePane2 td span::before,
#list .list-free-comment #comparePane5 td span::before {
  content: '';
  position: absolute;
  height: 12px;
  width: 12px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #f47f7f;
}
#list .list-free-comment #comparePane3 td > div > div,
#list .list-free-comment #comparePane4 td > div > div {
  display: flex;
  justify-content: center;
}
#list .list-free-comment #comparePane3 td span,
#list .list-free-comment #comparePane4 td span {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 12px;
  border-left: #f47f7f 2px solid;
}
#list .list-free-comment #comparePane3 td span::before,
#list .list-free-comment #comparePane3 td span::after,
#list .list-free-comment #comparePane4 td span::before,
#list .list-free-comment #comparePane4 td span::after {
  content: '';
  position: absolute;
  left: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f47f7f;
}
#list .list-free-comment #comparePane3 td span::before,
#list .list-free-comment #comparePane4 td span::before {
  top: 0;
}
#list .list-free-comment #comparePane3 td span::after,
#list .list-free-comment #comparePane4 td span::after {
  bottom: 0;
}
#list .list-free-comment #comparePane3 td.note {
  height: 20px;
  padding: 0;
  background: none;
  text-align: right;
} */
/* ranking */
#list .list-ranking,
#detail .detail-relate,
#mypage .mypage-relate,
#cart .cart-relate {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}
#list .list-ranking-wrapper,
#detail .detail-relate-wrapper,
#cart .cart-relate-wrapper {
  display: flex;
  gap: 15px;
  padding: 0 20px 15px 20px;
  overflow-x: auto;
}
#mypage .mypage-relate-wrapper {
  display: flex;
  gap: 20px !important;
  padding: 0 0 20px;
  overflow-x: auto;
}
#list .list-ranking-item,
#detail .detail-relate-item,
#cart .cart-relate-item {
  width: 170px;
  min-width: 170px;
}
#mypage .mypage-relate-item {
  display: flex;
  flex-direction: column;
  width: 170px;
  min-width: 170px;
}
#list .list-ranking-item img,
#detail .detail-relate-item img,
#mypage .mypage-relate-item img,
#cart .cart-relate-item img {
  width: 100%;
}
#mypage .mypage-relate-item .addCart,
#mypage .mypage-relate-item .showDetail {
  margin-top: auto;
}
.status-icon {
  color: var(--my-text-main-rev);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  row-gap: 8px;
  justify-content: flex-start;
}
.status-icon span {
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 2px 6px;
  font-weight: 700;
}
/* .status-icon span:not(:first-child) {
  margin-left: 10px;
} */
/* result */
#list .offcanvas-start {
  border-right: none;
}
#list .list-result .extract-wrapper {
  padding: 0 20px;
}
#list .list-result .extract-selected ul {
  padding-left: 0;
}
#list .list-result .extract-selected li {
  margin-bottom: 5px;
  padding: 5px 15px;
  background: var(--my-button-conversion);
  list-style: none;
}
#list .list-result .extract-selected li a {
  padding: 0 15px 0 0;
  background: url(../images/ic-close.svg) no-repeat right center;
}
#list .list-result .navbar-nav ul.sub-menu {
  padding-left: 0;
  padding-bottom: 15px;
}
#list .list-result .navbar-nav .sub-menu li {
  list-style: none;
}
#list .list-result .extract-chekbox-wrapper {
  display: flex;
}
#list .list-result .extract-chekbox {
  width: 0;
  opacity: 0;
}
#list .list-result .extract-chekbox-span {
  position: relative;
  padding-left: 25px;
}
#list .list-result .extract-chekbox-span::before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid;
  border-color: #e8e8e1;
}
#list .list-result .extract-chekbox-span::after {
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
}
#list .list-result .extract-chekbox:checked ~ .extract-chekbox-span::after {
  background-color: #fff;
  border-color: #fff;
}
#list .list-result .list-result-button {
  position: sticky;
  top: calc(var(--my-header-height) + 10px);
  padding: 10px;
  border: var(--my-button-conversion) 1px solid;
  background: var(--my-text-main-rev);
  text-align: center;
  transition: top 0.3s ease;
  z-index: 2;
}
#list .list-result .list-result-button.selected {
  background: var(--my-button-conversion);
}
#list .list-result .list-result-button span {
  padding-left: 25px;
  background: url(../images/ic-extract.svg) no-repeat left center;
  color: var(--my-button-conversion);
}
#list .list-result .list-result-button.selected span {
  background-image: url(../images/ic-extract-rev.svg);
  color: var(--my-text-main-rev);
}
body.header-hide #list .list-result .list-result-button {
  top: 10px;
}
#list .list-result-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 15px;
}
#list .list-result-item {
  width: calc((100% - 15px) / 2);
  min-width: calc((100% - 15px) / 2);
  display: flex;
  flex-direction: column;
}
#list .list-result-item .cart-btn-wrapper {
  margin-top: auto;
}
#list .list-result-item img {
  width: 100%;
}
#list .list-last-order-date {
  padding: 5px;
  color: var(--my-text-main-rev);
  background: var(--my-text-feature-rev);
  font-size: 1.3rem;
  text-align: center;
}
.quantity-wrapper {
  display: inline-flex;
  align-items: center;
  border: #cccccc 1px solid;
  white-space: nowrap;
}
#detail-foot-add-cart .quantity-wrapper {
  background: #ffffff;
}
.quantity-input {
  display: inline-block;
  width: 20px;
  padding: 0;
  text-align: center;
  letter-spacing: normal;
  background: transparent;
  border: none !important;
}
.quantity-button {
  display: inline-block;
  padding: 8px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#detail-foot-add-cart .quantity-button {
  padding: 2px 15px;
}
.quantity-button svg {
  width: 11px;
  height: 11px;
  stroke-width: 1.5px;
  vertical-align: -1px;
  color: var(--my-text-main);
}
#list .list-result-item .button {
  min-width: auto;
  padding-left: 3px;
  padding-right: 3px;
}
.icon-cart::before {
  content: '';
  display: inline-block;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  background-image: url(../images/ic-cart.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: bottom;
  transition: background-image 0.45s;
}
a:hover .icon-cart::before {
  background-image: url(../images/ic-cart-rev.svg);
}
.detail-modal-contents {
  max-height: calc(100vh - 85px - 35px);
  overflow-y: scroll;
}
/* zend-info */
#list .zend-info-list dt {
  display: inline-block;
  min-height: 24px;
  margin: 30px 0 15px;
  padding-left: 30px;
  background: url(../images/ic-info.svg) no-repeat left top;
  font-weight: normal;
}
#list .zend-info-list dt a {
  color: var(--my-text-feature);
  padding-bottom: 2px;
  border-bottom: var(--my-button-conversion-sub) 1px solid;
}
#list .zend-info-list dt a:hover {
  opacity: 1;
}
#list .zend-info-list dt a > span {
  padding-bottom: 3px;
  background: linear-gradient(var(--my-button-conversion), var(--my-button-conversion)) 0 100%/0 1px no-repeat;
  transition: background-size 0.25s;
}
#list .zend-info-list dt a:hover > span {
  background-size: 100% 1px !important;
}
/* list-bottom */
#list .list-bottom .page-width {
  display: flex;
  flex-direction: column;
}
/* list-info */
#list .list-info {
  order: 2;
}
/* list-faq */
#list .list-faq {
  order: 3;
}
/* breadcrumb */
#list .breadcrumb {
  order: 4;
}
.breadcrumb .page-width {
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.breadcrumb img {
  vertical-align: text-bottom;
}
.breadcrumb .sub {
  position: relative;
  margin-left: 10px;
  padding-left: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.breadcrumb .sub::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: var(--my-text-main) 1px solid;
  border-right: var(--my-text-main) 1px solid;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -3px;
  transform: rotate(45deg);
}

/**-----------------------------------------------------------------------------**/
/** list breakpoint **/
/**-----------------------------------------------------------------------------**/
@media screen and (min-width: 768px) {
  #list .page-width,
  #excerpt-category .page-width {
    padding: 0 20px;
  }
  /* slider */
  #list #category-slider {
    padding: 50px 0;
  }
  #list .slider-image .carousel-cell {
    width: 45%;
  }
  #list .slider-thumbnail {
    display: block;
  }
  #list .slider-thumbnail:after {
    content: 'flickity';
  }
  #list .slider-thumbnail .carousel-cell {
    margin-right: 15px;
    padding: 0;
    width: 57px;
    border-radius: 5px;
  }
  #list .slider-thumbnail .carousel-cell img {
    border-radius: 5px;
  }
  #list .slider-thumbnail .carousel-cell.is-selected {
    border: rgb(105, 83, 64, 0.1) 1px solid;
  }
  #list .slider-thumbnail .carousel-cell.is-selected img {
    border: rgb(255, 0, 0, 1) 2px solid;
  }
  #list .flickity-page-dots {
    display: none;
  }
  /* image */
  #list .list-sub-category-item,
  #excerpt-category .list-sub-category-item {
    width: 160px;
    min-width: auto;
  }
  #list .list-image img,
  #excerpt-category .list-image img {
    height: 400px;
  }
  /* sub category */
  #list .list-sub-category-inner {
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 0;
    overflow: unset;
  }
  #excerpt-category .list-sub-category-inner {
    padding-bottom: 30px;
  }
  #list .list-sub-category-item-image,
  #excerpt-category .list-sub-category-item-image {
    width: 160px;
    height: 160px;
  }
  #list .list-sub-category-item img,
  #excerpt-category .list-sub-category-item img {
    max-width: 94px;
    max-height: 94px;
  }
  /* free comment */
  #list-free-feature {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 40px;
  }
  #list-free-feature:after {
    content: '';
  }
  #list-free-feature .carousel-cell {
    width: calc((100% - 120px) / 3);
  }
  #list-free-feature .gradient {
    height: 200px;
  }
  #list .diagnosis {
    flex-direction: row;
    gap: 65px;
  }
  #list .diagnosis img {
    width: 248px;
  }
  /* #list .list-free-comment table {
    table-layout: fixed;
  }
  #list .list-free-comment .nav-pills {
    gap: 10px 40px;
  } */
  /* ranking */
  #list .list-ranking-wrapper,
  #detail .detail-relate-wrapper,
  #mypage .mypage-relate-wrapper,
  #cart .cart-relate-wrapper {
    gap: 60px;
  }
  #list .list-ranking-item,
  #detail .detail-relate-item,
  #mypage .mypage-relate-item,
  #cart .cart-relate-item {
    width: calc((100% - 120px) / 3);
    min-width: calc((100% - 120px) / 3);
  }
  /* result */
  #list .list-result .page-width {
    display: flex;
    flex-direction: row;
    gap: 0 50px;
  }
  #list .list-result #extractMenu {
    position: relative;
    display: block;
    width: 250px;
    max-width: unset;
    transform: none;
    transition: none;
    visibility: visible !important;
    color: var(--my-text-main);
    background: none;
    border-left: none;
    z-index: unset;
  }
  #list .list-result #extractMenu a {
    color: var(--my-text-main);
  }
  #list .list-result #extractMenu .extract-selected li a {
    color: var(--my-text-main-rev);
  }
  #list .list-result #extractMenu .extract-chekbox:checked ~ .extract-chekbox-span::after {
    background-color: var(--my-text-main);
    border-color: var(--my-text-main);
  }
  #list .list-result .extract-wrapper {
    position: sticky;
    top: calc(var(--my-header-height) + 10px);
    overflow: unset;
    padding: 0;
    transition: top 0.3s ease;
  }
  body.header-hide #list .list-result .extract-wrapper {
    top: 10px;
  }
  #list .list-result #extractMenu .navbar-nav:not(:first-of-type) {
    border-top: #ccc 1px solid;
  }
  #list .list-result #extractMenu ul.navbar-nav li.has-children > a > span::after {
    background: none;
    border-top: var(--my-text-main) 1px solid;
    border-right: var(--my-text-main) 1px solid;
  }
  #list .list-result .list-result-contents {
    width: 900px;
  }
  #list .list-result .list-result-button {
    display: none;
  }
  #list .list-result-wrapper {
    gap: 60px;
  }
  #list .list-result-item {
    width: calc((100% - 120px) / 3);
    min-width: calc((100% - 120px) / 3);
  }
  /* list-info */
  #list .breadcrumb {
    order: 1;
  }
  #list .no-item {
    width: calc(100% - 300px);
  }
}
@media screen and (min-width: 992px) {
  /* ranking */
  #list .list-ranking-item,
  #detail .detail-relate-item,
  #mypage .mypage-relate-item,
  #cart .cart-relate-item {
    width: calc((100% - 180px) / 4);
    min-width: calc((100% - 180px) / 4);
  }
  /* result */
  #list .list-result-item {
    width: calc((100% - 180px) / 4);
    min-width: calc((100% - 180px) / 4);
  }
}
@media screen and (min-width: 1200px) {
  #list .slider-image .carousel-cell {
    width: 30%;
  }
  #list .list-ranking,
  #detail .detail-relate,
  #mypage .mypage-relate,
  #cart .cart-relate {
    max-width: 1240px;
  }
}

/**-----------------------------------------------------------------------------**/
/** detail **/
/**-----------------------------------------------------------------------------**/

#detail .detail-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#detail .detail-wrapper-image,
#detail .detail-wrapper-main {
  width: 100%;
}
#detail .detail-wrapper-image {
  padding-bottom: 30px;
}

/* modal */
#formd .detail-wrapper {
  gap: 20px;
}
#formd .detail-wrapper-image {
  padding-bottom: 35px;
}
#formd .flickity-page-dots {
  bottom: -35px;
}

/* product image */
#detail .detail-image .carousel-cell {
  width: 100%;
}
.carousel.is-fullscreen {
  z-index: 100;
}
#detail .detail-image .flickity-fullscreen-button {
  visibility: hidden;
}
#detail .detail-thumbnail {
  display: none;
}
#detail .detail-thumbnail:after {
  content: '';
  display: none;
}
/* product data */
#detail .detail-sale-comment {
  padding-left: 20px;
  background: url(../images/ic-notification.svg) no-repeat left 3px;
}
#detail .detail-seminar-comment {
  padding-left: 20px;
  background: url(../images/ic-school.svg) no-repeat left 3px;
  background-size: 19px 19px;
}
#detail .detail-lineup {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 1.3rem;
}
#detail .detail-lineup a {
  display: block;
  min-width: 80px;
  padding: 1px 8px;
  text-decoration: none;
  text-align: center;
  color: #333;
  border: #ccc 1px solid;
}
#detail .detail-lineup a:hover {
  background: #fdf8f5;
}
#detail .detail-lineup a.active {
  background: #fdf8f5;
  border: #e87464 1px solid;
}
#detail .detail-last-order-date {
  background: var(--my-text-feature-rev);
  text-align: center;
}
#detail .detail-last-order-date > div {
  display: inline-block;
  padding: 10px 10px 10px 40px;
  color: var(--my-text-main-rev);
  background: url(../images/icon-info2.svg) no-repeat 15px center;
  font-size: 1.3rem;
  text-align: left;
}
/* group select */
#detail #group_id_msdd {
  display: block;
  width: 100% !important;
}
#detail #group_id_msdd.dd {
  border: #cccccc 1px solid;
}
#detail #group_id_msdd.dd .ddTitle {
  min-height: 60px;
  color: var(--my-text-main);
  background: #ffffff;
}
#detail #group_id_msdd.dd .ddChild {
  overflow-y: auto !important;
  border: #ccc 1px solid !important;
}
#detail #group_id_msdd.dd .ddTitle .ddTitleText,
#detail #group_id_msdd.dd .ddChild li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 30px;
  min-height: 60px;
}
#detail #group_id_msdd.dd .ddTitle .ddTitleText img,
#detail #group_id_msdd.dd .ddChild li img {
  position: absolute;
  float: none;
  padding-right: 0;
}
#detail #group_id_msdd.dd .ddTitle .ddTitleText span,
#detail #group_id_msdd.dd .ddChild li span {
  color: var(--my-text-main);
  font-size: 1.4rem;
  padding-left: 70px;
}
#detail #group_id_msdd.dd .ddChild li.selected {
  color: var(--my-text-main);
  background: #e67462;
}
#detail #group_id_msdd.dd .ddArrow {
  margin-top: -5px;
  margin-right: 2px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #cccccc;
  background: none;
}
#detail #group_id_msdd.dd .ddChild li:last-child {
  border-bottom: none;
}
#detail #group_id_msdd.dd .ddChild li.optgroup {
  display: none !important;
}
#detail #group_id_msdd img {
  width: auto;
  height: 50px;
}
/* option select */
#detail .option-box {
  padding: 15px;
  background: #ffffff;
  border: #cccccc 1px solid;
}
#detail .option-box input[type='radio'],
#detail .option-box input[type='checkbox'] {
  display: none;
}
#detail .option-box label:focus,
#detail .option-box label:active,
#detail .option-box input:checked + label {
  color: #da3c41;
}
#detail .option-box label:focus:before,
#detail .option-box label:active:before,
#detail .option-box input:checked + label:before {
  border-color: #da3c41;
  background: #ffffff;
}
#detail .option-box label {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 5px 0 5px 20px;
  /*-webkit-transition: all 0.15s ease;*/
  /*transition: all 0.15s ease;*/
  white-space: nowrap;
  text-overflow: ellipsis;
}
#detail .option-box label.label-radio:before {
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 10px;
  content: '';
  border: 0.2em solid #cccccc;
  border-radius: 50%;
}
#detail .option-box input:checked + label:before {
  border-color: #e67462;
  background: #e67462;
}
#detail .option-box input:disabled + label {
  color: rgba(0, 0, 0, 0.5);
}
#detail .option-box input:disabled + label:before {
  border-color: #ffffff;
  background: #ffffff;
}
#detail .option-box label.label-checkbox:before {
  position: absolute;
  top: 0.9em;
  left: 0.3em;
  width: 10px;
  height: 10px;
  content: '';
  border: 0.2em solid #cccccc;
}
.icon-favorite::before {
  content: '';
  display: inline-block;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  background-image: url(../images/ic-favorite.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: bottom;
}

/* review */
#detail #nav-tab .nav-link {
  position: relative;
  width: calc(100% / 3);
  color: #999999;
  background-color: #f9f9f9;
  border-color: #dee2e6;
  border-radius: 0;
  transition: none;
}
#detail #nav-tab .nav-link.active {
  color: var(--my-text-main);
  background-color: var(--my-text-main-rev);
  border-bottom: none;
}
#detail #nav-tab button+button {
  border-left: none;
}
#detail #nav-tab .nav-badge {
  position: absolute;
  top: -10px;
  right: 10px;
  min-width: 20px;
  padding: 0 1px;
  font-size: 1.1rem;
  color: var(--my-text-main-rev);
  background-color: var(--my-button-conversion);
  border-radius: 99px;
  border: 1px solid var(--my-button-conversion);
}
#detail #nav-tab .nav-badge-none {
  color: var(--my-button-conversion);
  background-color: var(--my-text-main-rev);
}
.review-rating {
  display: inline-block;
  padding-left: 85px;
  background-size: 80px 16px;
  background-repeat: no-repeat;
  background-position: left center;
}
.review-rating.large {
  padding-left: 120px;
  padding-right: 5px;
  background-size: 110px 22px;
  color: var(--my-button-conversion);
  font-size: 2.2rem;
  font-weight: bold;
}
.review-rating.rating-00 {
  background-image: url(../images/icon-review-star-00.svg);
}
.review-rating.rating-01 {
  background-image: url(../images/icon-review-star-01.svg);
}
.review-rating.rating-02 {
  background-image: url(../images/icon-review-star-02.svg);
}
.review-rating.rating-03 {
  background-image: url(../images/icon-review-star-03.svg);
}
.review-rating.rating-04 {
  background-image: url(../images/icon-review-star-04.svg);
}
.review-rating.rating-05 {
  background-image: url(../images/icon-review-star-05.svg);
}
.review-rating.rating-06 {
  background-image: url(../images/icon-review-star-06.svg);
}
.review-rating.rating-07 {
  background-image: url(../images/icon-review-star-07.svg);
}
.review-rating.rating-08 {
  background-image: url(../images/icon-review-star-08.svg);
}
.review-rating.rating-09 {
  background-image: url(../images/icon-review-star-09.svg);
}
.review-rating.rating-10 {
  background-image: url(../images/icon-review-star-10.svg);
}
.review select {
  border: none;
  margin-left: -7.5px;
}
.review select:focus {
  outline: none;
}
.review hr {
  margin: 30px 0;
  border-color: #dddddd;
  background-color: transparent;
}
.review .text-gray {
  color: #666666;
}
.review .text-brown {
  color: var(--my-button-conversion);
}
.review .reply_title {
  background: url(../images/icon-review-replys.svg) no-repeat left center;
  padding-left: 36px;
  background-size: 36px;
}
.review .reply_comment {
  border-left: 2px solid #666666;
}
.review .nice {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 30px;
  background: #F5F5F5;
  border-radius: 4px;
}
.review .nice > span::before {
  content: '';
  display: inline-block;
  margin-right: 4px;
  width: 16px;
  height: 16px;
  background-image: url(../images/icon-review-nice-off.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.review .nice.is_nice {
  color: #F5A62C;
  font-weight: bold;
  pointer-events: none;
  cursor: default;
}
.review .nice.is_nice > span::before {
  background-image: url(../images/icon-review-nice-on.svg);
}
.review .nice.disabled {
  pointer-events: none;
  cursor: default;
}
.review .icon-review::before {
  content: '';
  display: inline-block;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  background-image: url(../images/icon-review-write.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  transition: background-image 0.45s;
}

/* review pro */
#detail .review-pro {
  padding: 40px 20px 40px 30px;
  background: #e7d0be;
  font-size: 1.2rem;
}
#detail .review-pro-hint {
  height: 32px;
  line-height: 32px;
}
#detail .review-pro-hint span {
  display: inline-block;
  padding-left: 35px;
  background: url(../images/ic-reviewpro-hint.svg) no-repeat left top;
}
#detail .review-pro strong {
  background-color: #ffffaa;
  font-weight: normal;
}
#detail .review-pro .carousel {
  margin-bottom: 30px;
  padding-bottom: 10px;
}
#detail .review-pro .carousel-cell {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 50px;
}
#detail .review-pro-point {
  display: inline-block;
  padding: 0 15px;
  color: #fff;
  background: #333;
  font-size: 1.2rem;
}
#detail .review-pro-info {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  margin-right: 10px;
  padding: 50px 30px 30px;
  background: #fbf7f3;
  box-shadow: 3px 3px 6px #cccc;
}
#detail .review-pro-image {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: #fff 3px solid;
}
#detail .review-pro-comment {
  margin-bottom: 20px;
  padding-bottom: 10px;
  height: 100%;
  line-height: 1.6;
  border-bottom: #e5e5e5 1px solid;
  font-size: 1.2rem;
}
#detail .review-pro-person {
  text-align: center;
}
#detail .review-pro .slide-wrap .slide-contents {
  margin-bottom: 50px;
}
#detail .flickity-page-dots .dot {
  margin: 0 5px;
  border: #695340 1.5px solid;
  background: transparent;
  opacity: 0.75;
}
#detail .flickity-page-dots .dot.is-selected {
  background: #695340;
  opacity: 1;
}
#detail .is-fullscreen .flickity-page-dots .dot {
  border: #ffffff 1.5px solid;
}
#detail .is-fullscreen .flickity-page-dots .dot.is-selected {
  background: #ffffff;
}
#detail .flickity-prev-next-button {
  width: 15px;
  height: 15px;
  border-radius: 0;
  background: no-repeat;
  top: calc(50% + 25px);
}
#detail .flickity-prev-next-button.previous {
  left: -30px;
}
#detail .flickity-prev-next-button.previous .flickity-button-icon {
  left: 10px;
  width: 100%;
  height: 100%;
  top: 0;
  color: #695340;
}
#detail .flickity-prev-next-button.next {
  right: -20px;
}
#detail .flickity-prev-next-button.next .flickity-button-icon {
  right: 10px;
  left: auto;
  width: 100%;
  height: 100%;
  top: 0;
  color: #695340;
}
/* main comment */
#detail .detail-expand {
  position: relative;
  width: 100%;
}
#detail .detail-expand h3 {
  position: relative;
  margin: 0;
  padding: 30px 25px 25px 0;
  cursor: pointer;
}
#detail .detail-expand-faq h3 {
  margin: 0;
  padding: 30px 25px 25px 0;
}
#detail .detail-expand-faq dt {
  position: relative;
  margin: 0;
  padding: 15px 25px 15px 0;
  cursor: pointer;
}
#detail .detail-expand-faq dd {
  padding-top: 10px;
  padding-bottom: 10px;
}
#detail .detail-expand h3::after {
  content: '';
  position: absolute;
  display: block;
  top: 44%;
  right: 5px;
  width: 10px;
  height: 10px;
  border-top: solid 2px var(--my-text-main);
  border-right: solid 2px var(--my-text-main);
  transform: rotate(135deg);
  transition: transform 0.2s ease-in-out;
}
#detail .detail-expand-faq dt::after {
  content: '';
  position: absolute;
  display: block;
  top: 40%;
  right: 5px;
  width: 8px;
  height: 8px;
  border-top: solid 2px var(--my-text-main);
  border-right: solid 2px var(--my-text-main);
  transform: rotate(135deg);
  transition: transform 0.2s ease-in-out;
}
#detail .detail-expand h3.open::after {
  transform: rotate(-45deg);
  top: 50%;
}
#detail .detail-expand-faq dt.open::after {
  transform: rotate(-45deg);
  top: 46%;
}
#detail .detail-expand .detail-comment {
  display: none;
  padding-top: 10px;
  padding-bottom: 30px;
}
#detail .detail-expand-faq .detail-comment {
  padding-bottom: 20px;
}
#detail .detail-expand-faq .detail-comment dd {
  display: none;
}
/* foot modal */
#detail-foot-add-cart,
#mypage-foot-show-category {
  position: fixed;
  bottom: 0;
  z-index: 1;
  width: 100%;
}
.detail-foot-add-cart-inner {
  background-color: rgba(232, 232, 232, 0.95);
  padding: 10px 15px;
}
.mypage-foot-show-category-inner {
  background-color: #fff;
  padding: 10px 15px;
  text-align: center;
}
#detail-foot-add-cart .button {
  min-width: auto;
  padding: 4px 20px;
  font-size: 1.3rem;
}
#mypage-foot-show-category .button {
  padding: 10px;
}
.detail-foot-nologin {
  height: 105px;
  display: flex;
  flex-wrap: nowrap;
  background-color: rgba(232, 232, 232, 0.95);
}
.detail-foot-nologin-img img {
  height: 105px;
}
.detail-foot-nologin-inner {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  width: calc(100% - 105px);
  padding: 10px 15px;
}
.detail-foot-nologin-inner div {
  width: 100%;
}
.detail-foot-nologin-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.detail-foot-nologin-button {
  overflow: hidden;
}
#detail-foot-add-cart .detail-foot-nologin-inner div .button {
  width: 100%;
  padding: 4px;
}
.detail-foot-nologin-inner div .button span {
  white-space: nowrap;
}
#mypage-foot-show-category a.button {
  width: 100%;
  color: #fff;
  text-decoration: none;
}
#detail figure figcaption {
  padding-top: 5px;
  font-size: 0.95em;
  opacity: 0.85;
}

/**-----------------------------------------------------------------------------**/
/** detail breakpoint **/
/**-----------------------------------------------------------------------------**/
@media screen and (min-width: 768px) {
  #detail .detail-wrapper {
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
    padding: 0 20px 20px;
    max-width: 1240px;
  }
  #detail .detail-wrapper-image {
    width: 45%;
  }
  #detail .detail-wrapper-main {
    width: 55%;
  }
  #detail .detail-width-rest,
  #formd .detail-width-rest {
    width: 350px;
    max-width: 350px;
  }
  .detail-modal-contents {
    padding-bottom: 20px;
  }
  /* product image */
  #detail .detail-image.is-fullscreen {
    text-align: center;
  }
  #detail .detail-image.is-fullscreen .carousel-cell,
  #detail .detail-image.is-fullscreen .carousel-cell img {
    height: 100%;
  }
  #detail .detail-image .flickity-fullscreen-button {
    visibility: visible;
  }
  #detail .detail-image:not(.is-fullscreen):not(.is-modal) .flickity-page-dots {
    bottom: -95px;
  }
  #detail .detail-thumbnail {
    display: block;
  }
  #detail .detail-thumbnail:after {
    content: 'flickity';
  }
  #detail .detail-thumbnail .carousel-cell {
    margin-right: 15px;
    width: 57px;
  }
  #detail .detail-thumbnail .carousel-cell.is-selected {
    border: rgb(105, 83, 64, 0.1) 1px solid;
  }
  #detail .detail-thumbnail .carousel-cell.is-selected img {
    border: rgb(105, 83, 64, 0.7) 1px solid;
  }
  /* product data */
  #detail .detail-lineup {
    font-size: 1.4rem;
  }
  #detail .detail-last-order-date {
    max-width: 350px;
  }
  /* group select */
  #detail #group_id_msdd {
    width: 350px !important;
    max-width: 350px !important;
  }
  /* review pro */
  #detail .review-pro {
    margin: 0 auto 60px;
    padding: 40px 70px 40px 80px;
    max-width: 1020px;
  }
  #detail .review-pro-hint img {
    width: 40px;
    height: 40px;
  }
  #detail .review-pro .carousel-cell {
    padding-top: 30px;
  }
  #detail .review-pro-point {
    padding: 3px 20px;
    font-size: 1.4rem;
  }
  #detail .review-pro .review-pro-info {
    flex-direction: row;
    align-items: center;
    padding: 30px;
  }
  #detail .review-pro .review-pro-image {
    position: relative;
    order: 1;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  #detail .review-pro .review-pro-comment {
    position: relative;
    order: 3;
    flex: 1;
    margin-bottom: 0;
    padding-left: 20px;
    border-bottom: none;
  }
  #detail .review-pro .review-pro-comment:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background: #e5e5e5;
  }
  #detail .review-pro .review-pro-person {
    order: 2;
    width: 180px;
    padding: 0 20px;
  }
  #detail .flickity-prev-next-button.previous .flickity-button-icon {
    left: 0;
  }
  #detail .flickity-prev-next-button.next .flickity-button-icon {
    right: 0;
  }
  /* foot modal */
  #detail-foot-add-cart,
  #mypage-foot-show-category {
    display: none !important;
  }
}

/**-----------------------------------------------------------------------------**/
/** cart **/
/**-----------------------------------------------------------------------------**/
.cart-notice {
  max-width: 1200px;
  background: var(--my-button-conversion-rev);
}
.cart-notice.accordion .accordion-button {
  background: transparent;
  color: var(--my-text-feature);
  box-shadow: none;
  cursor: pointer;
  text-decoration: underline;
}
.cart-notice.accordion .accordion-button:hover {
  opacity: 0.8;
}
.cart-notice.accordion .accordion-button > span {
  padding-right: 15px;
}
.cart-notice.accordion .accordion-button::after {
  background-position: 0 2px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2216%22%20height%3D%2211%22%20viewBox%3D%220%200%2016%2011%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%201L8%209L15%201%22%20stroke%3D%22%23B1856F%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E');
}
.cart-notice.accordion .accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2216%22%20height%3D%2211%22%20viewBox%3D%220%200%2016%2011%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%201L8%209L15%201%22%20stroke%3D%22%23B1856F%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E');
}
/* product */
#cart .cart-item {
  display: flex;
  gap: 15px;
}
#cart .cart-item-image,
#cart .cart-item-image img {
  width: 130px;
}
#cart .cart-item-main {
  width: calc(100% - 130px - 15px);
}
#cart .cart-item-related {
  flex-wrap: wrap;
  gap: 20px 15px;
  padding: 20px;
  border: #cbcbcb 1px solid;
  box-shadow: 0px 1px 5px #0000001a;
}
#cart .cart-item-related .cart-item-image,
#cart .cart-item-related .cart-item-image img {
  width: 110px;
}
#cart .cart-item-related .cart-item-main {
  width: calc(100% - 110px - 15px);
}
#cart .cart-item-title {
  position: relative;
  width: 100%;
  text-align: center;
}
#cart .cart-item-close {
  position: absolute;
  top: 1px;
  right: 0;
  width: 20px;
  height: 20px;
}
#cart .cart-item-related .button {
  min-width: auto;
  max-width: 250px;
  padding-left: 3px;
  padding-right: 3px;
}
/* promotion */
#cart .cart-promotion-input {
  display: flex;
  gap: 15px;
}
#cart .cart-promotion input[type='tel'] {
  width: 100%;
  max-width: 750px;
  padding: 15px 20px;
  border: var(--my-text-feature) 1px solid;
  border-radius: 5px;
}
#cart .cart-promotion input[type='tel']::placeholder {
  color: var(--my-text-feature);
}
#cart .cart-promotion .button {
  min-width: 80px;
  padding: 12px;
  border-radius: 5px;
}

/**-----------------------------------------------------------------------------**/
/** cart breakpoint **/
/**-----------------------------------------------------------------------------**/
@media screen and (min-width: 768px) {
  /* promotion */
  #cart .cart-promotion-input {
    gap: 30px;
  }
  /* total */
  #cart .cart-total-inner {
    display: flex;
    flex-direction: column;
  }
  #cart .cart-total-delivfee {
    order: 2;
  }
  #cart .cart-total-price {
    order: 1;
  }
}

/**-----------------------------------------------------------------------------**/
/** shopping **/
/**-----------------------------------------------------------------------------**/

/* cartdetail */
#shopping .shopping-cartdetail {
  background: #fafafa;
}
#shopping .shopping-cartdetail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-top: #cccccc 1px solid;
  border-bottom: #cccccc 1px solid;
}
#shopping .shopping-cartdetail-opener {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  background: url(../images/ic-cart-dark.svg) no-repeat left center;
}
#shopping .shopping-cartdetail-opener::after {
  content: '';
  position: absolute;
  display: block;
  top: 18%;
  right: -20px;
  width: 8px;
  height: 8px;
  border-top: solid 1px var(--my-text-main);
  border-right: solid 1px var(--my-text-main);
  transform: rotate(135deg);
  transition: transform 0.2s ease-in-out;
}
#shopping .shopping-cartdetail-opener.open::after {
  transform: rotate(-45deg);
  top: 42%;
}
#shopping .shopping-cartdetail-contents {
  display: none;
}
/* cartdetail item */
#shopping .shopping-cartdetail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
#shopping .shopping-cartitem-image {
  position: relative;
}
#shopping .shopping-cartitem-image,
#shopping .shopping-cartitem-image img {
  width: 64px;
  min-width: 64px;
}
#shopping .shopping-cartitem-image span {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 21px;
  height: 21px;
  line-height: 21px;
  text-align: center;
  color: #ffffff;
  background: rgb(102, 102, 102, 0.8);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
}
#shopping .shopping-cartitem-name {
  flex-grow: 10;
}
#shopping .shopping-cartitem-price {
  white-space: nowrap;
}
/* main */
#shopping .shopping-main {
  padding: 20px;
}
#shopping .border-top {
  border-top: #cccccc 1px solid !important;
}
#shopping .border-bottom {
  border-bottom: #cccccc 1px solid !important;
}
#shopping .shopping-main input[type='text'] {
  width: 100%;
  max-width: 750px;
  padding: 15px 20px;
  border: #cccccc 1px solid;
  border-radius: 5px;
}
/* cart price */
.shopping-cartdetail-price {
  border-bottom: #cccccc 1px solid;
}
.shopping-cartdetail-line {
  display: flex;
  justify-content: space-between;
}
.shopping-copyright {
  margin-top: 20px;
  padding-top: 20px;
  color: #737373;
  border-top: #cccccc 1px solid;
}
/* payment */
#shopping .shopping-payment-desc {
  border-top: #cccccc 1px solid;
}
#shopping .shopping-payment-point input[type='tel'] {
  width: 105px;
  padding: 8px 10px;
  border: #cccccc 1px solid;
}
#shopping .shopping-payment-deliv > div > div {
  padding: 10px 0;
}
/* confirm */
#shopping .shopping-confirm-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#shopping .shopping-confirm-action {
  width: 40px;
  min-width: 40px;
  text-align: right;
}
#shopping .shopping-confirm-message {
  width: 100%;
  height: 120px;
  padding: 10px;
}
#shopping .shopping-confirm-message::placeholder {
  font-size: 1.2rem;
}
#shopping .shopping-zeus input[type='text'] {
  padding: 10px 5px;
  border-radius: 0;
}

/**-----------------------------------------------------------------------------**/
/** shopping breakpoint **/
/**-----------------------------------------------------------------------------**/
@media screen and (min-width: 768px) {
  #shopping {
    display: flex;
  }
  /* cart price */
  #shopping .shopping-cartdetail {
    padding: 70px 0 0 20px;
    width: 45%;
    border-left: #cccccc 1px solid;
    order: 2;
  }
  #shopping .shopping-cartdetail-inner {
    padding-right: 20px;
    max-width: 440px;
  }
  #shopping .shopping-cartdetail-price {
    border-bottom: none;
  }
  /* main */
  #shopping .shopping-main {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    padding: 70px 20px 0 20px;
    width: 55%;
    max-width: 680px;
    order: 1;
  }
  #shopping .shopping-main .shopping-main-inner {
    flex-grow: 1;
  }
  #shopping .shopping-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* payment */
  #shopping .shopping-payment {
    padding: 0 10px;
    border: #cccccc 1px solid;
    border-radius: 5px;
  }
  #shopping .shopping-payment-item,
  #shopping .shopping-payment-deliv > div {
    display: flex;
    align-items: center;
    width: 100%;
    border: none;
    border-radius: 0;
  }
  #shopping .shopping-payment-item:not(:first-child) {
    border-top: #cccccc 1px solid;
  }
  #shopping .shopping-payment-title,
  #shopping .shopping-payment-deliv-title {
    min-width: 160px;
  }
  #shopping .shopping-payment-desc {
    border-top: none;
  }
}
@media screen and (min-width: 992px) {
  /* cart price */
  #shopping .shopping-cartdetail {
    padding: 70px 0 0 50px;
  }
  /* main */
  #shopping .shopping-main {
    padding: 70px 60px 0 20px;
  }
  /* zeus */
  #shopping .shopping-zeus > div {
    display: flex;
    align-items: center;
  }
  #shopping .shopping-zeus-title {
    width: 160px;
    min-width: 160px;
  }
}

/**-----------------------------------------------------------------------------**/
/** line **/
/**-----------------------------------------------------------------------------**/

a.button-line {
  width: 100%;
  color: #fff;
  background-color: #00b900;
  border-color: #00b900;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none !important;
}
a.button-line::before {
  background-color: #00b900;
}
a.button-line:not([disabled]):hover {
  color: #00b900;
  background-color: transparent;
}
.icon-line {
  vertical-align: middle;
}
.icon-line::before {
  content: '';
  display: inline-block;
  margin-right: 8px;
  width: 25px;
  height: 25px;
  background-image: url(../images/sns-line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: bottom;
}
/**-----------------------------------------------------------------------------**/
/** line breakpoint **/
/**-----------------------------------------------------------------------------**/
@media screen and (min-width: 768px) {
  .button-line {
    max-width: 400px;
  }
}

/**-----------------------------------------------------------------------------**/
/** mypage **/
/**-----------------------------------------------------------------------------**/

.review-rating-input {
  position: relative;
  margin: 3px 0;
  width: 240px;
  height: 48px;
}
.review-rating-input .review-rating {
  width: 100%;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
}
.review-rating-input .star-hit-area {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
}
.review-rating-input .star-hit-area span {
  flex: 1;
  cursor: pointer;
}

/**-----------------------------------------------------------------------------**/
/** mypage breakpoint **/
/**-----------------------------------------------------------------------------**/
@media screen and (min-width: 768px) {
  .review-rating-input {
    width: 160px;
    height: 32px;
  }
  .review-rating-input .review-rating {
    height: 32px;
  }
}
