/* ---------------------------------------------------
   Base
--------------------------------------------------- */
:root {
  --font-base: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", YuGothic, sans-serif;
  --key-A-main: #f88906;
  --key-A-sub: #ffd29d;
  --key-B-main: #2baac1;
  --key-B-sub: #caeaea;
  --c-white: #fff;
  --c-black: #2f2f2f;
  --c-gray: #646464;
  --c-gray-light: #969696;
  --c-red: #ef3a64;
  --c-green: #008a32;
  --c-blue: #00a0e1;
  --c-yellow: #ffc400;
  --c-link: #0d859b;
  --bg-base: #fff;
  --bg-key-A: #f8eddc;
  --bg-key-B: #f0f5f5;
  --bg-gray: #f5f5f4;
  --bg-blue: #f0f5f5;
  --bg-red: #fee9ee;
  --bg-nav: #ebebeb;
  --border-gray: #d1d1d1;
  --card-2Width: calc(50% - 5px);
  --card-3Width: calc(33% - 5px);
  --card-4Width: calc(25% - 10px);
}

html {
  font-family: var(--font-base);
  font-size: 62.5%;
  font-weight: 500;
  word-wrap: break-word;
}

body {
  background: var(--bg-base);
  color: var(--c-black);
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

a,
button {
  color: var(--c-link);
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.6;
}

h1 {
  font-size: 2.4rem;
  font-weight: 600;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
}

p {
  margin-bottom: 1.2em;
}

#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 70px;
}

#master_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-base);
  z-index: 100;
}
#master_header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  padding: 8px 10px;
}
#master_header .header-logo {
  width: 200px;
  margin-bottom: 0;
}
#master_header .header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 5px;
}

#master_main {
  flex: 1;
}

#master_footer {
  background: var(--key-A-main);
  color: var(--c-white);
  font-size: 1.2rem;
  text-align: center;
  padding: 20px 30px;
  margin-top: auto;
}
#master_footer .footer-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  gap: 30px;
}
#master_footer .footer-logo {
  width: 50px;
  margin: auto;
}
#master_footer .footer-nav > ul {
  justify-content: center;
  gap: 10px;
}
#master_footer .footer-nav > ul a:hover {
  opacity: 0.6;
}
#master_footer a {
  color: currentColor;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  color: var(--c-gray-light);
  font-size: 1.1rem;
}
.breadcrumb li {
  margin-bottom: 0;
}
.breadcrumb li:not(:last-child)::after {
  content: ">";
  display: inline-block;
  margin-left: 10px;
}
.breadcrumb a {
  color: currentColor;
}

@media (min-width: 1020px) {
  #wrapper {
    padding-top: 80px;
  }
  #master_header .header-logo {
    width: 230px;
  }
  #master_header .header-nav {
    gap: 30px;
  }
  #master_main .main-contents {
    padding: 0 10px;
  }
  #master_main .contents-inner {
    padding: 0;
  }
  #master_footer {
    text-align: left;
    padding: 50px 30px 60px;
  }
  #master_footer .footer-inner {
    grid-template-columns: 50px auto 200px;
  }
  #master_footer .footer-nav > ul {
    justify-content: flex-start;
    gap: 20px;
  }
}
.side-nav {
  --bg-side-nav: var(--bg-nav);
  max-width: 600px;
  margin: auto;
}
.side-nav .category-list li {
  position: relative;
  border-bottom: 1px solid var(--c-white);
  padding-left: 1.6em;
  margin-bottom: 0;
}
.side-nav .category-list li::before {
  content: "";
  position: absolute;
  top: 1em;
  left: 0.5em;
  background: var(--key-B-main);
  border-radius: 100%;
  width: 1.2rem;
  height: 1.2rem;
}
.side-nav .category-list li a {
  display: block;
  color: var(--c-black);
  padding: 10px 6px;
}
.side-nav .nav-search > input {
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 3rem;
  box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.1) inset;
  padding: 10px 1em 10px 2.5em;
  transition: 0.3s;
}
.side-nav .nav-search > input::-moz-placeholder {
  color: var(--c-gray-light);
}
.side-nav .nav-search > input::placeholder {
  color: var(--c-gray-light);
}
.side-nav .nav-search > input:focus {
  background: var(--c-white);
}
.side-nav .nav-search .__submit {
  left: 0.8em;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Cpath%20d%3D%22m35.41%2032.59-6.78-6.78c2.18-2.79%203.37-6.2%203.37-9.8%200-4.27-1.66-8.29-4.69-11.31C24.29%201.67%2020.28%200%2016%200%207.18%200%200%207.18%200%2016s7.18%2016%2016%2016c1.41%200%202.81-.19%204.17-.55a2.002%202.002%200%201%200-1.03-3.87c-1.03.27-2.08.41-3.15.41-6.62%200-12-5.38-12-12s5.38-12%2012-12c3.21%200%206.22%201.25%208.49%203.52s3.51%205.28%203.51%208.49-1.25%206.22-3.51%208.49c-.39.39-.59.9-.59%201.41%200%20.51.2%201.02.59%201.41l8.1%208.1c.39.39.9.59%201.41.59s1.02-.2%201.41-.59c.78-.78.78-2.05%200-2.83Z%22%20fill%3D%22%237b756e%22%2F%3E%3C%2Fsvg%3E");
  width: 1.3em;
  height: 1.3em;
  margin: auto;
}
@media ( width < 1030px ) {
  .side-nav {
    --side-nav-shadow: 1px 1px 3px rgba(0, 0, 0, 0.16);
  }
  .side-nav .__head {
    background: var(--bg-side-nav);
    border-radius: 6px;
    box-shadow: var(--side-nav-shadow);
    color: var(--c-gray-light);
    padding-bottom: 10px;
    cursor: pointer;
  }
  .side-nav .__head::before, .side-nav .__head::after {
    right: 10px;
    left: auto;
    background: currentColor;
    border-radius: 0.5em;
    width: 1rem;
    height: 2px;
  }
  .side-nav .__head::before {
    content: "";
    position: absolute;
    top: 20px;
    display: block;
    transform: rotate(45deg);
  }
  .side-nav .__head::after {
    top: 8px;
    transform: rotate(-45deg);
  }
  .side-nav .__inner {
    position: absolute;
    left: 0;
    right: 0;
    display: none;
    background: var(--bg-side-nav);
    border-radius: 0 0 6px 6px;
    padding: 20px;
  }
  .side-nav #sideNav-tgl:checked + .__head {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .side-nav #sideNav-tgl:checked ~ .__inner {
    display: block;
    box-shadow: var(--side-nav-shadow);
  }
}
@media ( 1030px <= width ) {
  .side-nav {
    --bg-side-nav: var(--bg-blue);
    background: var(--bg-side-nav);
    padding: 20px 15px;
  }
}

a#pagetop {
  position: fixed;
  bottom: 80px;
  right: 2%;
  display: block;
  width: 80px;
  height: 83px;
  padding: 10px;
  z-index: 100;
  animation: bounce-out 0.1s ease-out;
}
a#pagetop:hover {
  animation: bounce 0.8s ease-out;
  opacity: 1;
}

@keyframes bounce {
  0% {
    transform: translate(0, 0);
  }
  16% {
    transform: translate(0, -20px);
    animation-timing-function: ease-in;
  }
  33% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -14px);
    animation-timing-function: ease-in;
  }
  66% {
    transform: translate(0, 0);
  }
  83% {
    transform: translate(0, -4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes bounce-out {
  0% {
    transform: translate(0, -6px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translate(0, 0);
  }
}
/* ---------------------------------------------------
   Reset
--------------------------------------------------- */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
}

li {
  margin-bottom: 8px;
}

a {
  color: var(--c-link);
}
a:hover {
  color: var(--key-B-main);
}

a,
button {
  transition: 0.3s;
  cursor: pointer;
}
a:hover,
button:hover {
  opacity: 0.6;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  white-space: revert;
  touch-action: manipulation;
}

input[type=checkbox],
input[type=radio] {
  all: revert;
}

/* ---------- Layout ---------- */
.l-container {
  max-width: 1200px;
  margin: auto;
}
.l-container.col-2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.l-mainContents {
  flex: 1;
  order: 1;
}

.l-sideContents {
  order: 0;
  padding: 0 25px;
}

.l-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 800px) {
  .l-row::after {
    content: "";
    display: block;
    width: var(--card-3Width);
  }
}
@media (min-width: 1020px) {
  .l-container.col-2 {
    flex-direction: row;
    margin-bottom: 80px;
  }
  .l-sideContents {
    max-width: 300px;
    padding: 0;
  }
  .l-item-wrap {
    padding: 15px 30px 50px;
  }
}
.l-relative {
  position: relative;
}

.static {
  position: static;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.right-0 {
  right: 0;
}

.insetY-0 {
  top: 0;
  bottom: 0;
}

.l-flex {
  display: flex;
}

.block {
  display: block;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.inline-block {
  display: inline-block;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-center {
  align-self: center;
}

.align-self-end {
  align-self: flex-end;
}

.justify-right {
  justify-content: right;
}

.justify-center {
  justify-content: center;
}

.justify-around {
  justify-content: space-around;
}

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

.justify-self-end {
  justify-self: flex-end;
}

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

.flex-shrink {
  flex-shrink: 0;
}

.flex-shrink-1 {
  flex-shrink: 1;
}

.gap10 {
  gap: 10px;
}

.gap20 {
  gap: 20px;
}

.gap30 {
  gap: 30px;
}

.w-0 {
  width: 0;
}

.w-full {
  width: 100%;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.w-min {
  width: -moz-min-content;
  width: min-content;
}

.w-max {
  width: -moz-max-content;
  width: max-content;
}

@media ( width < 750px ) {
  .sp\:flex-wrap {
    flex-wrap: wrap;
  }
  .sp\:justify-center {
    justify-content: center;
  }
}
@media ( 1030px <= width ) {
  .pc\:flex-wrap {
    flex-wrap: wrap;
  }
}
.g-recaptcha > div {
  margin: auto;
}

.o-box {
  display: block;
  background: var(--bg-gray);
  border-radius: 10px;
  padding: 20px;
}
.o-box.__key {
  background: var(--bg-key-A);
}
.o-box.__red {
  background: var(--bg-red);
}
.o-box.__red a {
  color: var(--c-red);
  font-weight: 600;
}

.o-list-disc li {
  position: relative;
  padding-left: 1.1em;
}
.o-list-disc li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0.3em;
  display: block;
  background: var(--c-gray);
  border-radius: 100%;
  width: 0.35em;
  height: 0.35em;
}

@media (min-width: 1020px) {
  .o-box {
    padding: 20px 30px;
  }
}
.o-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--key-A-main);
  color: var(--c-white);
  padding: 10px;
  margin: 0 auto 30px;
}

@media (min-width: 1020px) {
  .o-title {
    border-radius: 1em;
    font-size: 2rem;
    margin-top: 10px;
  }
}
.o-iconTitle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 40px 5px 0;
}
.o-iconTitle .icon {
  width: 40px;
}
.o-iconTitle .title {
  font-size: 1.8rem;
  font-weight: 600;
}
.o-iconTitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: var(--key-A-main);
  width: 50px;
  height: 1px;
  margin: auto;
}

.o-underline {
  border-bottom: 1px solid var(--border-gray);
  padding: 0.5em 0.2em;
}

.o-badge {
  position: relative;
  display: inline-block;
  background: var(--c-red);
  color: var(--c-white);
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  width: 50px;
  padding: 8px 5px;
}
.o-badge::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 0;
  width: 0;
  border-left: 25px solid var(--c-red);
  border-right: 25px solid var(--c-red);
  border-bottom: 6px solid transparent;
}

.o-tag {
  display: inline-block;
  background: var(--key-B-sub);
  border-radius: 2px;
  color: var(--c-gray);
  font-size: 1.1rem;
  text-align: center;
  padding: 3px 6px 3px calc(1em + 6px);
  margin: 0;
}
.o-tag::before {
  content: "#";
  margin-left: -1em;
}

.o-label {
  display: inline-block;
  background: var(--c-white);
  border: 1px solid #ccd3d3;
  border-radius: 15px;
  color: var(--c-black);
  font-size: 1.3rem;
  padding: 5px 20px;
  transition: 0.3s;
}
.o-label:hover, .o-label.current {
  background: var(--key-B-main);
  border-color: var(--key-B-main);
  color: var(--c-white);
  font-weight: 600;
  opacity: 1;
}

.o-btn,
.o-btn-sm {
  position: relative;
  color: var(--c-black);
  text-align: center;
  border: 1px solid var(--c-black);
  transition: 0.3s;
  cursor: pointer;
}
.o-btn:hover,
.o-btn-sm:hover {
  background: #ddddd6;
  border-color: var(--c-gray);
  color: currentColor;
}
.o-btn.black,
.o-btn-sm.black {
  background: var(--c-black);
  border-color: var(--c-black);
  color: var(--c-white);
}
.o-btn.black:hover,
.o-btn-sm.black:hover {
  background: #3a3a3a;
}
.o-btn.disabled,
.o-btn-sm.disabled {
  background: #ebebeb;
  border: none;
  color: #bbb;
  cursor: default;
}
.o-btn.arrow,
.o-btn-sm.arrow {
  --arrow-btn-color: #b5b1ab;
  background: var(--arrow-btn-color);
  border-color: var(--arrow-btn-color);
  border-radius: 20px;
  color: var(--c-white);
  font-weight: 600;
  padding: 8px 50px;
}
.o-btn.arrow::before,
.o-btn-sm.arrow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  display: block;
  border: 1px solid transparent;
  border-right-color: currentColor;
  border-bottom-color: currentColor;
  width: 8px;
  height: 8px;
  margin: auto;
  transform: rotate(315deg);
}
.o-btn.arrow:hover,
.o-btn-sm.arrow:hover {
  background: #a09a92;
  opacity: 1;
}
.o-btn__icon,
.o-btn-sm__icon {
  display: inline-block;
  margin: 0 5px;
}
.o-btn__icon > object,
.o-btn-sm__icon > object {
  width: 1.2em;
  max-height: 1.5em;
  vertical-align: text-bottom;
}

.o-btn {
  display: block;
  width: 100%;
  min-width: 250px;
  max-width: 500px;
  padding: 15px 30px;
}

.o-btn-sm {
  display: inline-block;
  font-size: 0.9em;
  padding: 8px 20px;
}

.o-btn-cart {
  display: inline-block;
  background: #ff4710;
  border-radius: 30px;
  color: var(--c-white);
  font-weight: 600;
  text-align: center;
  min-width: 300px;
  padding: 12px 50px;
}
.o-btn-cart:hover {
  color: var(--c-white);
}

.o-item {
  position: relative;
  background: var(--c-white);
  border-radius: 16px;
  text-align: center;
  width: var(--card-2Width);
}
.o-item .o-badge {
  position: absolute;
  top: 0;
  left: 20px;
}
.o-item__img img {
  border-radius: 16px 16px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 200px;
}
.o-item__desc {
  padding: 10px 10px 15px;
}
.o-item__desc .shop {
  color: var(--c-gray);
  font-size: 1.2rem;
}
.o-item__desc .name {
  color: var(--c-black);
  font-size: 1.4rem;
  margin: 0 0 5px;
}
.o-item__desc .price {
  color: var(--key-A-main);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 5px 0 10px;
}

.o-select {
  position: relative;
  min-width: 250px;
  height: auto;
  padding: 12px 20px;
  cursor: pointer;
}
.o-select:focus {
  border-color: var(--key-A-main);
}
.o-select:invalid {
  color: var(--c-gray);
}

.o-spin {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.o-spin .current {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  width: 50px;
}
.o-spin .current:focus {
  border-color: var(--key-A-main);
}
.o-spin .down,
.o-spin .up {
  position: relative;
  background: var(--bg-nav);
  border-radius: 5px;
  width: 30px;
  height: 30px;
  padding: 10px;
  cursor: pointer;
}
.o-spin .down:hover,
.o-spin .up:hover {
  opacity: 1;
}
.o-spin .down.invalid,
.o-spin .up.invalid {
  background: var(--bg-gray);
  border-color: var(--c-gray);
  cursor: auto;
}
.o-spin .down.invalid::before, .o-spin .down.invalid::after,
.o-spin .up.invalid::before,
.o-spin .up.invalid::after {
  opacity: 0.3;
}
.o-spin .down::before,
.o-spin .up::before,
.o-spin .up::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  background: var(--c-black);
  width: 10px;
  height: 1px;
  margin: auto;
}
.o-spin .up::after {
  transform: rotate(90deg);
}

.o-shop-photo img {
  box-shadow: 0 0 0 5px var(--bg-linear);
}
.o-shop-photo.symbol {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2040%2040%22%20fill%3D%22%232baac1%22%3E%3Cpath%20d%3D%22M16.8%2034.7c-.3%200-.5%200-.8-.1l-12.6-4c-1.3-.4-2-1.8-1.6-3.1.4-1.3%201.8-2%203.1-1.6l12.6%204c1.3.4%202%201.8%201.6%203.1-.2%201-1.2%201.7-2.3%201.7zM26.9%2023.6c-.7%200-1.4-.3-1.9-.8l-8.3-9.2c-.9-1-.9-2.6.2-3.5%201-.9%202.6-.9%203.5.2l8.3%209.2c.9%201%20.9%202.6-.2%203.5-.4.4-1%20.6-1.6.6zM36.8%2017.3c-1.3%200-2.4-1-2.5-2.3L33.2%203.4C33%202%2034%20.8%2035.4.7c1.4-.1%202.6.9%202.7%202.2l1.1%2011.7c.1%201.4-.9%202.6-2.2%202.7h-.2z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 25px;
  padding: 5px;
}

@media (min-width: 800px) {
  .o-item {
    width: var(--card-3Width);
  }
  .o-item__img img {
    height: 164px;
  }
  .o-item__desc .shop {
    font-size: 1.3rem;
  }
  .o-item__desc .name {
    font-size: 1.7rem;
  }
  .o-item__desc .price {
    font-size: 1.8rem;
  }
}
@media (min-width: 1020px) {
  .o-item.col-4 {
    width: var(--card-4Width);
  }
}
/* ---------- Utility ---------- */
.hidden {
  display: none !important;
}

.overflow-hidden {
  overflow: hidden;
}

.no-spin::-webkit-inner-spin-button,
.no-spin::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

.c-gray {
  color: var(--c-gray);
}

.c-red {
  color: var(--c-red);
}

.c-key {
  color: var(--key-A-main);
}

.c-blue {
  color: var(--key-B-main);
}

.bg-key-A {
  background: var(--bg-key-A);
}

.bg-key-B {
  background: var(--bg-key-B);
}

.bg-blue {
  background: var(--bg-blue);
}

.bg-white {
  background: var(--c-white);
}

.bg-stripe {
  --bg-linear: #def2f2;
  background: repeating-linear-gradient(-45deg, var(--c-white), var(--c-white) 6px, var(--bg-linear) 6px, var(--bg-linear) 12px);
}

.rounded {
  border-radius: 10px;
}

.oval {
  border-radius: 3rem;
}

.circle {
  border-radius: 100%;
}

.object-fill {
  -o-object-fit: fill;
     object-fit: fill;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-none {
  -o-object-fit: none;
     object-fit: none;
}

.font-xs {
  font-size: 0.5em;
}

.font-sm {
  font-size: 0.8em;
}

.font-lg {
  font-size: 1.45em;
}

.font-xl {
  font-size: 2em;
}

.font-bold {
  font-weight: 700;
}

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

.text-left {
  text-align: left;
}

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

.p5 {
  padding: 5px;
}

.p10 {
  padding: 10px;
}

.p20 {
  padding: 20px;
}

.p30 {
  padding: 30px;
}

.px10 {
  padding-left: 10px;
  padding-right: 10px;
}

.px20 {
  padding-left: 20px;
  padding-right: 20px;
}

.px30 {
  padding-left: 30px;
  padding-right: 30px;
}

.py10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.m0 {
  margin: 0;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt50 {
  margin-top: 50px;
}

.mb0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml5 {
  margin-left: 5px;
}

.mr20 {
  margin-right: 20px;
}

.my30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.mx20 {
  margin-left: 20px;
  margin-right: 20px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1019px) {
  .sp\:px10 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media ( width < 750px ) {
  .sp\:hidden {
    display: none;
  }
}
@media ( width < 1030px ) {
  .tb\:hidden {
    display: none;
  }
  .tb\:px10 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .tb\:px20 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media ( 1030px <= width ) {
  .pc\:hidden {
    display: none;
  }
  .pc\:rounded {
    border-radius: 10px;
  }
  .pc\:p10 {
    padding: 10px;
  }
  .pc\:p30 {
    padding: 30px;
  }
  .pc\:px20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pc\:px50 {
    padding-left: 50px;
    padding-right: 50px;
  }
  .pc\:mt30 {
    margin-top: 30px;
  }
  .pc\:mb20 {
    margin-bottom: 20px;
  }
}
body.LC_Page_Index .p-index-mv .swiper-wrapper > li {
  margin-bottom: 0;
}
body.LC_Page_Index .p-index-mv .swiper-pagination {
  --swiper-pagination-bullet-size: 10px;
  bottom: 10px;
}
body.LC_Page_Index .p-index-mv .swiper-pagination-bullet-active {
  --swiper-theme-color: var(--c-black);
  opacity: 0.8;
}

body.LC_Page_Products_Detail .p-products-catetory dt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232.235%22%20height%3D%2285%22%3E%3Cpath%20data-name%3D%22Icon%20material-keyboard-arrow-down%22%20d%3D%22M0%2075.013%2019.924%2042.5%200%209.988%206.134%200l26.1%2042.5L6.134%2085Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center right 10%;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 20px 50px 20px 0;
}
body.LC_Page_Products_Detail .p-products-catetory dd {
  margin: 2px 6px;
}
body.LC_Page_Products_Detail .p-products-catetory dd.current .o-label {
  background: var(--key-B-main);
  border-color: var(--key-B-main);
  color: var(--c-white);
  font-weight: 600;
  opacity: 1;
}
body.LC_Page_Products_Detail .p-products-catetory dd.current .o-label:hover {
  background: #2897ab;
}
body.LC_Page_Products_Detail .p-product-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  --swiper-theme-color: #adadad;
  --swiper-navigation-size: 26px;
}
body.LC_Page_Products_Detail .p-product-info .swiper {
  border: 1px solid var(--bg-nav);
  border-radius: 16px;
  max-width: 502px;
  height: 377px;
}
body.LC_Page_Products_Detail .p-product-info .swiper-slide img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
body.LC_Page_Products_Detail .p-product-info .swiper-thumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
body.LC_Page_Products_Detail .p-product-info .swiper-thumb .thumb-item {
  border: 1px solid var(--bg-nav);
  border-radius: 6px;
  overflow: hidden;
  width: calc((100% - 40px) / 5);
  height: 50px;
  margin: 0;
  opacity: 0.6;
  cursor: pointer;
}
body.LC_Page_Products_Detail .p-product-info .swiper-thumb .thumb-item.swiper-pagination-bullet-active {
  opacity: 1;
}
body.LC_Page_Products_Detail .p-product-info .swiper-thumb .thumb-item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
body.LC_Page_Products_Detail .p-product-info .swiper-button-next, body.LC_Page_Products_Detail .p-product-info .swiper-button-prev {
  top: 28%;
  height: calc(var(--swiper-navigation-size) * 6);
}
body.LC_Page_Products_Detail .p-product-info .swiper-button-next {
  right: 5px;
}
body.LC_Page_Products_Detail .p-product-info .swiper-button-prev {
  left: 5px;
}
body.LC_Page_Products_Detail .p-product-info .detail h1 {
  border-bottom: 2px solid var(--key-A-main);
  padding: 5px 2px;
}
body.LC_Page_Products_Detail .p-product-seller {
  padding: 50px 15px;
}
body.LC_Page_Products_Detail .p-product-seller__inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  background: var(--c-white);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
body.LC_Page_Products_Detail .p-product-seller__photo img {
  box-shadow: 0 0 0 5px var(--bg-linear);
  width: 150px;
  height: 150px;
}
body.LC_Page_Products_Detail .p-product-otheritem {
  padding: 0 10px;
}

@media (max-width: 1019px) {
  body.LC_Page_Products_Detail .p-products-catetory dd:not(.current) {
    display: none;
  }
  body.LC_Page_Products_Detail .p-product-seller__text {
    width: 100%;
  }
}
@media (min-width: 1020px) {
  body.LC_Page_Products_Detail .p-product-info {
    grid-template-columns: 1fr 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }
  body.LC_Page_Products_Detail .p-product-info .swiper-thumb .thumb-item {
    width: calc((100% - 50px) / 6);
    height: 60px;
  }
  body.LC_Page_Products_Detail .p-product-seller {
    border-radius: 24px;
    padding: 30px;
    margin: 0 10px 50px;
  }
  body.LC_Page_Products_Detail .p-product-seller__inner {
    grid-template-columns: 180px 1fr;
  }
  body.LC_Page_Products_Detail .p-product-otheritem {
    padding: 0 30px;
  }
}
.p-shop-info {
  border-radius: 16px;
  overflow: hidden;
}
.p-shop-info h1 {
  position: relative;
  background: var(--key-B-main);
  color: var(--c-white);
  padding: 12px 12px 12px 65px;
}
.p-shop-info h1::before {
  content: url(../img/common/icon_shop.svg);
  position: absolute;
  top: 0.6em;
  left: 20px;
  display: block;
  width: 35px;
  margin-right: 5px;
}
.p-shop-info .o-shop-photo {
  position: relative;
  flex-shrink: 0;
}
.p-shop-info .o-shop-photo img {
  width: 150px;
  height: 150px;
}
.p-shop-info__contacts {
  border-top: 1px solid var(--border-gray);
  padding: 20px 10px 0 10px;
  margin-top: 20px;
}
.p-shop-info__contacts a {
  word-break: break-all;
}

.p-shop-list__item {
  position: relative;
  background: #e6f2f2;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  transition: 0.3s;
}
.p-shop-list__item:hover {
  background: #def2f2;
}
.p-shop-list__item .inner {
  display: block;
  color: var(--c-black);
  padding: 15px 20px 10px;
}
.p-shop-list__item .inner:hover {
  color: var(--c-link);
  opacity: 1;
}
.p-shop-list__item .name {
  display: flex;
  align-items: center;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2040%2040%22%20fill%3D%22%232baac1%22%3E%3Cpath%20d%3D%22M16.8%2034.7c-.3%200-.5%200-.8-.1l-12.6-4c-1.3-.4-2-1.8-1.6-3.1.4-1.3%201.8-2%203.1-1.6l12.6%204c1.3.4%202%201.8%201.6%203.1-.2%201-1.2%201.7-2.3%201.7zM26.9%2023.6c-.7%200-1.4-.3-1.9-.8l-8.3-9.2c-.9-1-.9-2.6.2-3.5%201-.9%202.6-.9%203.5.2l8.3%209.2c.9%201%20.9%202.6-.2%203.5-.4.4-1%20.6-1.6.6zM36.8%2017.3c-1.3%200-2.4-1-2.5-2.3L33.2%203.4C33%202%2034%20.8%2035.4.7c1.4-.1%202.6.9%202.7%202.2l1.1%2011.7c.1%201.4-.9%202.6-2.2%202.7h-.2z%22%2F%3E%3C%2Fsvg%3E"), url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22231.066%22%20height%3D%22105.869%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M95.462%208.587c-16.93-.414-34.511-2.915-50.984-4.4C23.643%203.981%207.897%2022.425%201.821%2040.158c-7.111%2033.88%206.775%2058.832%2038.688%2064.893%2020.99%203.986%2055.754-7.956%2072.229-7.981%2030.018%202.25%2064.512%2014.677%2092.439%201.043%2017.879-10.317%2040.574-62.74%2013.106-84.155s-42.98-11.712-61.918-12.086c-11.602-.229-50.746%206.964-60.903%206.715Z%22%20%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 25px, 80% 110px;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 10px 100px 10px 20px;
  height: 110px;
}
.p-shop-list__item .photo {
  position: absolute;
  top: 30px;
  right: 20px;
}
.p-shop-list__item .photo img {
  background: var(--c-white);
  box-shadow: 0 0 0 5px #bbd8d8;
  width: 80px;
  height: 80px;
}
.p-shop-list__item .text {
  font-size: 1.1rem;
  margin: 10px 0 5px;
}

@media (min-width: 1020px) {
  .p-shop-info h1 {
    padding-left: 80px;
  }
  .p-shop-info h1::before {
    left: 30px;
  }
  .p-shop-info .o-shop-photo {
    background-size: 40px;
    padding: 10px;
  }
  .p-shop-info .o-shop-photo img {
    width: 180px;
    height: 180px;
  }
  .p-shop-info__text {
    padding-top: 20px;
  }
  .p-shop-list__item {
    display: block;
    border-radius: 16px;
    width: calc((100% - 20px) / 2);
    min-width: 380px;
  }
  .p-shop-list__item .inner {
    padding: 20px 20px 10px;
  }
  .p-shop-list__item .name {
    font-size: 1.7rem;
    background-size: 25px, 80% 130px;
    padding: 10px 110px 10px 20px;
    height: 130px;
  }
  .p-shop-list__item .photo {
    top: 30px;
    right: 20px;
  }
  .p-shop-list__item .photo img {
    width: 100px;
    height: 100px;
  }
  .p-shop-list__item .text {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=style.css.map */