@charset "UTF-8";
#privacy dl > dt {
  padding: 0;
  margin: 1.111em 0;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: left;
  line-height: 1.4;
}
#privacy dl > dt:first-child {
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  #privacy dl > dt {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

#inquiryCompleteSection a {
  display: inline-block;
  padding: 0 1.666em;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 4.166em;
  height: 4.166em;
  min-width: 25em;
  text-align: center;
  text-decoration: none;
  color: var(--font-clr2);
  background: var(--main-clr);
  border-radius: 0;
  opacity: 1 !important;
  transition: 0.5s opacity;
  box-sizing: border-box;
}
#inquiryCompleteSection a:hover {
  cursor: pointer;
  opacity: 0.5 !important;
  transition: 0.5s opacity;
}

html {
  font-size: 100%;
  font-size: 62.5%;
}

body {
  padding: 0;
  margin: 0;
  border: 0;
  letter-spacing: 0.075em;
  font-family: "Lato", "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ", "メイリオ", sans-serif;
  font-feature-settings: "palt";
  color: var(--font-clr);
  background: #fff;
}

ul, li, dt, dd, p, h1, h2, h3, h4, h5, h6 {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  font-size: 12px;
  font-size: 1.2rem;
}

a {
  color: inherit;
}
a:link, a:visited {
  opacity: 1;
}
a:hover, a:active {
  transition: 0.5s opacity;
}

:root {
  --box-bg-clr:#EDEDED;
  --bg-clr:#fff;
  --clr-red: #EF6C6E;
  --comingsoon: #90CF80;
  --community: #E7AF5B;
  --takeout: #AB99BD;
  --preOrder:#9a9fe2;
  --lottery:#79BFC3;
  --discount: #C36F6F;
}

@media (prefers-color-scheme: dark) {
  :root {
    --font-clr: #ddd;
    --bg-clr: #222;
  }
}
body {
  color: var(--main-text);
  background-color: var(--bg-clr);
}

input,
button,
option {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.mincho, .mincho input, .mincho textarea, .mincho select, .mincho button {
  font-family: "Noto Serif JP", "Yu Mincho Medium", "游明朝 Medium", "YuMincho", "游明朝体", serif !important;
}
.gothic, .gothic input, .gothic textarea, .gothic select, .gothic button {
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体" !important;
}
.ff-crimson, .logo-crimson {
  font-family: "Crimson Text", "Noto Serif JP", "Noto Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.ff-pet, .logo-pet {
  font-family: "Petit Formal Script", "Noto Serif JP", "Noto Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.ff-jost, .logo-jost {
  font-family: "Jost", "Noto Sans JP", "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.ff-glegoo, .logo-glegoo {
  font-family: "Glegoo", "Noto Sans JP", "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ff-noto-serif, .logo-noto-serif {
  font-family: "Noto Serif JP", "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.ff-noto-sans, .logo-noto-sans {
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.num-rubik {
  font-family: "Rubik", "Noto Sans JP", "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.num-oswald {
  font-family: "Oswald", "Noto Sans JP", "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.num-crimson {
  font-family: "Crimson Text", "Noto Serif JP", "Noto Serif", serif;
  font-weight: bold;
  font-style: normal;
}

.wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .wrapper {
    margin: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .wrapper {
    font-size: 10px;
    font-size: 1rem;
    margin: 4em auto;
  }
}
.wrapper .nav-wrapper {
  order: 2;
}
.wrapper .main {
  order: 1;
}
@media only screen and (min-width: 1200px) {
  .wrapper {
    max-width: 148em;
    display: flex;
    gap: clamp(40px, 4vw, 80px);
    flex-direction: row;
  }
  .wrapper .nav-wrapper {
    order: 1;
    max-width: 20em;
    min-width: calc(16.6666666667% - 80px);
  }
  .wrapper main {
    flex: 1;
    order: 2;
  }
}

#pageIndex main section + section {
  margin-top: 50px;
}
@media only screen and (min-width: 1200px) {
  #pageIndex main section + section {
    margin-top: 100px;
  }
}

h1.ttl {
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  h1.ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

h2.ttl,
h3.ttl {
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  h2.ttl,
h3.ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

h3.ttl {
  margin-bottom: 40px;
}

.s-ttl {
  font-weight: bold;
}

.header {
  background: rgba(var(--header-bg-clr));
  z-index: 20;
  min-height: 40px;
  border-bottom: 1px solid rgba(var(--header-clr), 0.2);
  display: grid;
  place-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
@media only screen and (min-width: 768px) {
  .header {
    min-height: 80px;
  }
}
@media only screen and (min-width: 1200px) {
  .header {
    min-height: 80px;
  }
}
.header .logo {
  font-size: 20px;
  font-size: 2rem;
  color: rgba(var(--header-clr));
  margin: 0 auto;
  width: 60%;
  max-width: calc(100% - 180px);
  padding: 5px 0;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .header .logo {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .header .logo {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.header .logo a {
  text-decoration: none;
}
.header .logo.logo-pet {
  letter-spacing: -0.01em;
}

.sp-nav {
  background: rgba(var(--sp-nav-bg-clr));
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  padding: 30px;
  height: 100vh;
  transition: left 0.3s ease;
  z-index: 100;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE・Edge 非表示 */
  scrollbar-width: none; /* Firefox 非表示 */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-overflow-scrolling: touch; /* iOSの慣性スクロール用 */
  touch-action: auto;
}
@media only screen and (min-width: 768px) {
  .sp-nav {
    font-size: 12px;
    font-size: 1.2rem;
    max-width: 30em;
  }
}
.sp-nav::-webkit-scrollbar {
  display: none; /* Chrome, Safari 非表示 */
}
.sp-nav.open {
  left: 0;
}
.sp-nav nav {
  padding-bottom: 150px;
}
.sp-nav nav .s-ttl,
.sp-nav nav .category-nav {
  color: rgba(var(--sp-nav-clr));
}
.sp-nav nav .s-ttl a,
.sp-nav nav .category-nav a {
  text-decoration: none;
}
.sp-nav nav .s-ttl a:hover,
.sp-nav nav .category-nav a:hover {
  text-decoration: underline;
}
.sp-nav .search-wrap {
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(var(--sp-nav-clr));
  margin-bottom: 50px;
}
.sp-nav .search-wrap form {
  padding: 0;
}
.sp-nav .search-wrap svg {
  width: 12px;
  height: 12px;
}
.sp-nav .search-wrap #search-text {
  padding: 10px 5px;
  color: rgba(var(--sp-nav-clr));
}
.sp-nav .search-wrap #search-text::-moz-placeholder {
  color: rgba(var(--sp-nav-clr));
}
.sp-nav .search-wrap #search-text::placeholder {
  color: rgba(var(--sp-nav-clr));
}
.sp-nav .search-wrap #search-text:-webkit-autofill {
  box-shadow: 0 0 0px 1000px rgba(var(--sp-nav-bg-clr)) inset;
  -webkit-box-shadow: 0 0 0px 1000px rgba(var(--sp-nav-bg-clr)) inset;
  -webkit-text-fill-color: rgba(var(--sp-nav-clr));
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s; /* autofill対策用ハック */
}
.sp-nav .category-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  gap: 40px 20px;
}
.sp-nav .category-wrap .category-box {
  width: calc((100% - 20px) / 2);
}
.sp-nav .category-nav {
  margin-bottom: 0;
}
.sp-nav .category-nav li::before {
  background: rgb(var(--sp-nav-clr));
}
.sp-nav .mailmagazine {
  position: relative;
  color: rgb(var(--sp-nav-clr));
  background: transparent;
  margin-top: 50px;
  border: 1px solid rgba(var(--sp-nav-clr), 0.2);
}
.sp-nav .mailmagazine > p {
  color: rgb(var(--sp-nav-clr));
}
.sp-nav .mailmagazine::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--sp-nav-bg-clr), 0.3);
  mix-blend-mode: multiply;
  z-index: -1;
}

.nav-wrapper .category-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  gap: 40px 10px;
}
.nav-wrapper .category-wrap:last-of-type {
  margin-bottom: 0;
}
.nav-wrapper .category-wrap .category-box {
  width: calc((100% - 10px) / 2);
}

@media only screen and (min-width: 1200px) {
  .nav-wrapper .category-wrap {
    flex-wrap: nowrap;
    gap: 0;
    flex-direction: column;
  }
  .nav-wrapper .category-wrap .category-box {
    width: 100%;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.header-icon-wrapper {
  position: absolute;
  right: 10px;
  top: calc(50% - 15px);
  display: flex;
  gap: 5px;
}
@media only screen and (min-width: 768px) {
  .header-icon-wrapper {
    right: 40px;
    gap: 15px;
  }
}
.header-icon-wrapper #baseMenu .base {
  display: none;
}
.header-icon-wrapper #baseMenu .cart svg {
  width: 35px;
  height: 31px;
}
.header-icon-wrapper .mypage svg {
  width: 35px;
  height: 30px;
}

.menu-btn {
  position: absolute;
  zoom: 0.4;
  left: 40px;
  top: 50%;
  z-index: 150;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
  .menu-btn {
    left: 80px;
  }
}

.close {
  display: none;
  z-index: 100;
  top: 20px;
  left: calc(80% + 20px);
  position: fixed;
  width: 30px;
  height: 30px;
  transition: all 1s;
}
.close.active {
  display: block;
}
.close:hover {
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .close {
    left: 380px;
  }
}

#open {
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  width: 50px;
  height: 44px;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
#open span {
  display: inline-block;
  box-sizing: border-box;
}
#open:focus:not(:focus-visible) {
  outline: none;
}
#open::before, #open::after {
  content: "";
}
#open::before, #open::after, #open span {
  position: absolute;
  width: 100%;
  height: 4px;
  background: rgba(var(--header-clr));
  border-radius: 4px;
}
#open::before {
  top: 3px;
  left: 8px;
  transform-origin: 0 0;
  transform: rotate(45deg) scaleX(0);
  transition: 0.2s;
}
#open::after {
  top: 3px;
  right: 9px;
  transform-origin: 100% 0;
  transform: rotate(-45deg) scaleX(0);
  transition: 0.2s 0.2s;
}
#open span:nth-of-type(-n+3) {
  left: 0;
  transition: 0.2s 0.4s;
}
#open span:nth-of-type(1) {
  top: 0;
}
#open span:nth-of-type(2) {
  top: 20px;
}
#open span:nth-of-type(3) {
  bottom: 0;
}
#open.active::before {
  transform: rotate(45deg) scaleX(1);
  transition-delay: 0.8s;
}
#open.active::after {
  transform: rotate(-45deg) scaleX(1);
  transition-delay: 1s;
}
#open.active span:nth-of-type(-n+3) {
  transform: translateX(20px);
  transition: 0.4s cubic-bezier(0.68, -2, 0.32, 1.6);
  opacity: 0;
}
#open.active span:nth-of-type(2) {
  transition-delay: 0.1s;
}
#open.active span:nth-of-type(3) {
  transition-delay: 0.3s;
}

.cart {
  position: relative;
}

.cart-badge {
  display: block !important;
}

.cart-qty {
  position: absolute;
  top: -2px;
  right: 1px;
  padding: 0 1px;
  min-width: 15px;
  height: 15px;
  background: rgba(var(--btn-bg-clr));
  border-radius: 50%;
  color: rgba(var(--btn-clr));
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

/*スマホナビスクロール*/
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.nav-wrapper {
  padding: 50px 30px 30px 30px;
  color: #fff;
  background: rgba(var(--header-bg-clr));
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .nav-wrapper {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .nav-wrapper {
    display: block;
    padding: 0;
    margin-top: 0;
    background: transparent;
    color: rgb(var(--font-clr));
  }
}

nav .s-ttl {
  margin-bottom: 10px;
}
nav .s-ttl a {
  text-decoration: none;
}
nav .s-ttl a:hover {
  text-decoration: underline;
}
nav .category-nav {
  margin-bottom: 50px;
}
nav .category-nav li {
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 1.5em;
}
nav .category-nav li a {
  text-decoration: none;
}
nav .category-nav li a:hover {
  text-decoration: underline;
}
nav .category-nav li::before {
  content: "";
  display: block;
  width: 5px;
  height: 1px;
  left: 0.5em;
  top: 8px;
  position: absolute;
  background: #FFF;
}
@media only screen and (min-width: 1200px) {
  nav .category-nav li::before {
    background: rgb(var(--font-clr));
  }
}

.banner-area {
  display: flex;
  margin: 0 0 50px 0;
  gap: 2%;
}
.banner-area figure {
  width: 100%;
  margin: 0;
  padding: 0;
}
.banner-area figure img {
  width: 100%;
  vertical-align: bottom;
}
@media only screen and (min-width: 1200px) {
  .banner-area {
    display: block;
  }
  .banner-area figure {
    width: 100%;
    margin: 0 0 20px 0;
  }
}

.mailmagazine {
  border-radius: 3px;
  padding: 15px;
  margin-bottom: 30px;
  width: 100%;
  position: relative;
  color: rgba(var(--header-clr));
}
.mailmagazine::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--sp-nav-bg-clr), 0.1);
  border: 1px solid rgba(var(--sp-nav-clr), 1);
  mix-blend-mode: multiply;
  pointer-events: none;
}
@media only screen and (min-width: 1200px) {
  .mailmagazine::before {
    display: none;
  }
}
.mailmagazine .x_mailMagazineSubscribe_field {
  display: flex;
  overflow: hidden;
  background: #FFF;
  align-items: center;
  margin: 10px 0 0 0;
  z-index: 5;
  position: relative;
  color: #222;
}
.mailmagazine .x_mailMagazineSubscribe_input {
  width: 100%;
  padding: 5px 8px 5px 5px;
  font-size: 16px;
  background: #fff;
}
@media only screen and (min-width: 1200px) {
  .mailmagazine .x_mailMagazineSubscribe_input {
    font-size: 14px;
  }
}
.mailmagazine button {
  width: 10px;
  margin: 0 5px;
}
.mailmagazine button svg {
  width: 10px;
  height: 10px;
}

@media only screen and (min-width: 1200px) {
  .nav-wrapper .mailmagazine {
    background: rgba(var(--main-clr), 0.1);
    color: rgb(var(--font-clr));
    border: 1px solid rgba(var(--main-clr), 0.2);
  }
  .nav-wrapper .mailmagazine::before {
    display: none !important;
  }
  .nav-wrapper .mailmagazine p {
    color: rgba(var(--font-clr));
  }
  .bg-darkcolor .nav-wrapper .mailmagazine {
    background: rgba(var(--font-clr), 0.15) !important;
    border: none;
  }
  .bg-darkcolor .nav-wrapper .mailmagazine input {
    color: rgb(0, 0, 0) !important;
    background: rgb(255, 255, 255) !important;
  }
  .bg-img .nav-wrapper .mailmagazine {
    background: rgba(var(--font-clr), 0.15) !important;
    border: none;
  }
  .bg-img .nav-wrapper .mailmagazine input {
    color: rgb(0, 0, 0) !important;
    background: rgb(255, 255, 255) !important;
  }
}
.nav-wrapper > .search-wrap {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .nav-wrapper > .search-wrap {
    display: block;
    background: rgba(var(--main-clr), 0.1);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 30px;
  }
  .nav-wrapper > .search-wrap form {
    display: flex;
    align-items: center;
    padding: 0 10px;
  }
  .nav-wrapper > .search-wrap #search-text {
    padding: 10px 5px;
    color: rgba(var(--font-clr));
  }
  .nav-wrapper > .search-wrap #search-text ::-moz-placeholder {
    color: rgba(var(--font-clr));
  }
  .nav-wrapper > .search-wrap #search-text ::placeholder {
    color: rgba(var(--font-clr));
  }
  .nav-wrapper > .search-wrap #search-text:-webkit-autofill {
    box-shadow: 0 0 0 0 rgba(var(--main-clr), 0.1) inset;
    -webkit-box-shadow: 0 0 0 0 rgba(var(--main-clr), 0.1) inset;
    -webkit-text-fill-color: rgba(var(--font-clr));
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s; /* autofill対策用ハック */
  }
  .nav-wrapper > .search-wrap svg {
    width: 14px;
    height: 14px;
  }
}

.bg-darkcolor .nav-wrapper .search-wrap {
  border: 1px solid rgba(var(--font-clr), 0.5);
}
.bg-darkcolor .payment .payment-list li {
  background: rgba(var(--font-clr), 0.1);
}

footer {
  border-top: 1px solid rgba(var(--main-clr), 0.3);
  padding: 30px 0;
}
footer.message-app {
  padding: 30px 30px 100px 30px;
}
@media only screen and (min-width: 1200px) {
  footer.message-app {
    padding: 30px 100px 30px 40px;
  }
}
@media only screen and (min-width: 1200px) {
  footer {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
  }
  footer .sns {
    margin: 0;
    align-items: center;
  }
  footer .right {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  footer .right .foot-bottom {
    margin: 0;
  }
}

.sns {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.sns li {
  width: auto;
  height: auto;
}
.sns li svg {
  width: 20px;
  height: 20px;
}

#i18 {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#i18::before, #i18::after {
  content: normal;
}
#i18 .lang,
#i18 .currency {
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
  position: relative;
}
#i18 select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 90px;
  padding: 10px;
  color: rgba(var(--font-clr));
  border: 1px solid rgba(var(--font-clr), 0.5);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
#i18 select option {
  color: rgba(var(--font-clr));
  background: var(--bg-clr);
}
#i18 select:focus {
  outline: none;
}
#i18 .input {
  position: relative;
  width: 90px;
}
#i18 .input::before {
  position: absolute;
  top: 15px;
  right: 10px;
  content: "";
  width: 8px;
  height: 6px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: rgba(var(--font-clr), 0.5);
  pointer-events: none;
}

.foot-bottom {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.foot-bottom .cart {
  display: none;
}
.foot-bottom .base {
  width: 20px;
  height: 20px;
}
.foot-bottom .base img {
  width: 100%;
  height: auto;
}

small {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
  color: var(--font-clr);
}

.invert-logo {
  filter: invert(100%);
}

.bg-img .sns li,
.bg-img #baseMenu li.base {
  padding: 10px;
  border: 1px solid rgba(var(--font-clr), 0.5);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
}
.bg-img #baseMenu li.base {
  padding: 5px !important;
  height: 38px !important;
  width: 38px !important;
}
.bg-img #i18 select,
.bg-img #i18 option {
  color: rgb(34, 34, 34);
  background: rgba(255, 255, 255, 0.5);
}
.bg-img #i18 .input::before {
  background-color: rgba(34, 34, 34, 0.5);
}

.bg-darkcolor footer {
  border-top: 1px solid rgba(var(--font-clr), 0.15);
}
.bg-darkcolor select {
  background: rgba(var(--font-clr), 0.15) !important;
}

.bnr-float {
  font-size: 10px;
  font-size: 1rem;
  position: fixed;
  bottom: 2em;
  right: 2em;
  z-index: 50;
  display: none;
}
.bnr-float img {
  width: auto;
  height: auto;
  max-width: 15em;
  max-height: 15em;
}
.bnr-float .bnr-float-close {
  display: block;
  position: absolute;
  right: -1.5em;
  top: -1.5em;
  width: 3.5em;
  height: 3.5em;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg id="a" xmlns="http%3A//www.w3.org/2000/svg" viewBox="0 0 35 35"%3E%3Ccircle cx="17.5" cy="17.5" r="12.5" style="fill%3A%23444; stroke-width%3A0px;"/%3E%3Cpath d="m18.914,17.5l4.293-4.293c.391-.391.391-1.023,0-1.414s-1.023-.391-1.414,0l-4.293,4.293-4.293-4.293c-.391-.391-1.023-.391-1.414,0s-.391,1.023,0,1.414l4.293,4.293-4.293,4.293c-.391.391-.391,1.023,0,1.414.195.195.451.293.707.293s.512-.098.707-.293l4.293-4.293,4.293,4.293c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023,0-1.414l-4.293-4.293Z" style="fill%3A%23fff; stroke-width%3A0px;"/%3E%3C/svg%3E') center center no-repeat;
  transition: opacity 0.5s;
  opacity: 1;
}
.bnr-float .bnr-float-close:hover {
  cursor: pointer;
  transition: opacity 0.5s;
  opacity: 0.75;
}
@media only screen and (min-width: 768px) {
  .bnr-float {
    bottom: 3em;
    right: 3em;
    transform: translateX(0);
  }
  .bnr-float img {
    max-width: 20em;
    max-height: 20em;
  }
}

.message-app .bnr-float {
  font-size: 10px;
  font-size: 1rem;
  bottom: 10em;
}
@media only screen and (min-width: 768px) {
  .message-app .bnr-float {
    bottom: 10em;
  }
}

.ttl {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
}
@media only screen and (min-width: 1200px) {
  .ttl {
    text-align: left;
    font-size: 36px;
    font-size: 3.6rem;
  }
}

.s-ttl {
  font-size: 14px;
  font-size: 1.4rem;
  position: relative;
  font-weight: normal;
}

.bread-wrap {
  font-size: 10px;
  font-size: 1rem;
  margin: 20px;
  overflow-x: auto;
  padding: 0;
  position: relative;
}
.bread-wrap::-webkit-scrollbar {
  display: none;
}
@media only screen and (min-width: 768px) {
  .bread-wrap {
    margin: 0 0 40px 0;
  }
}

.breadcrumb {
  font-size: 10px;
  font-size: 1rem;
  display: flex;
  gap: 15px;
}
.breadcrumb li {
  font-size: 10px;
  font-size: 1rem;
  position: relative;
}
.breadcrumb li + li::before {
  content: "";
  display: block;
  border-left: 1px solid rgba(var(--font-clr));
  opacity: 0.5;
  width: 1px;
  margin-top: 2px;
  height: 100%;
  margin-right: 15px;
}
.breadcrumb li a {
  display: inline;
  text-decoration: none;
  color: var(--font-clr);
}
.breadcrumb li svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

body {
  color: rgba(var(--font-clr));
}

.fade-wrapper {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.fade-wrapper.is-visible {
  opacity: 1;
}

.itemlist {
  display: flex;
  gap: 1px;
}
h2.ttl + .itemlist {
  margin-top: 40px;
}
.itemlist:not(.splide__list) {
  flex-wrap: wrap;
  width: 100%;
}
.itemlist.sp-col2 li {
  width: calc(50% - 1px);
}
.itemlist, .itemlist.sp-col3 li {
  width: calc(33.3333333333% - 1px);
}
@media only screen and (min-width: 768px) {
  .itemlist, .itemlist.pc-col6 li {
    width: calc(16.6666666667% - 1px);
  }
  .itemlist.pc-col4 li {
    width: calc(25% - 1px);
  }
}
.itemlist li {
  margin: 0 0 30px 0;
  position: relative;
}
.itemlist li .label_image {
  width: 40px;
  height: 40px;
}
.itemlist li a {
  text-decoration: none;
}
.itemlist li figure {
  width: 100%;
  height: auto;
  background: #ccc;
  overflow: hidden;
  position: relative;
  margin: 0;
}
.itemlist li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.itemlist li .data {
  width: calc(100% - 20px);
  margin: 10px 10px 0 10px;
}
.itemlist li .data .item-ttl {
  font-size: 14px;
  font-size: 1.4rem;
}
.itemlist li .data .item-price {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}
.itemlist li .data .item-price::first-letter {
  font-size: 10px;
  font-size: 1rem;
  font-size: 10px;
  font-weight: normal;
  margin-right: 2px;
}
.itemlist li .data .item-price .sale-price {
  color: #EF6C6E;
}

.img-sq figure,
.img-sq .communityImageResize {
  aspect-ratio: 1/1;
}

.img-la-gold figure,
.img-la-gold .communityImageResize {
  aspect-ratio: 1.618/1;
}

.img-la-screen figure,
.img-la-screen .communityImageResize {
  aspect-ratio: 4/3;
}

.img-pt-gold figure,
.img-pt-gold .communityImageResize {
  aspect-ratio: 1/1.618;
}

.img-pt-screen figure,
.img-pt-screen .communityImageResize {
  aspect-ratio: 3/4;
}

.tag-group {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  text-align: right;
}
.tag-group span {
  font-size: 12px;
  font-size: 1.2rem;
  border-radius: 3px 0 0 0;
  padding: 3px 8px;
  color: #fff;
}

.sale-rate {
  background: #EF6C6E;
}

.community-item {
  background: #C7B87B;
}

.pre-order {
  background: #8599d1;
}

.takeout {
  background: #84bd8d;
}

.lottery {
  background: #c796bc;
}

.coming-soon {
  background: #8cdad6;
}

.item-img,
.communityImageContainer {
  position: relative;
}
.item-img .soldout-cover,
.communityImageContainer .soldout-cover {
  font-size: 14px;
  font-size: 1.4rem;
  position: absolute;
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center;
  display: grid;
  place-items: center;
}

#rankingList .rank-item {
  position: relative;
}
#rankingList .rank-item > span {
  position: absolute;
  border-radius: 50%;
  color: #fff;
  width: 30px;
  height: 30px;
  font-weight: bold;
  z-index: 5;
  top: 2px;
  left: 2px;
  background: #CECECE;
}
#rankingList .rank-item > span::before {
  content: "";
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
}
#rankingList .rank-item:nth-child(1) > span {
  background: #C9BA7C;
}
#rankingList .rank-item:nth-child(2) > span {
  background: #B9B9B9;
}
#rankingList .rank-item:nth-child(3) > span {
  background: #CBAEA7;
}
#rankingList .rank-item:nth-child(1) > span::before {
  content: "1";
}
#rankingList .rank-item:nth-child(2) > span::before {
  content: "2";
}
#rankingList .rank-item:nth-child(3) > span::before {
  content: "3";
}
#rankingList .rank-item:nth-child(4) > span::before {
  content: "4";
}
#rankingList .rank-item:nth-child(5) > span::before {
  content: "5";
}
#rankingList .rank-item:nth-child(6) > span::before {
  content: "6";
}
#rankingList .rank-item:nth-child(7) > span::before {
  content: "7";
}
#rankingList .rank-item:nth-child(8) > span::before {
  content: "8";
}
#rankingList .rank-item:nth-child(9) > span::before {
  content: "9";
}
#rankingList .rank-item:nth-child(10) > span::before {
  content: "10";
}

.mv-slider {
  width: 100%;
}
.mv-slider .splide__list {
  padding: 20px 0 10px 0 !important;
  align-items: center;
}
.mv-slider .splide__slide {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.mv-slider .splide__slide img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .mv-slider .splide__slide {
    margin: 0 10px;
  }
  .mv-slider .splide__slide img {
    height: 46rem;
    height: var(--mvheight) !important;
    width: auto;
  }
}

.splide button.splide__pagination__mv-page {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 10px;
  height: 10px;
  background: rgba(var(--header-bg-clr), 0.2);
  margin: 0 5px;
  border-radius: 50%;
  margin-top: 20px;
}
.splide button.splide__pagination__mv-page.is-active {
  background: rgba(var(--header-bg-clr));
}

.splide button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}
.splide button:hover {
  cursor: pointer;
}

.mv {
  position: relative;
}
.mv .splide-prev,
.mv .splide-next {
  display: none;
}
@media only screen and (min-width: 768px) {
  .mv .splide-prev {
    display: block;
    position: absolute;
    left: 0;
    top: calc((100% - 35px) / 2 - 52.5px);
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
  }
  .mv .splide-next {
    display: block;
    position: absolute;
    right: 0;
    top: calc((100% - 35px) / 2 - 52.5px);
    transform: scale(-1, 1);
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
  }
}

.top-error-message,
.blog-fix {
  font-size: 10px;
  font-size: 1rem;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  margin: 2em;
  padding: 1em 2em;
  border-radius: 2px;
}
@media only screen and (min-width: 768px) {
  .top-error-message,
.blog-fix {
    font-size: 12px;
    font-size: 1.2rem;
    margin: 0 0 1.666em 0;
  }
}

.top-error-message {
  background: rgba(var(--clr-red), 0.1);
  color: rgba(var(--clr-red));
}

.blog-fix {
  background: rgba(var(--main-clr), 0.1);
}

.top-info {
  font-size: 10px;
  font-size: 1rem;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  margin: 0 2em;
}
.blog-fix + .top-info, .top-error-message + .top-info {
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .top-info {
    margin: 0;
  }
}

main > .top-info:first-child {
  margin-top: 40px;
}

.top-info-list {
  overflow: hidden;
  display: flex;
}
.top-info-list .info-date {
  font-size: 12px;
  font-size: 1.2rem;
  width: 100px;
  padding: 0.833em 0;
  border-bottom: 1px solid rgba(var(--font-clr), 0.5);
}
.top-info-list .info-ttl {
  font-size: 12px;
  font-size: 1.2rem;
  padding: 0.833em;
  flex: 1;
  border-bottom: 1px solid rgba(var(--font-clr), 0.2);
}

.informationBanner {
  text-decoration: none !important;
}

.bg-darkcolor .blog-fix {
  border: 1px solid rgba(var(--font-clr), 0.2);
}
.bg-darkcolor .top-error-message {
  border: 1px solid rgba(var(--clr-red), 0.2);
}

#pageItem .nav-wrapper select,
#pageItem .sp-nav select,
#pageItem footer select {
  margin-bottom: 0 !important;
  min-width: auto !important;
  height: auto !important;
  line-height: normal !important;
}
#pageItem .nav-wrapper input[type=text],
#pageItem .nav-wrapper .mailmagazine .x_mailMagazineSubscribe_input,
#pageItem .sp-nav input[type=text],
#pageItem .sp-nav .mailmagazine .x_mailMagazineSubscribe_input,
#pageItem footer input[type=text],
#pageItem footer .mailmagazine .x_mailMagazineSubscribe_input {
  margin-bottom: 0 !important;
  color: rgba(var(--font-clr));
  line-height: normal !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  width: 100% !important;
}

.item-wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 20px;
}
@media only screen and (min-width: 768px) {
  .item-wrapper {
    gap: 30px;
    flex-direction: row;
    margin: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .item-wrapper {
    gap: 80px;
    margin: 20px 0;
  }
}
.item-wrapper .item-center {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .item-wrapper .item-center {
    font-size: 10px;
    font-size: 1rem;
    width: 60%;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .item-wrapper .item-center {
    font-size: 10px;
    font-size: 1rem;
    width: 60em;
  }
}
.item-wrapper .item-detail {
  flex: 1;
}
.item-wrapper .item-detail > * + * {
  margin-top: 40px;
}

.item-detail .item-img img {
  width: 100%;
  height: auto;
}
.item-detail .item-ttl {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: normal;
  overflow-wrap: anywhere;
}
.item-detail .sold-out {
  color: #EF6C6E;
  font-size: 16px;
  font-size: 1.6rem;
}
.item-detail .item-price {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}
.item-detail .item-price > p:first-child {
  display: flex;
  align-items: center;
}
.item-detail .item-price .sale-price {
  color: #EF6C6E;
}
.item-detail .item-price .sale-rate {
  background: #EF6C6E;
  color: #fff;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 8px;
}
.item-detail .item-price .normal {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
}
.item-detail .item-price::first-letter {
  font-size: 14px;
  font-size: 1.4rem;
  margin-right: 2px;
}
.item-detail .item-price .default {
  font-size: 24px;
  font-size: 2.4rem;
}
.item-detail .item-price .default::first-letter {
  font-size: 14px;
  font-size: 1.4rem;
}

.ageVerificationWarning {
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.8 !important;
  color: rgba(var(--clr-red)) !important;
}

.attention {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
}

#itemAttention .communityLabel {
  border-radius: 3px;
  border: 1px solid #C7B87B;
  color: rgba(var(--font-clr)) !important;
  background: transparent !important;
  padding: 15px !important;
  margin-bottom: 20px !important;
}
#itemAttention .communityLabel .communityLabel__note {
  margin-top: 10px !important;
}
#itemAttention .communityLabel .communityLabel__title {
  padding-left: 20px;
  font-weight: normal !important;
  position: relative;
}
#itemAttention .communityLabel .communityLabel__title::before {
  position: absolute;
  border-radius: 50px;
  width: 10px;
  height: 10px;
  top: 5px;
  left: 0px;
  background: #C7B87B;
  content: "";
  display: block;
}

#itemAttention .takeout {
  font-size: 14px;
  font-size: 1.4rem;
  border-radius: 3px;
  border: 1px solid #84bd8d;
  color: rgba(var(--font-clr)) !important;
  background: transparent !important;
  padding: 15px !important;
  margin-bottom: 20px;
}
#itemAttention .takeout .takeout__label {
  padding-left: 20px;
  font-weight: normal !important;
  position: relative;
  margin-bottom: 10px;
}
#itemAttention .takeout .takeout__label::before {
  position: absolute;
  border-radius: 50px;
  width: 10px;
  height: 10px;
  top: 5px;
  left: 0px;
  background: #84bd8d;
  content: "";
  display: block;
}

.salesPeriod--finish {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 40px;
  font-weight: bold;
}

#itemAttention .lottery {
  font-size: 14px;
  font-size: 1.4rem;
  border-radius: 3px;
  border: 1px solid #c796bc;
  color: rgba(var(--font-clr)) !important;
  background: transparent !important;
  padding: 15px !important;
  margin-bottom: 20px;
}
#itemAttention .lottery .lottery__label {
  padding-left: 20px;
  font-weight: normal !important;
  position: relative;
  margin-bottom: 10px;
}
#itemAttention .lottery .lottery__label::before {
  position: absolute;
  border-radius: 50px;
  width: 10px;
  height: 10px;
  top: 5px;
  left: 0px;
  background: #c796bc;
  content: "";
  display: block;
}
#itemAttention .lottery p:not(.lottery__label) {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.membershipPoint {
  margin-bottom: 40px;
}
.membershipPoint .membershipPoint__amountWrapper {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
}
.membershipPoint .membershipPoint__amountWrapper::before {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  content: "P";
  color: rgba(var(--btn-bg-clr), 0.8);
  background: rgba(var(--btn-bg-clr), 0.2);
  border-radius: 50px;
  width: 18px;
  height: 18px;
  text-align: center;
  margin-right: 5px;
}
.membershipPoint .membershipPoint__amountWrapper .membershipPoint__amount,
.membershipPoint .membershipPoint__amountWrapper .membershipPoint__pointName {
  font-size: 14px;
  font-size: 1.4rem;
  color: rgba(var(--clr-red));
  font-weight: normal;
}
.membershipPoint .membershipPoint__attentionWrapper {
  margin: 10px 0;
}
.membershipPoint .membershipPoint__attentionWrapper a {
  font-weight: normal !important;
}

#itemSelect {
  font-size: 14px;
  font-size: 1.4rem;
  padding: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
  background: rgba(var(--btn-bg-clr), 0.1);
  border: 1px solid rgba(var(--btn-bg-clr), 0.2);
}
#itemSelect label {
  font-size: 12px;
  font-size: 1.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: none !important;
}
#itemSelect select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  max-width: none !important;
  padding: 10px;
  border: 1px solid rgba(var(--font-clr), 0.5);
  border-radius: 3px;
  background-image: none !important;
  cursor: pointer;
  padding-right: 2em !important;
  color: rgba(var(--font-clr));
  background: var(--bg-clr);
}
#itemSelect select:focus {
  outline: none;
}
#itemSelect input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  max-width: none !important;
  padding: 10px;
  font-size: 16px;
  border: 1px solid rgba(var(--font-clr), 0.5);
  border-radius: 3px;
  background-image: none !important;
  box-shadow: none !important;
  color: rgba(var(--font-clr));
  background: var(--bg-clr);
}
#itemSelect .itemOption__caption {
  font-size: 12px;
  margin-bottom: 10px;
}
#itemSelect #amountSelectWrap > select {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
#itemSelect .form-wrap,
#itemSelect .form-wrap * {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: none !important;
  width: 100% !important;
  box-sizing: border-box;
  overflow-x: hidden;
}
#itemSelect .form-wrap {
  position: relative;
}
#itemSelect .form-wrap::before {
  position: absolute;
  top: 15px;
  right: 10px;
  content: "";
  width: 8px;
  height: 5px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: rgba(var(--font-clr), 0.5);
  pointer-events: none;
  z-index: 5;
}

.purchaseButton:hover {
  cursor: pointer;
}
.purchaseButton svg {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: -5px 5px 0 -20px;
}
.purchaseButton .purchaseButton__btn {
  font-size: 14px;
  font-size: 1.4rem;
  background: rgba(var(--btn-bg-clr));
  color: rgba(var(--btn-clr));
  text-align: center;
  text-indent: 1em;
  border-radius: 5px;
  width: 100%;
  height: 4.285em;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}
.purchaseButton .purchaseButton__btn.purchaseButton__btn--disabled, .purchaseButton .purchaseButton__btn.purchaseButton__btn--endOfSale, .purchaseButton .purchaseButton__btn.purchaseButton__btn--noItem {
  opacity: 0.5;
  cursor: default;
}

.easyOverseasSales__label,
.easyOverseasSalesArea__link {
  color: rgba(var(--font-clr)) !important;
}

.item-report {
  border-radius: 3px;
  font-size: 12px;
  font-size: 1.2rem;
  border: 1px solid rgba(var(--clr-red));
  color: rgba(var(--clr-red));
  display: inline-block;
}
.item-report a {
  padding: 3px 5px;
  text-decoration: none;
}

.btn-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}
.btn-wrapper .sns-wrapper {
  display: flex;
}
.btn-wrapper .sns-wrapper p {
  font-size: 12px;
  font-size: 1.2rem;
}
.btn-wrapper .sns-wrapper p svg {
  width: 12px;
  height: 12px;
  vertical-align: sub;
  margin-left: 15px;
}
.btn-wrapper .sns-wrapper .item-sns {
  display: flex;
  gap: 15px;
  margin-left: 15px;
}
.btn-wrapper .sns-wrapper .item-sns svg {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.related-item .ttl {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  text-align: left;
}
.related-item ul.itemlist {
  display: flex;
  gap: 1px;
  margin-top: 20px;
}
.related-item ul.itemlist li {
  width: calc(33.3333333333% - 1px);
}
.related-item .item-price {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}
.related-item .item-price::first-letter {
  font-size: 10px;
  font-size: 1rem;
  font-size: 10px;
  font-weight: normal;
  margin-right: 2px;
}
.related-item .item-price .sale-price {
  color: #EF6C6E;
}

.item-product {
  margin: 40px 0;
}
.item-product p {
  line-height: 2;
}

.communityBox {
  color: rgba(var(--font-clr)) !important;
}

.shop-data {
  margin-top: 40px;
}
.shop-data > * + * {
  margin-top: 50px;
}
.shop-data .s-ttl,
.shop-data .review01__title {
  font-size: 14px;
  font-size: 1.4rem;
  position: relative;
  font-weight: normal;
  padding-left: 35px;
  margin-bottom: 20px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  font-weight: normal !important;
}
.shop-data .s-ttl::before,
.shop-data .review01__title::before {
  left: 0;
  top: 10px;
  width: 30px;
  height: 1px;
  content: "";
  display: block;
  position: absolute;
  background: rgba(var(--font-clr));
}

.payment {
  background: rgba(var(--main-clr), 0.1);
  border: 1px solid rgba(var(--main-clr), 0.2);
  border-radius: 2px;
  padding: 20px;
}
.payment .payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.payment .payment-list li {
  font-size: 12px;
  font-size: 1.2rem;
  border-radius: 2px;
  color: rgba(var(--font-clr), 0.8);
  background: rgba(255, 255, 255, 0.5);
  padding: 5px 10px;
}

.free-wrapeer p {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.8;
}

.review01 {
  margin-top: 40px !important;
}

.qa {
  border-bottom: 1px solid rgba(var(--font-clr), 0.2);
}
.qa summary {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.8;
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 6px;
  padding: 15px 0 10px 0;
  align-items: center;
}
.qa .answer {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  padding: 10px;
  transition: max-height 0.4s ease;
}
.qa[open] .answer {
  max-height: 1000px;
}

summary::-webkit-details-marker {
  display: none;
}

details::details-content {
  transition: height 0.4s, opacity 0.4s, content-visibility 0.4s allow-discrete;
  height: 0;
  opacity: 0;
  overflow: clip;
}
details[open]::details-content {
  opacity: 1;
}
details[open] .icon {
  transform: rotate(180deg);
}

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }
  details[open]::details-content {
    height: auto;
  }
}
@supports not (interpolate-size: allow-keywords) {
  details[open]::details-content {
    height: 150px;
    overflow-y: scroll;
  }
}
/* アイコン */
details[open] .icon::after {
  display: none;
}
details .icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  position: relative;
  margin-left: 0.5em;
}
details .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(var(--font-clr), 0.5);
  transform: translateY(-50%);
}
details .icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(var(--font-clr), 0.5);
  transform: translateX(-50%);
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumb-wrapper .swiper-slide img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  position: inherit !important;
}

.mySwiper2 {
  height: auto;
  width: 100%;
  position: relative !important;
}

.mySwiper {
  height: auto;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: auto;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-pagination {
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  background: rgba(var(--header-bg-clr), 0.5);
  color: #fff !important;
  border: 1px solid #fff;
  border-radius: 50px;
  width: 90px !important;
  display: block;
  font-size: 14px;
  padding: 5px 20px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 1px #000;
  left: calc(50% - 45px) !important;
  bottom: 10px;
}

.thumb-wrapper {
  margin: 20px 100px 0 100px;
  position: relative;
}
.thumb-wrapper .thumbs-prev {
  left: -35px;
  transform: scale(-1, 1);
  top: 50%;
}
.thumb-wrapper .thumbs-next {
  right: -35px;
  top: 50%;
}
.thumb-wrapper .thumbs-prev,
.thumb-wrapper .thumbs-next {
  position: absolute;
  z-index: 10;
  top: 50%;
}
.thumb-wrapper .thumbs-prev svg,
.thumb-wrapper .thumbs-next svg {
  width: 20px;
  height: 20px;
}

body form[id] #variationSelectWrap,
body form[id] .itemOptionElement,
#amountSelectWrap {
  max-width: none !important;
  display: flex;
  gap: 5px;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  flex-direction: column;
}

#itemSelect > * + * {
  margin-top: 25px;
}

.label_image {
  top: 0 !important;
  left: 0 !important;
}

.purchaseButtonModal__inputArea,
.purchaseButtonModal__ageVerificationWarningText {
  color: #000;
}

#communityPurchase .communitySignin {
  border: 1px solid rgba(var(--font-clr), 0.2) !important;
  color: rgba(var(--font-clr)) !important;
}

div#appsItemDetailCustom {
  margin-top: 40px;
}

.is-accordionOff .review01__trigger {
  display: block !important;
}

.itemOption__caption--error {
  background: rgba(var(--clr-red));
  font-size: 11px;
  border-radius: 3px;
  color: #fff;
  float: left;
  margin-right: 10px;
  box-sizing: border-box;
}

.communityBox {
  color: #000;
}
.communityBox .communityPrice {
  flex-direction: column;
  gap: 10px;
}
.communityBox .communityPrice > p {
  font-weight: bold;
}

#saleItemsList .item-price {
  color: #EF6C6E;
}

.related-entry .ttl {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  text-align: left;
  margin-bottom: 20px;
}
.related-entry h2 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5 !important;
}
.related-entry .blog_publish {
  margin: 0 !important;
}
.related-entry .blog_publish .publish_date {
  font-size: 10px;
  font-size: 1rem;
  margin: 10px 0 0 0;
  color: rgba(var(--font-clr), 0.5);
}
.related-entry .read_more {
  display: none;
}
.related-entry .blog_head_image {
  text-align: center;
  background: rgba(var(--main-clr), 0.05);
}
.related-entry .blog_head_image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 110px;
  vertical-align: bottom;
}
.related-entry .blog_inner_wrapper {
  display: flex;
  gap: 20px;
  position: relative;
  padding: 20px 0;
  margin-top: -1px;
}
.related-entry .blog_inner_wrapper::after, .related-entry .blog_inner_wrapper::before {
  position: absolute;
  display: none;
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(var(--font-clr), 0.2);
}
.related-entry .blog_inner_wrapper:nth-of-type(1)::before {
  top: 0;
  display: block;
}
@media only screen and (min-width: 768px) {
  .related-entry .blog_inner_wrapper:nth-of-type(2)::before {
    top: 0;
    display: block;
  }
}
.related-entry .blog_inner_wrapper::after {
  bottom: 0;
  display: block;
}
@media only screen and (min-width: 1200px) {
  .related-entry .blog_inner_wrapper {
    gap: 30px;
  }
}
.related-entry .blog_inner_wrapper .blog_head_image {
  width: 220px;
  max-width: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.related-entry .blog_inner_wrapper .blog_inner {
  flex: 1;
}
.related-entry .blog_contents .text {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  display: block;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 50px;
  margin-top: 20px;
}
.related-entry .blog_inner_wrapper + .blog-backnumber {
  margin-top: 80px;
}

.bg-darkcolor #itemSelect {
  background: rgba(var(--font-clr), 0.15) !important;
}
.bg-darkcolor #itemSelect select, .bg-darkcolor #itemSelect option {
  color: rgba(var(--font-clr));
  background: var(--bg-clr);
}
.bg-darkcolor .payment {
  background: transparent !important;
  border: 1px solid rgba(var(--font-clr), 0.2) !important;
}
.bg-darkcolor .membershipPoint .membershipPoint__amountWrapper::before {
  color: rgba(var(--btn-clr), 1);
  background: rgba(var(--btn-bg-clr), 0.8);
}

.bg-img #itemSelect {
  background: rgba(var(--font-clr), 0.15) !important;
}
.bg-img #itemSelect .form-wrap::before {
  background-color: #222;
}
.bg-img #itemSelect select, .bg-img #itemSelect option {
  color: #222;
  background: rgba(255, 255, 255, 0.8);
}

ul.category-tag {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 20px 40px 20px;
}
@media only screen and (min-width: 768px) {
  ul.category-tag {
    margin: 0 0 40px 0;
  }
}
ul.category-tag li a {
  text-decoration: none;
  padding: 5px 10px;
  width: 100%;
  color: rgba(var(--font-clr));
  border-radius: 2px;
  border: 1px solid rgba(var(--font-clr));
  height: 100%;
  display: block;
  background: transparent;
  transition: all 0.5s;
}
ul.category-tag li a:hover {
  background: rgba(var(--font-clr), 0.15);
}

#pageIndexCategory h3.ttl,
#pageIndexSearch h3.ttl {
  margin: 30px 20px 30px 20px;
}
@media only screen and (min-width: 1200px) {
  #pageIndexCategory h3.ttl,
#pageIndexSearch h3.ttl {
    margin: 0 0 40px 0;
  }
}
#pageIndexCategory #notshop,
#pageIndexSearch #notshop {
  margin-bottom: 40px;
  color: rgba(var(--clr-red));
}

@media only screen and (min-width: 768px) {
  #pageAbout .about {
    margin: 0 40px;
  }
}
@media only screen and (min-width: 1200px) {
  #pageAbout .about {
    margin: 0 auto;
    width: 1200px;
  }
}
#pageAbout .about .shop {
  margin: 20px 20px 40px 20px;
}
#pageAbout .about .shop p {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
}
@media only screen and (min-width: 1200px) {
  #pageAbout .about .shop {
    width: 800px;
    margin: 100px auto;
  }
  #pageAbout .about .shop p {
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    line-height: 2;
  }
}
#pageAbout .about .about-header-img {
  width: 100%;
  display: block;
  text-align: center;
}
#pageAbout .about .about-header-img img {
  width: auto;
  height: auto;
  max-height: 600px;
  max-width: 100%;
}
#pageAbout .about .ttl {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  margin-inline: 20px;
  font-weight: bold !important;
}
@media only screen and (min-width: 768px) {
  #pageAbout .about .ttl {
    margin: 80px 0;
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  #pageAbout .about .ttl {
    margin-bottom: 100px;
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.concept-box {
  margin: 20px;
}
.concept-box .s-ttl {
  font-size: 20px;
  font-size: 2rem;
  margin: 40px 0;
}
.concept-box .txt p:not(.s-ttl) {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
}
.concept-box figure {
  margin: 0;
  text-align: center;
}
.concept-box figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 500px;
  filter: drop-shadow(50px 50px 0px rgba(0, 0, 0, 0.03));
}
@media only screen and (min-width: 768px) {
  .concept-box {
    display: flex;
    gap: 50px;
    margin: 0 0 100px 0;
  }
  .concept-box .txt {
    flex: 1;
  }
  .concept-box:nth-of-type(odd) {
    flex-direction: row-reverse;
  }
  .concept-box figure {
    width: 50%;
    margin: 0;
  }
  .concept-box figure img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    position: relative;
  }
}
@media only screen and (min-width: 1200px) {
  .concept-box {
    gap: 100px;
  }
  .concept-box figure {
    width: 600px;
  }
}

.shop-info {
  border-top: 1px solid rgba(var(--font-clr), 0.2);
  display: flex;
  gap: 40px;
  padding: 50px 0;
  margin: 0 20px;
  flex-direction: column;
}
@media only screen and (min-width: 1200px) {
  .shop-info {
    flex-direction: row;
    margin: 0;
  }
}
.shop-info .shop-info-data {
  flex: 1;
  position: relative;
}
.shop-info .shop-name {
  font-size: 18px;
  font-size: 1.8rem;
}
.shop-info span svg {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 3px;
  left: 0;
}
.shop-info .shop-data {
  gap: 15px;
}
.shop-info .map-icon svg {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
}
.shop-info .shop-data-list {
  margin-top: 30px;
}
.shop-info li {
  position: relative;
  padding-left: 20px;
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.shop-info .map-container {
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  .shop-info .map-container {
    width: 800px;
  }
}
@media only screen and (min-width: 1200px) {
  .shop-info .map-img {
    width: 800px;
  }
}
.shop-info .map-img img {
  width: 100%;
  height: auto;
}

.bg-darkcolor .concept-box figure img {
  filter: drop-shadow(50px 50px 0px rgba(var(--font-clr), 0.1));
}

.contact-wrap {
  font-size: 10px;
  font-size: 1rem;
  margin: 0 2em;
}
.contact-wrap h1 {
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold !important;
  margin: 0 0 20px 0;
}
@media only screen and (min-width: 1200px) {
  .contact-wrap .main {
    font-size: 10px;
    font-size: 1rem;
    width: 120em;
    margin: 0 auto;
  }
  .contact-wrap h1 {
    font-size: 36px;
    font-size: 3.6rem;
    margin: 0 0 40px 0;
  }
}

.contact-wrap .form-wrap {
  line-height: 1;
}
.contact-wrap form {
  display: block;
  margin-top: 2em;
  padding: 2em;
  font-size: 10px;
  font-size: 1rem;
}
.contact-wrap dl {
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0 -1.429em 2.142em -1.429em;
  padding: 2.142em 1.428em 1.428em 1.428em;
  background: rgba(var(--main-clr), 0.1) !important;
}
@media only screen and (min-width: 768px) {
  .contact-wrap dl {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 1.428em 2.142em;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-wrap dl {
    font-size: 14px;
    font-size: 1.4rem;
    width: 57.142em;
    margin: 0 auto 2.857em auto;
    padding: 4.285em 4.285em;
  }
}
.contact-wrap dl > dt, .contact-wrap dl > dd {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}
.contact-wrap dl > dt {
  margin-bottom: 0.714em;
}
.contact-wrap dl > dd {
  margin-bottom: 1.428em;
}
.contact-wrap input[type=text],
.contact-wrap textarea {
  font-size: 16px;
  font-size: 1.6rem;
  width: 100%;
  padding: 0.625em;
  font-family: inherit;
  background: transparent;
  border: 1px solid rgba(var(--font-clr), 0.2);
  box-sizing: border-box;
  background: #fff;
  border-radius: 2px;
}
.contact-wrap input[type=text] {
  line-height: 1;
}
.contact-wrap textarea {
  line-height: 1.5;
  resize: vertical;
  min-height: 6em;
}
.contact-wrap .control-panel {
  text-align: center;
}
.contact-wrap input[type=submit] {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 2.857em;
  min-width: 15.714em;
  border: none;
  background: rgba(var(--btn-bg-clr));
  color: rgba(var(--btn-clr));
  height: 45px;
  border-radius: 3px;
}
@media only screen and (min-width: 768px) {
  .contact-wrap input[type=submit] {
    font-size: 14px;
    font-size: 1.4rem;
    min-width: 22.857em;
  }
}

.form-error {
  border-color: var(--clr-red) !important;
}

#inquiryConfirmSection dl > dd {
  padding-bottom: 1.428em;
  position: relative;
}
#inquiryConfirmSection dl > dd::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0;
  bottom: 0;
  border-bottom: solid 1px;
  border-color: var(--font-clr);
  opacity: 0.3;
}
#inquiryConfirmSection dl dd + dd.error.ma-b20 > div {
  margin-top: -10px;
}
#inquiryCompleteSection {
  display: block;
  position: relative;
  font-size: 10px;
  font-size: 1rem;
  color: var(--font-clr);
}
#inquiryCompleteSection p {
  margin-bottom: 1.428em;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}
#inquiryCompleteSection a {
  margin: 2.857em auto !important;
  display: block !important;
  width: 18.571em;
}
@media only screen and (min-width: 1200px) {
  #inquiryCompleteSection a {
    font-size: 14px;
    font-size: 1.4rem;
    width: 18.571em;
    margin: 4.285em auto !important;
  }
}
@media only screen and (min-width: 768px) {
  #inquiryCompleteSection p {
    text-align: center;
  }
}
.inquirySection p {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  color: var(--font-clr);
}
.inquirySection .error-message {
  font-size: 10px;
  font-size: 1rem;
  background: rgba(var(--clr-red));
  color: #fff;
  font-weight: normal;
  border-radius: 2px;
  padding: 0 1em;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.inquirySection dl {
  color: rgba(var(--font-clr));
}
.inquirySection dl span {
  color: rgba(var(--clr-red));
}

.grecaptcha-badge {
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  .grecaptcha-badge {
    bottom: 90px !important;
  }
}
.bg-darkcolor .contact-wrap dl {
  background: rgba(var(--font-clr), 0.15) !important;
}

#pageBlog main > section > * + * {
  margin: 40px 20px 0 20px;
}
@media only screen and (min-width: 1200px) {
  #pageBlog main > section > * + * {
    margin: 40px 0 0 0;
  }
}
#pageBlog main > section .main {
  margin-top: 40px;
}

.blog > h2 {
  font-weight: bold !important;
}

@media only screen and (min-width: 768px) {
  .main #about.blogListMain .blog_entries_wrapper,
.blog-backnumber {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .main #about.blogListMain .blog_entries_wrapper,
.blog-backnumber {
    gap: 0 30px;
  }
}
.main #about.blogListMain .blog_entries_wrapper > .blog_inner_wrapper,
.blog-backnumber > .blog_inner_wrapper {
  padding: 20px 0 !important;
  border: none !important;
}
@media only screen and (min-width: 768px) {
  .main #about.blogListMain .blog_entries_wrapper > .blog_inner_wrapper,
.blog-backnumber > .blog_inner_wrapper {
    width: calc(50% - 7.5px);
  }
}
@media only screen and (min-width: 768px) {
  .main #about.blogListMain .blog_entries_wrapper > .blog_inner_wrapper,
.blog-backnumber > .blog_inner_wrapper {
    width: calc(50% - 15px);
  }
}
.main #about.blogListMain .blog_entries_wrapper h2,
.blog-backnumber h2 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5 !important;
}
.main #about.blogListMain .blog_entries_wrapper .blog_publish,
.blog-backnumber .blog_publish {
  margin: 0 !important;
}
.main #about.blogListMain .blog_entries_wrapper .blog_publish .publish_date,
.blog-backnumber .blog_publish .publish_date {
  font-size: 10px;
  font-size: 1rem;
  margin: 10px 0 0 0;
  color: rgba(var(--font-clr), 0.5);
}
.main #about.blogListMain .blog_entries_wrapper .read_more,
.blog-backnumber .read_more {
  display: none;
}
.main #about.blogListMain .blog_entries_wrapper .blog_head_image,
.blog-backnumber .blog_head_image {
  text-align: center;
  background: rgba(var(--main-clr), 0.05);
}
.main #about.blogListMain .blog_entries_wrapper .blog_head_image img,
.blog-backnumber .blog_head_image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 110px;
  vertical-align: bottom;
}
.main #about.blogListMain .blog_entries_wrapper .blog_inner_wrapper,
.blog-backnumber .blog_inner_wrapper {
  display: flex;
  gap: 20px;
  position: relative;
  padding: 20px 0;
  margin-top: -1px;
}
.main #about.blogListMain .blog_entries_wrapper .blog_inner_wrapper::after, .main #about.blogListMain .blog_entries_wrapper .blog_inner_wrapper::before,
.blog-backnumber .blog_inner_wrapper::after,
.blog-backnumber .blog_inner_wrapper::before {
  position: absolute;
  display: none;
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(var(--font-clr), 0.2);
}
.main #about.blogListMain .blog_entries_wrapper .blog_inner_wrapper:nth-of-type(1)::before,
.blog-backnumber .blog_inner_wrapper:nth-of-type(1)::before {
  top: 0;
  display: block;
}
@media only screen and (min-width: 768px) {
  .main #about.blogListMain .blog_entries_wrapper .blog_inner_wrapper:nth-of-type(2)::before,
.blog-backnumber .blog_inner_wrapper:nth-of-type(2)::before {
    top: 0;
    display: block;
  }
}
.main #about.blogListMain .blog_entries_wrapper .blog_inner_wrapper::after,
.blog-backnumber .blog_inner_wrapper::after {
  bottom: 0;
  display: block;
}
@media only screen and (min-width: 1200px) {
  .main #about.blogListMain .blog_entries_wrapper .blog_inner_wrapper,
.blog-backnumber .blog_inner_wrapper {
    gap: 30px;
  }
}
.main #about.blogListMain .blog_entries_wrapper .blog_inner_wrapper .blog_head_image,
.blog-backnumber .blog_inner_wrapper .blog_head_image {
  width: 220px;
  max-width: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main #about.blogListMain .blog_entries_wrapper .blog_inner_wrapper .blog_inner,
.blog-backnumber .blog_inner_wrapper .blog_inner {
  flex: 1;
}
.main #about.blogListMain .blog_entries_wrapper .blog_contents .text,
.blog-backnumber .blog_contents .text {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  display: block;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 50px;
  margin-top: 20px;
}

.blog_inner_wrapper + .blog-backnumber {
  margin-top: 80px;
}

.main #about.blogDetail + aside .blog-backnumber {
  margin: 20px 0 40px 0;
}
.main #about.blogDetail + aside h2 {
  text-align: left;
}
.main #about.blogDetail .blog-img-block {
  text-align: center;
  width: 100%;
}
.main #about.blogDetail .img-box {
  margin-top: 40px;
}
.main #about.blogDetail > .blog_inner_wrapper .blog_title {
  font-size: 14px;
  font-size: 1.4rem;
}
.main #about.blogDetail > .blog_inner_wrapper .blog_title > h2 a {
  font-weight: bold !important;
}
.main #about.blogDetail > .blog_inner_wrapper .blog_title a {
  text-decoration: none;
}
@media only screen and (min-width: 1200px) {
  .main #about.blogDetail > .blog_inner_wrapper .blog_title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.main #about.blogDetail > .blog_inner_wrapper .publish_date {
  color: rgba(var(--font-clr), 0.5);
}
.main #about.blogDetail > .blog_inner_wrapper .blog_inner .blog_body {
  margin: 40px 0 80px 0;
}
.main #about.blogDetail > .blog_inner_wrapper .blog_inner div {
  font-size: 14px;
  font-size: 1.4rem;
}
.main #about.blogDetail > .blog_inner_wrapper .blog_inner p {
  font-size: 14px;
  font-size: 1.4rem;
}

.blog_body div {
  line-height: 1.8;
}
.blog_body .text img {
  display: block;
  margin: 0 auto 40px auto !important;
}

.blog-item-wrapper {
  gap: 12.5px;
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
}
.blog-item-wrapper iframe {
  width: calc(50% - 10px);
}
@media only screen and (min-width: 768px) {
  .blog-item-wrapper {
    max-width: 1200px;
    margin: 40px 0;
  }
  .blog-item-wrapper iframe {
    width: 230px;
  }
}

.blog_contents .social {
  display: flex !important;
  justify-content: flex-end;
}
.blog_contents .social .share-label span {
  font-size: 12px;
  font-size: 1.2rem;
}
.blog_contents .social .share-label svg {
  width: 10px;
  height: 10px;
  margin: 0 15px 0 10px;
}
.blog_contents .social ul {
  display: flex !important;
  gap: 5px;
}
.blog_contents .social ul li {
  width: 18px;
  height: 18px;
}
.blog_contents .social ul li img {
  width: 100%;
  height: auto;
}
.blog_contents .social ul li svg {
  width: 18px;
  height: 18px;
}

.blogDetail iframe.youtube {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin: 40px 0;
}
@media only screen and (min-width: 768px) {
  .blogDetail iframe.youtube {
    display: block;
    max-width: 80%;
  }
}
@media only screen and (min-width: 1200px) {
  .blogDetail iframe.youtube {
    max-width: 800px;
  }
}

.paginate-wrp {
  margin: 40px 0 !important;
}

.paginate li {
  border: 1px solid rgba(var(--font-clr), 0.5) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}
.paginate li a {
  color: rgba(var(--font-clr)) !important;
}
.paginate li a:hover {
  background: rgba(var(--font-clr), 0.3) !important;
}
.paginate .current a {
  color: rgba(var(--font-clr)) !important;
  background: rgba(var(--font-clr), 0.3) !important;
}

.blog-back {
  font-size: 12px;
  margin-bottom: 40px;
}
.blog-back a {
  text-decoration: none;
}
.blog-back a:hover {
  text-decoration: underline;
}
.blog-back svg {
  transform: scale(-1, 1);
  width: 10px;
  height: 10px;
  margin: 0 15px 0 10px;
}

.bg-darkcolor .blog_head_image {
  background: rgba(var(--font-clr), 0.1) !important;
}

.community > h2 {
  display: none;
}

.communityMain {
  width: auto !important;
  margin: 0 20px !important;
  padding: 0 !important;
}
@media only screen and (min-width: 1200px) {
  .communityMain {
    width: 1200px !important;
    margin: 0 !important;
  }
  .communityMain .communityTitle {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .communityMain .communityItemHeader {
    text-align: center !important;
  }
}
.communityMain .communityTerm a {
  color: rgba(var(--font-clr)) ipo !important;
}
.communityMain .communitySignin {
  border: 1px solid rgba(var(--font-clr), 0.2) !important;
}
.communityMain .communityUrlHeader,
.communityMain #limitedUrl,
.communityMain #limitedItem,
.communityMain #productsLimitedUrl,
.communityMain .communityContent {
  width: auto !important;
}
@media only screen and (min-width: 768px) {
  .communityMain .communityUrlHeader,
.communityMain #limitedUrl,
.communityMain #limitedItem,
.communityMain #productsLimitedUrl,
.communityMain .communityContent {
    margin: 30px 0 !important;
  }
}
@media only screen and (min-width: 1200px) {
  .communityMain .communityUrlHeader,
.communityMain #limitedUrl,
.communityMain #limitedItem,
.communityMain #productsLimitedUrl,
.communityMain .communityContent {
    width: 1000px !important;
    margin: 0 auto !important;
  }
}
.communityMain .communityContent {
  padding: 0 !important;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border: none !important;
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  .communityMain .communityContent {
    padding: 20px !important;
    flex-direction: row;
    box-shadow: 0 0 5px rgba(var(--font-clr), 0.1);
    border-radius: 3px;
    border: 1px solid rgba(var(--font-clr), 0.2) !important;
    gap: 0;
    background: rgba(255, 255, 255, 0.2);
  }
}
@media only screen and (min-width: 1200px) {
  .communityMain .communityContent {
    gap: 40px;
    margin: 80px auto !important;
  }
}
.communityMain .communityOverview {
  font-size: 12px;
  font-size: 1.2rem;
  padding: 0;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
@media only screen and (min-width: 768px) {
  .communityMain .communityOverview {
    padding: 30px;
    flex: 1 1 auto;
    min-width: 0;
    word-wrap: break-word;
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }
}
.communityMain .communityNav {
  text-align: center;
  margin: 0 !important;
  width: 100% !important;
  padding: 20px;
  box-shadow: 0 0 5px rgba(var(--font-clr), 0.1);
  border-radius: 3px;
  border: 1px solid rgba(var(--font-clr), 0.2) !important;
  background: rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 768px) {
  .communityMain .communityNav {
    border: none !important;
    box-shadow: 0 0 0;
    width: 50% !important;
    background: transparent !important;
  }
}
@media only screen and (min-width: 1200px) {
  .communityMain .communityNav {
    width: 420px !important;
  }
}
.communityMain .communityUrlHeader {
  text-align: left;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .communityMain .communityUrlHeader {
    text-align: center !important;
  }
}
.communityMain #limitedUrl,
.communityMain #limitedItem {
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .communityMain #limitedUrl,
.communityMain #limitedItem {
    text-align: center !important;
  }
}
.communityMain #productsLimitedUrl {
  margin: 30px auto 60px auto !important;
  flex-direction: column;
  text-align: center !important;
  align-items: center;
  gap: 30px;
}
.communityMain #productsLimitedUrl .urlBox {
  width: 100% !important;
  margin: 0 !important;
  padding: 10px !important;
  text-align: left;
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(var(--font-clr), 0.2) !important;
}
@media only screen and (min-width: 1200px) {
  .communityMain #productsLimitedUrl {
    margin: 30px auto 80px auto;
  }
  .communityMain #productsLimitedUrl .urlBox {
    width: 800px !important;
    padding: 20px !important;
  }
}
.communityMain .communityPrice {
  text-align: center;
}
.communityMain .communityPrice .yen {
  font-size: 18px;
  font-size: 1.8rem;
}
.communityMain .communityPrice .num {
  font-size: 32px;
  font-size: 3.2rem;
}
.communityMain .communityRegister .communityButtonWrap {
  margin: 0 0 30px 0;
}
.communityMain .communityRegister .communityButtonPayid__signin {
  margin-top: 30px;
}

.communityItems.sp-col2 li {
  width: calc(50% - 1px);
}
.communityItems.sp-col3 li {
  width: calc(33.3333333333% - 1px);
}
@media only screen and (min-width: 768px) {
  .communityItems.sp-col2 li, .communityItems.sp-col3 li {
    width: calc(20% - 1px);
  }
}
.communityItems li {
  margin: 0 0 30px 0 !important;
  margin-left: 0 !important;
}

.communityMain .communityItems .communityItem .communityItemMeta {
  padding: 10px 10px 0 0;
}
.communityMain .communityItems .communityItem .communityItemMeta .communityItemTitle {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: left;
  padding: 0 !important;
  margin: 0 0 10px 0 !important;
  width: auto !important;
  max-height: none !important;
}
.communityMain .communityItems .communityItem .communityItemMeta .communityItemPrice {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}
.communityMain .communityItems .communityItem .communityItemMeta .communityItemPrice.soldOut {
  text-decoration: none !important;
}

.communityMain .communityItems .communityItem .communityImageContainer {
  position: relative;
  width: 100% !important;
  height: auto !important;
}
.communityMain .communityItems .communityItem .communityImageContainer .communityImageResize {
  -o-object-fit: cover;
     object-fit: cover;
}

.communityItemLabelBlock {
  display: none;
}

.communityMain .communityItems .communityItem .communityLabelImage {
  top: 0 !important;
  left: 0 !important;
  z-index: 10 !important;
  width: 50px !important;
  height: 50px !important;
}

.communityMain .communityModalTextNotice {
  color: rgba(var(--font-clr));
  border: 1px solid rgba(var(--font-clr));
  padding: 10px 20px;
  text-align: center;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  border-radius: 3px;
  margin: 0 auto !important;
  text-decoration: none;
}
.communityMain .communityModalTextNotice a {
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
  color: rgba(var(--font-clr));
  text-align: center !important;
}

.communityMain .openLeaveModal {
  color: rgba(var(--clr-red)) !important;
  border: 1px solid rgba(var(--clr-red));
  padding: 10px 20px;
  margin: 20px auto 40px auto !important;
  text-decoration: none !important;
  font-size: 14px !important;
}
.communityMain .openLeaveModal a {
  color: rgba(var(--clr-red)) !important;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-align: center !important;
}

.communityMain .communityModalContent .openLeaveModal {
  border: 1px solid rgba(var(--font-clr));
  padding: 15px !important;
}

.bg-darkcolor .communityMain .communityContent {
  background: rgba(var(--font-clr), 0.15) !important;
  border: none !important;
  box-shadow: none !important;
}
.bg-darkcolor .communityMain #productsLimitedUrl .urlBox {
  background: rgba(var(--font-clr), 0.15) !important;
  border: none !important;
}

.membership > h2 {
  display: none;
}
.membership .guide {
  margin: 0 0 40px 0;
}
.membership .guide .heading {
  text-align: center;
}
.membership .guide .register {
  background: rgba(var(--main-clr), 0.1) !important;
}
.membership .guide .register .mail-magazine .mail-magazine-wrapper .label {
  color: rgba(var(--font-clr)) !important;
}
.membership .guide .register .mail-magazine .mail-magazine-wrapper .checkbox:checked {
  border-color: rgba(var(--btn-bg-clr)) !important;
  box-shadow: 0 0 0 24px rgba(var(--btn-bg-clr)) inset !important;
}
.membership .guide .content .heading {
  margin: 40px 20px !important;
}
.membership .guide .content .description {
  margin: 20px 20px 40px 20px !important;
}
@media only screen and (min-width: 768px) {
  .membership .guide .content .description {
    width: 800px;
    margin: 40px auto !important;
  }
}
.membership .guide .about-point {
  margin: 20px !important;
  padding: 20px;
  border: 1px solid rgba(var(--font-clr), 0.2);
  box-shadow: 0 0 10px rgba(var(--font-clr), 0.1);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}
.membership .guide .about-point .heading-point {
  margin-bottom: 15px !important;
  line-height: 2 !important;
  font-weight: normal !important;
}
@media only screen and (min-width: 768px) {
  .membership .guide .about-point {
    width: 800px;
    margin: 20px auto !important;
  }
  .membership .guide .about-point .description {
    width: 800px;
    margin: 0 auto !important;
  }
}
.membership .guide .about-point .description {
  margin: 20px 0 0 0;
}
.membership .guide .about-point .description .description-details {
  margin-bottom: 10px;
  line-height: 1.6 !important;
  position: relative;
  padding-left: 1.5em;
}
.membership .guide .about-point .description .description-details::before {
  content: "";
  display: block;
  width: 5px;
  height: 1px;
  left: 0.5em;
  top: 10px;
  position: absolute;
  background: rgba(var(--font-clr));
}
.membership .guide .mypage-link .link {
  background: rgba(var(--btn-bg-clr)) !important;
  color: rgba(var(--btn-clr)) !important;
  width: 100% !important;
  max-width: calc(100% - 40px) !important;
  margin: 0 20px;
}
@media only screen and (min-width: 768px) {
  .membership .guide .mypage-link .link {
    max-width: 320px !important;
    width: auto !important;
  }
}
.membership .guide .login {
  margin: 0;
}
.membership .point-history .content {
  width: auto !important;
  margin: 40px 20px;
}
@media only screen and (min-width: 768px) {
  .membership .point-history .content {
    margin: 20px 0 40px 0;
  }
}
.membership .point-history .content .point-history-summary .point-name {
  color: rgba(var(--font-clr)) !important;
  margin-bottom: 40px !important;
}
.membership .point-history .content .point-history-summary .description {
  color: rgba(var(--font-clr)) !important;
}
.membership .point-history .content .point-history-empty-text {
  border-top: rgba(var(--font-clr), 0.5) 1px solid !important;
}

#pageMembershipGuide .heading {
  font-size: 32px;
  font-size: 3.2rem;
  text-align: center;
}

.membership .guide .img-wrapper,
.membership .login .img-wrapper,
.membership .mypage .img-wrapper,
.membership .draft .img-wrapper {
  margin: 0 0 40px 0;
}
.membership .guide .img-wrapper .img,
.membership .login .img-wrapper .img,
.membership .mypage .img-wrapper .img,
.membership .draft .img-wrapper .img {
  max-width: 100%;
  width: auto;
  max-height: 300px !important;
  height: auto !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
@media only screen and (min-width: 768px) {
  .membership .guide .img-wrapper .img,
.membership .login .img-wrapper .img,
.membership .mypage .img-wrapper .img,
.membership .draft .img-wrapper .img {
    max-height: 500px !important;
  }
}
.membership .guide .img-wrapper + .heading,
.membership .login .img-wrapper + .heading,
.membership .mypage .img-wrapper + .heading,
.membership .draft .img-wrapper + .heading {
  text-align: center;
  font-size: 32px;
  margin: 40px 0;
  text-align: center;
}

.register {
  margin: 20px;
  background: rgba(var(--main-clr), 0.1);
  border-radius: 5px;
}
@media only screen and (min-width: 768px) {
  .register {
    width: 800px;
    margin: 0 auto !important;
    padding: 40px !important;
    color: rgba(var(--font-clr));
  }
}
.register .link {
  background: rgba(var(--font-clr));
}
.register .link-wrapper .link {
  background: rgba(var(--btn-bg-clr)) !important;
  color: rgba(var(--btn-clr)) !important;
}
.register .login .login-link {
  color: rgba(var(--font-clr)) !important;
}
.register .description .description-link {
  color: rgba(var(--font-clr)) !important;
}

#membership {
  margin: auto !important;
  padding: 0 !important;
}
#membership > .login {
  padding: 40px 20px 50px 20px;
  background: rgba(var(--main-clr), 0.1);
  margin: 0;
  color: rgba(var(--font-clr));
}
#membership > .login .link {
  background: rgba(var(--btn-bg-clr)) !important;
  color: rgba(var(--btn-clr)) !important;
}
#membership .register-description {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 40px !important;
}
#membership .register-link {
  color: rgba(var(--font-clr)) !important;
}

.membership .mypage .info {
  border: 1px solid rgba(var(--font-clr), 0.2);
  box-shadow: 0 0 10px rgba(var(--font-clr), 0.1);
  background: rgba(255, 255, 255, 0.2);
  margin: 20px;
  padding: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .membership .mypage .info {
    width: 600px !important;
    margin: 0 auto !important;
  }
}
@media only screen and (min-width: 1200px) {
  .membership .mypage .info {
    width: 800px !important;
    margin: 0 auto !important;
  }
}
.membership .mypage .info .card {
  border: none;
  gap: 20px;
  min-height: auto !important;
  height: auto !important;
  background: transparent !important;
  padding: 20px;
}
.membership .mypage .info .card .logo-text {
  font-size: 14px !important;
  font-weight: normal !important;
}
.membership .mypage .info .card .join-date {
  font-weight: normal !important;
  color: rgba(var(--font-clr), 0.5) !important;
}
.membership .mypage .info .card .membership-name {
  font-size: 18px !important;
  font-weight: normal !important;
}
.membership .mypage .info + .leave-wrapper .leave {
  margin-top: 0 !important;
}
.membership .mypage .info .content .customer-info-wrapper .customer-info {
  display: none;
}
.membership .mypage .info .content .bar {
  display: none;
}
.membership .mypage .info .content .customer-info-wrapper {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.membership .mypage .info .content .definition-list {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.membership .mypage .info .content .definition-description {
  background: rgba(var(--main-clr), 0.1) !important;
  gap: 10px !important;
  padding: 30px 20px !important;
  color: rgba(var(--font-clr)) !important;
}
.membership .mypage .info .content .definition-description .point-amount {
  font-size: 32px !important;
  line-height: 2;
}
.membership .mypage .info .content .definition-description .point-expiry-date {
  color: rgba(var(--font-clr)) !important;
}
.membership .mypage .info .content .definition-description .point-history {
  gap: 5px;
  flex-wrap: wrap;
}
.membership .mypage .info .content .definition-description .point-history .link {
  color: rgba(var(--font-clr));
}
.membership .mypage .info .content .definition-description .point-history a {
  font-size: 12px !important;
  line-height: 2 !important;
}
.membership .mypage .info .content .definition-description .point-history a:not(:first-child)::before {
  content: "／";
  margin-right: 5px;
  display: inline-block;
  text-decoration: none;
}
.membership .mypage .info .content .definition-description .definition-term {
  width: 100%;
  text-align: center;
  font-weight: normal !important;
}
.membership .mypage .leave-wrapper .leave {
  text-align: center;
  background-color: transparent !important;
  margin: 0 auto 40px auto !important;
  text-decoration: none !important;
  border: 1px solid rgba(var(--clr-red)) !important;
  color: rgba(var(--clr-red)) !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 3px;
}
.membership .mypage .leave-wrapper .leave a {
  text-decoration: none !important;
}

.logout-wrapper {
  color: rgba(var(--font-clr));
  border: 1px solid rgba(var(--font-clr));
  padding: 10px 20px !important;
  text-align: center;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  border-radius: 3px;
  text-decoration: none !important;
  margin: 40px auto 0 auto !important;
}
.logout-wrapper .logout {
  color: rgba(var(--font-clr)) !important;
  background: transparent !important;
  text-decoration: none !important;
}
.logout-wrapper a {
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
  text-align: center !important;
}

.point-history-list .card.is-get .action-type {
  background: red !important;
  color: #fff;
}
.point-history-list .card.is-return .action-type {
  background: blue !important;
  color: #fff;
}

.membership .pagination .page-link {
  border: 1px solid rgba(var(--font-clr));
  color: rgba(var(--font-clr));
}

.membership .mypage .reward-list,
.membership .guide .reward-list {
  margin: 40px 20px !important;
}
@media only screen and (min-width: 768px) {
  .membership .mypage .reward-list,
.membership .guide .reward-list {
    margin: 40px !important;
  }
  .membership .mypage .reward-list .title,
.membership .guide .reward-list .title {
    text-align: center !important;
  }
}
@media only screen and (min-width: 1200px) {
  .membership .mypage .reward-list,
.membership .guide .reward-list {
    width: 800px;
    margin: 60px auto !important;
  }
}
.membership .mypage .reward-list .bar,
.membership .guide .reward-list .bar {
  background: rgba(var(--font-clr), 0.2) !important;
}
.membership .mypage .reward-list .reward-card-list,
.membership .guide .reward-list .reward-card-list {
  display: flex !important;
  gap: 10px 1px !important;
  flex-wrap: wrap;
}
.membership .mypage .reward-list .reward-card-list .reward-card,
.membership .guide .reward-list .reward-card-list .reward-card {
  width: calc(33.3333333333% - 1px);
}
.membership .mypage .reward-list .reward-card-list .reward-card .reward-image,
.membership .guide .reward-list .reward-card-list .reward-card .reward-image {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.membership .mypage .reward-list .reward-card-list .reward-card .reward-detail-wrapper,
.membership .guide .reward-list .reward-card-list .reward-card .reward-detail-wrapper {
  margin: 0 10px 0 0 !important;
}
@media only screen and (min-width: 1200px) {
  .membership .mypage .reward-list .reward-card-list .reward-card,
.membership .guide .reward-list .reward-card-list .reward-card {
    width: calc(25% - 1px);
  }
}

.exchange-point-icon path {
  fill: rgba(var(--font-clr)) !important;
}

@media only screen and (min-width: 768px) {
  .membership .draft {
    margin: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .membership .draft {
    width: 800px;
    margin: 40px auto;
  }
}
.membership .draft .definition-description {
  background: rgba(var(--main-clr), 0.1) !important;
  gap: 10px !important;
  padding: 30px 20px !important;
  color: rgba(var(--font-clr)) !important;
}
.membership .draft .definition-description .point-amount {
  font-size: 32px !important;
  line-height: 2;
}
.membership .draft .definition-description .point-expiry-date {
  color: rgba(var(--font-clr)) !important;
}
.membership .draft .definition-description .point-history {
  gap: 5px;
  flex-wrap: wrap;
}
.membership .draft .definition-description .point-history .link {
  color: rgba(var(--font-clr));
}
.membership .draft .definition-description .point-history a {
  font-size: 12px !important;
  line-height: 2 !important;
}
.membership .draft .definition-description .point-history a:not(:first-child)::before {
  content: "／";
  margin-right: 5px;
  display: inline-block;
  text-decoration: none;
}
.membership .draft .definition-description .definition-term {
  width: 100%;
  text-align: center;
  font-weight: normal !important;
}

.bg-darkcolor .membership .mypage .info,
.bg-darkcolor .membership .draft .info {
  background: transparent;
  box-shadow: none !important;
}
.bg-darkcolor .membership .mypage .info .content .definition-description,
.bg-darkcolor .membership .draft .info .content .definition-description {
  background: rgba(var(--font-clr), 0.15) !important;
}
.bg-darkcolor .membership .guide .register {
  background: rgba(var(--font-clr), 0.15) !important;
}
.bg-darkcolor .membership .guide .about-point,
.bg-darkcolor .membership .draft .about-point {
  background: rgba(var(--font-clr), 0.15) !important;
  border: none;
  box-shadow: none;
}
.bg-darkcolor #membership > .login {
  background: rgba(var(--font-clr), 0.15) !important;
}

#pageLaw h2 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: normal;
  margin-bottom: 40px;
}
#pageLaw h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: normal;
  margin-top: 40px;
}
#pageLaw p {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
}
#pageLaw .atobaraiTerm,
#pageLaw .bnplTerm {
  position: relative;
  margin-top: 2em;
  padding: 2em;
  font-size: 10px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(var(--font-clr), 0.2);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#pageLaw .atobaraiTerm__title,
#pageLaw .bnplTerm__title {
  font-weight: bold;
}
#pageLaw .telnumValid__txt {
  color: #222;
}
.dark-mode #pageLaw .atobaraiTerm {
  color: var(--font-clr1);
}
#pageLaw .law-wrap .bnplTerm {
  background: transparent;
  border: 1px solid rgba(var(--font-clr), 0.2);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.privacy-wrap {
  overflow-x: hidden;
  margin: 20px;
}
@media only screen and (min-width: 768px) {
  .privacy-wrap {
    margin: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .privacy-wrap {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 auto;
  }
}
.privacy-wrap .ttl-h1 {
  font-size: 22px;
  font-size: 2.2rem;
  text-align: center;
  margin: 1.363em auto;
}
@media only screen and (min-width: 1200px) {
  .privacy-wrap .ttl-h1 {
    font-size: 35px;
    font-size: 3.5rem;
    margin: 1.714em auto 0 auto;
  }
}

#privacy {
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--font-clr);
}
.priv-wrap #privacy {
  position: relative;
}
.priv-wrap #privacy::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0;
  bottom: 0;
  border-top: solid 1px;
  border-color: var(--font-clr);
  opacity: 0.3;
}
@media only screen and (min-width: 1200px) {
  #privacy {
    font-size: 12px;
    font-size: 1.2rem;
    margin: 0 auto;
    padding: 0;
  }
}
#privacy h2 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: normal !important;
  margin-bottom: 40px;
}
#privacy .privacy_intro {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 4.285em;
}
#privacy dl > dd {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 3.571em;
}
#privacy dl > dd:last-of-type {
  margin-bottom: 0;
}
#privacy dl ul {
  margin-top: 2em;
  padding: 2em;
  font-size: 10px;
  font-size: 1rem;
  border: 1px solid rgba(var(--font-clr), 0.5);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
}
#privacy dl ul li {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}
#privacy dl ul li + li {
  margin-top: 0.714em;
}

#pagePrivacy.bg-darkcolor dl ul {
  background: rgba(var(--font-clr), 0.15);
  border: none !important;
}

#pageLaw.bg-darkcolor .bnplTerm {
  background: rgba(var(--font-clr), 0.15);
  border: none !important;
}

/*# sourceMappingURL=lookbook.css.map */