*, ::before, ::after {box-sizing: border-box;border-style: solid;border-width: 0;}html {line-height: 1.15;-webkit-text-size-adjust: 100%;-webkit-tap-highlight-color: transparent;}body {margin: 0;}main {display: block;}p, table, blockquote, address, pre, iframe, form, figure, dl {margin: 0;}h1, h2, h3, h4, h5, h6 {font-size: inherit;font-weight: inherit;margin: 0;}ul, ol {margin: 0;padding: 0;list-style: none;}dt {font-weight: bold;}dd {margin-left: 0;}hr {box-sizing: content-box;height: 0;overflow: visible;border-top-width: 1px;margin: 0;clear: both;color: inherit;}pre {font-family: monospace, monospace;font-size: inherit;}address {font-style: inherit;}a {background-color: transparent;text-decoration: none;color: inherit;}abbr[title] {text-decoration: underline dotted;}b, strong {font-weight: bolder;}code, kbd, samp {font-family: monospace, monospace;font-size: inherit;}small {font-size: 80%;}sub, sup {font-size: 75%;line-height: 0;position: relative;vertical-align: baseline;}sub {bottom: -0.25em;}sup {top: -0.5em;}svg, img, embed, object, iframe {vertical-align: bottom;}button, input, optgroup, select, textarea {-webkit-appearance: none;appearance: none;vertical-align: middle;color: inherit;font: inherit;background: transparent;padding: 0;margin: 0;border-radius: 0;text-align: inherit;text-transform: inherit;}[type="checkbox"] {-webkit-appearance: checkbox;appearance: checkbox;}[type="radio"] {-webkit-appearance: radio;appearance: radio;}button, [type="button"], [type="reset"], [type="submit"] {cursor: pointer;}button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled {cursor: default;}:-moz-focusring {outline: auto;}select:disabled {opacity: inherit;}option {padding: 0;}fieldset {margin: 0;padding: 0;min-width: 0;}legend {padding: 0;}progress {vertical-align: baseline;}textarea {overflow: auto;}[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {height: auto;}[type="search"] {outline-offset: -2px;}[type="search"]::-webkit-search-decoration {-webkit-appearance: none;}::-webkit-file-upload-button {-webkit-appearance: button;font: inherit;}label[for] {cursor: pointer;}details {display: block;}summary {display: list-item;}[contenteditable]:focus {outline: auto;}table {border-color: inherit;border-collapse: collapse;}caption {text-align: left;}td, th {vertical-align: top;padding: 0;}th {text-align: left;font-weight: bold;}


/* base
------------------------------------------*/
html {
  font-size: 62.5%;
}
body {
  color: var(--textColorMain);
  font-size: 1.4rem;
  font-family: var(--bodyFontEn), var(--bodyFontJa), sans-serif;
  line-height: 1.3;
  letter-spacing: 0.08em;
  word-break: break-all;
  word-wrap: break-word;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--headFontEn), var(--headFontJa), sans-serif;
}
a {
  color: var(--textColorMain);
  transition: all 0.3s ease;
}
p {
  line-height: 1.8;
}
img {
  max-width: 100%;
}
label[for] {
  cursor: default;
}

.content {
  margin: 0 auto;
  padding: 0 4vw 10vh 4vw;
  max-width: calc(1200px + 8vw);
}
.home .content {
  padding: 0;
  max-width: 100%;
}

.header-search input,
.drawer-search input,
.inquirySection dl dd input,
.inquirySection dl dd textarea,
input.x_mailMagazineSubscribe_input,
input.itemOption__input,
select.x_i18nSelectBox,
select#valiationSelect,
select.itemOption__select,
select.amountSelect {
  outline: none !important;
  display: block;
  margin: 0 !important;
  padding: 8px !important;
  width: 100% !important;
  min-width: auto !important;
  color: #333 !important;
  font-family: var(--bodyFontEn), var(--bodyFontJa), sans-serif !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  background: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5) !important;
  transition: all 0.3s ease !important;
  appearance: none !important;
}
select.x_i18nSelectBox,
select#valiationSelect,
select.itemOption__select,
select.amountSelect {
  padding: 8px 24px 8px 8px !important;
  background: linear-gradient(45deg, #fff 50%, #333 50%) no-repeat center right
      12px / 4px 4px,
    linear-gradient(-45deg, #fff 50%, #333 50%) no-repeat center right 8px / 4px
      4px !important;
  background-color: #fff !important;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none !important;
}

.header-search input::placeholder,
.drawer-search input::placeholder,
input.x_mailMagazineSubscribe_input::placeholder,
input.itemOption__input::placeholder {
  opacity: 0.4 !important;
  color: #333 !important;
}

/* base overwrite
------------------------------------------*/
.msg_postBox__control__submit {
  text-align: center;
}
.purchaseButtonModal__input,
.purchaseButtonModal__inputArea,
.purchaseButtonModal__ageVerificationWarningText,
.communityModal,
.communityModal h1,
.communityModal a,
.msg_postBox__control__input,
#salesPeriodModal .salesPeriodModal__input {
  color: #333 !important;
}
.communityModal {
  overflow: auto;
  max-height: 90%;
}
/* drawer
------------------------------------------*/
.drawer-bg {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  z-index: 10000;
}
.drawer-bg.open {
  opacity: 1;
  visibility: visible;
}
.drawer {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  padding: 60px 30px 50px 30px;
  width: min(80%, 320px);
  height: 100vh;
  color: var(--drawerMenuText);
  background: var(--drawerMenuBg);
  z-index: 10001;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
.drawer.open {
  transform: translateX(0);
}
.drawer-close {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
}
.drawer-close:before,
.drawer-close:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 10px;
  width: 20px;
  height: 1px;
  background: var(--drawerMenuText);
  transform: rotate(45deg);
}
.drawer-close:after {
  transform: rotate(-45deg);
}
.drawer-search {
  display: flex;
  justify-content: space-between;
  margin: 0 0 30px 0;
  padding: 5px 5px 5px 15px;
  width: 100%;
  background: var(--drawerMenuSearchBg);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.drawer-search input {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  width: calc(100% - 34px) !important;
  height: auto !important;
  color: var(--drawerMenuSearchText) !important;
  font-size: 1.2rem !important;
  line-height: 1 !important;
  background: none !important;
  box-shadow: none !important;
}
.drawer-search input::placeholder {
  color: inherit !important;
}
.drawer-search button {
  width: 32px;
  height: 32px;
  text-align: center;
}
.drawer-search button svg {
  margin: 0 auto;
  width: 18px;
  fill: var(--drawerMenuText);
}
.drawer a {
  display: block;
  position: relative;
  padding: 8px 0;
  color: var(--drawerMenuText);
  font-size: 1.3rem;
}
.drawer a:hover {
  opacity: 0.7;
}
.drawer .appsItemCategoryTag_lowerchild {
  margin: 3px 0 8px 3px;
  padding: 6px 10px;
  border-left: var(--drawerMenuText) 1px solid;
}
.drawer .appsItemCategoryTag_lowerchild a {
  padding: 5px;
  font-size: 1.1rem;
}
.drawer-nav {
  margin: 30px 0 0 0;
}
.drawer-copyright {
  opacity: 0.5;
  margin: 40px 0 0 0;
  padding: 0 10px;
  font-size: 1.1rem;
  text-align: center;
}

/* header
------------------------------------------*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px min(4vw, 50px);
  width: 100%;
  height: 120px;
  background: var(--headerBg);
  z-index: 10;
}
.home .header {
  background: none;
}
.header h1 {
  margin: 0 auto 0 0;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}
.header h1 a {
  display: block;
  max-width: 200px;
}
.home .header h1 a {
  color: #fff;
}
.header h1 img {
  max-width: 200px;
  max-height: 40px;
}
.header.header-logosize2 h1 img {
  max-width: 225px;
  max-height: 55px;
}
.header.header-logosize3 h1 img {
  max-width: 250px;
  max-height: 70px;
}
.header-nav {
  margin: 0 0 0 auto;
}
.header-nav > ul {
  display: flex;
}
.header-nav > ul > li {
  position: relative;
  margin: 0 15px;
  font-size: 1.3rem;
}
.header-nav > ul > li > a {
  cursor: pointer;
  display: block;
  position: relative;
  padding: 8px 0;
  color: var(--headerText);
  font-weight: bold;
}
.home .header-nav > ul > li > a {
  color: #fff;
}
.header-nav > ul > li > a:hover {
  opacity: 0.7;
}
.base-menu ul {
  display: flex;
}
.base-menu ul li {
  margin: 0 0 0 8px;
}
.base-menu ul li a {
  display: block;
  position: relative;
  width: 38px;
  height: 38px;
  text-align: center;
  border-radius: 50%;
}
.base-menu ul li a:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--headerText);
  transform: translate(-50%, -50%);
  mask: no-repeat center center / contain;
  -webkit-mask: no-repeat center center / contain;
}
.home .base-menu ul li a:before {
  background: #fff;
}
.base-menu ul li a:hover {
  opacity: 0.7;
}
.base-menu ul li a img {
  display: none;
}
.cart-badge {
  display: block !important;

  .cart-qty {
    position: absolute;
    inset: -3px -7px auto auto;
    width: 18px;
    height: 18px;
    color: var(--headerText);
    font-size: 10px;
    text-align: center;
    line-height: 18px;
    border-radius: 10px;
    transition: all 0.3s ease;

    .home & {
      color: #fff;
    }
  }
}
.drawer-open {
  cursor: pointer;
  display: block;
  position: relative;
  margin: 0 0 0 15px;
  width: 38px;
  height: 38px;
}
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: "";
  position: absolute;
  top: 19px;
  left: 8px;
  width: 22px;
  height: 1px;
  background: var(--headerText);
  transition: all 0.3s ease;
}
.home .drawer-open span,
.home .drawer-open span:before,
.home .drawer-open span:after {
  background: #fff;
}
.drawer-open span:before {
  top: -6px;
  left: 0;
}
.drawer-open span:after {
  top: 6px;
  left: 0;
}
.drawer-open:hover span,
.drawer-open:hover span:before,
.drawer-open:hover span:after {
  left: 6px;
}

@media (max-width: 1000px) {
  .header {
    padding: 15px 4vw 15px;
    height: 60px;
  }
  .header h1 {
    margin: 0 auto 0 5px;
    font-size: 1.8rem;
  }
  .header h1 img {
    max-width: 120px;
    max-height: 30px;
  }
  .header.header-logosize2 h1 img {
    max-width: 135px;
    max-height: 40px;
  }
  .header.header-logosize3 h1 img {
    max-width: 150px;
    max-height: 50px;
  }
  .header-nav {
    display: none;
  }
}

/* mainvisual
------------------------------------------*/
.mainvisual-slick {
  opacity: 0;
  margin: -120px auto 0 auto;
  width: 100%;
  height: 100vh;
  transition: all 0.3s ease;
  z-index: -1;
}
.mainvisual-slick.slick-initialized {
  opacity: 1;
}
.mainvisual-slick .slick-list,
.mainvisual-slick .slick-track,
.mainvisual-slick .slick-slide {
  width: 100%;
  height: 100%;
}
.mainvisual-slick .slick-slide img.bg {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.slick-animation img.bg {
  animation: zoom 2s ease 0s both;
}
@keyframes zoom {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.mainvisual-slick-item {
  position: relative;
}
.mainvisual-slick-item .image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 60%;
}
.slick-animation .image {
  animation: fade 1s ease 1s both;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mainvisual-slick-item .image a:hover {
  opacity: 0.7;
}

.mainvisual-slick .slick-dots {
  display: flex;
  gap: 2px;
  position: absolute;
  bottom: 3vw;
  left: 50%;
  transform: translateX(-50%);
}
.mainvisual-slick .slick-dots li button {
  opacity: 0.2;
  width: 50px;
  height: 5px;
  font-size: 0;
  background: #fff;
  transition: all 1s ease;
}
.mainvisual-slick .slick-dots li.slick-active button {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .mainvisual-slick {
    margin: -60px auto 0 auto;
  }
  .mainvisual-slick .slick-dots {
    display: none !important;
  }
}

/* footer
------------------------------------------*/
.footer-wrap {
  background: var(--footerBgColor);
}
.footer {
  margin: 0 auto;
  padding: 4vh 4vw;
  max-width: calc(1200px + 8vw);
  text-align: center;
}
.mailmagazine {
  position: relative;
  margin: 0 auto 6vh auto;
  max-width: 600px;
  color: var(--footerTextColor);
}
.mailmagazine h2 {
  margin: 0 0 5px 0;
  color: var(--footerTextColor);
  font-size: 2.2rem;
  font-weight: bold;
}
.mailmagazine-text .text {
  opacity: 0.7;
  font-size: 1.1rem;
}
.mailmagazine-form {
  margin: 30px auto 0 auto;
  width: 260px;
  text-align: left;
}
.x_mailMagazineSubscribe_field {
  display: flex;
  justify-content: center;
}
input.x_mailMagazineSubscribe_input {
  margin: 0 5px 0 0 !important;
  padding: 12px !important;
  width: 185px !important;
  font-size: 1.2rem !important;
  box-shadow: none !important;
}
.x_mailMagazineSubscribe_field button {
  display: block;
  margin: 0;
  padding: 12px;
  width: 70px;
  height: auto;
  color: var(--footerTextColor);
  font-size: 1.2rem;
  font-weight: bold;
  font-family: var(--bodyFontEn), var(--bodyFontJa), sans-serif;
  text-align: center;
  background: inherit;
  border: var(--footerTextColor) 1px solid;
  border-radius: 0;
  transition: all 0.3s ease;
}
.x_mailMagazineSubscribe_field button:hover {
  opacity: 0.7;
}
.x_mailMagazineSubscribe_confirm {
  font-weight: bold;
}
.footer-logo {
  margin: 0 auto 15px auto;
}
.footer-logo img {
  margin: 0 auto;
  max-width: 140px;
  max-height: 32px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  word-break: normal;
}
.footer-nav li a {
  color: var(--footerTextColor);
  font-size: 1rem;
}
.footer-sns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 0 0;
}
.footer-sns > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
}
.footer-sns > li > a:hover {
  opacity: 0.7;
}
.footer-sns > li > a img {
  max-width: 22px;
  max-height: 22px;
}
.footer-sns > li.tw > a img {
  padding: 3px;
  background: #fff;
  border-radius: 4px;
}
.footer-bottom{
  position: relative;
  margin: 3vh 0 0 0;
  padding: 3vh 0 0 0;
}
.footer-bottom:before {
  content: '';
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--footerTextColor);
}
.footer #i18 {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 30px 0;
}
.footer #i18 > div select {
  padding: 0 22px 0 8px !important;
  min-width: auto !important;
  height: 32px !important;
  font-size: 1.2rem !important;
  line-height: 32px !important;
  box-shadow: none !important;
}
.copyright {
  opacity: 0.5;
  color: var(--footerTextColor);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .mailmagazine {
    display: block;
    text-align: center;
  }
  .mailmagazine h2 {
    margin: 0 0 5px 0;
    font-size: 2.2rem;
    font-weight: bold;
  }
  .mailmagazine-text .text {
    margin: 0 0 20px 0;
    font-size: 1rem;
  }
  .mailmagazine-form {
    width: 100%;
  }
  .mailmagazine-form input {
    text-align: left;
  }
  .footer {
    padding: 4vh 4vw 10vh 4vw;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-logo img {
    max-width: 80px;
  }
  .footer-nav {
    display: block;
    justify-content: center;
    margin: 0 0 4vh 0;
  }
  .footer-nav li {
    margin: 0 5px;
  }
  .footer-sns {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-sns > div {
    margin: 0 3px;
  }
  .footer-sns .apps-i18n {
    margin: 10px 0;
    width: 100%;
  }
  .footer-sns #i18 {
    justify-content: center;
  }
  .footer-sns #i18 > div {
    margin: 0 5px;
  }
  .copyright {
    text-align: center;
  }
}

/* index
------------------------------------------*/
.fixblog-wrap {
  color: var(--fixblogTextColor);
  background: var(--fixblogBgColor);
}
.fixblog {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 20px 5vw;
  max-width: calc(1600px + 10vw);
}
.fixblog h2 {
  margin: 0 20px 0 0;
  padding: 0 20px 0 0;
  font-weight: bold;
  line-height: 1.8;
  white-space: nowrap;
  border-right: var(--fixblogTextColor) 1px solid;
}
.fixblog p a {
  color: var(--fixblogTextColor);
}

@media (max-width: 768px) {
  .fixblog {
    font-size: 1.2rem;
  }
}

.slidebanner {
  padding: 5vh 0 0 0;
}
.slidebanner-slick-item {
  padding: 0 12px;
}
.slidebanner-slick-item a {
  overflow: hidden;
  display: block;
  position: relative;
  border-radius: 6px;
}
.slidebanner-slick-item a img {
  object-fit: cover;
  width: 100%;
  height: 18vw;
  transition: all 0.3s ease;
}
.slidebanner-slick-item a:hover img {
  transform: scale(1.1);
}
.slidebanner-slick-item a p {
  position: absolute;
  bottom: 18px;
  right: 18px;
  padding: 0 30px 0 0;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
  z-index: 1;
}
.slidebanner-slick-item a p:after {
  content: '>';
  position: absolute;
  top: 50%;
  right: 0;
  padding: 3px 0 0 2px;
  width: 22px;
  height: 22px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
  text-align: center;
  line-height: 1;
  border: #fff 1px solid;
  transform: translateY(-50%);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .slidebanner-slick-item {
    padding: 0 8px;
  }
  .slidebanner-slick-item a img {
    height: 35vw;
  }
}

.information {
  margin: 0 auto;
  padding: 7vh 4vw;
}
.information h2 {
  position: relative;
  margin: 0 0 4vh 0;
  padding: 0 0 15px 0;
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
}
.information h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--textColorMain);
  transform: translateX(-50%);
}
.information ul {
  margin: 0 auto;
  max-width: 800px;
}
.information ul li {
  display: flex;
  position: relative;
  margin: 20px 0;
}
.information ul li .information-date {
  opacity: 0.5;
  width: 120px;
}
.information ul li .information-text {
  width: calc(100% - 120px);
}
.information ul li .information-text a {
  text-decoration: underline;
}
.information ul li .information-text a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .information {
    margin: 0 auto;
    padding: 7vh 12vw;
  }
  .information h2 {
    font-size: 2.8rem;
  }
  .information ul li {
    display: block;
  }
  .information ul li .information-date {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
  }
  .information ul li .information-text {
    width: 100%;
  }
}

.message {
  display: flex;
  position: relative;
  margin: 0 auto;
  max-width: 2000px;
}
.slidebanner + .message {
  margin: 7vh auto 0 auto;
}
.message-image {
  width: 55%;
}
.message-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.message-main {
  display: flex;
  align-items: center;
  position: relative;
  padding: 4vw;
  width: 45%;
  background: var(--message01Bg);
  z-index: 1;
}
.message-main-inner {
  width: 100%;
}
.message-main h2 {
  margin: 0 0 4vw 0;
  color: var(--message01Text);
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
}
.message-main p {
  margin: 0 auto 20px auto;
  width: fit-content;
  color: var(--message01Text);
  line-height: 2.2;
  white-space: pre-line;
}
.message-main .btn {
  margin: 4vw 0 0 0;
  text-align: center;
}
.message-main .btn a {
  display: block;
  margin: 0 auto;
  padding: 12px;
  width: 120px;
  color: var(--message01Text);
  font-size: 1.2rem;
  text-align: center;
  border: var(--message01Text) 1px solid; 
}

.message02 {
  flex-direction: row-reverse;
}
.message02 .message-main {
  background: var(--message02Bg);
}
.message02 .message-main h2 {
  color: var(--message02Text);
}
.message02 .message-main p {
  color: var(--message02Text);
}
.message02 .message-main .btn a {
  color: var(--message02Text);
  border: var(--message02Text) 1px solid; 
}

@media (max-width: 768px) {
  .message {
    display: block;
  }
  .message-image {
    width: 100%;
  }
  .message-main {
    display: block;
    padding: 12vw;
    width: 100%;
  }
  .message-main h2 {
    margin: 0 0 6vw 0;
    font-size: 2rem;
  }
  .message-main .btn {
    margin: 12vw 0 0 0;
  }
}

.instagram {
  margin: 0 auto;
  padding: 0 4vw 7vh 4vw;
  max-width: calc(1200px + 8vw);
  color: var(--newBlogText);
}
.instagram h2 {
  position: relative;
  margin: 0 0 4vh 0;
  padding: 0 0 15px 0;
  color: var(--newBlogText);
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
}
.instagram h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--newBlogText);
  transform: translateX(-50%);
}
.instagram-more {
  margin: 40px 0 0 0;
  text-align: center;
}
.instagram-more a {
  cursor: pointer;
  display: block;
  margin: 0 auto;
  padding: 20px;
  width: 220px;
  color: var(--newBlogText);
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  border: var(--newBlogText) 1px solid;
  border-radius: 0;
  transition: all 0.3s ease;
}
.instagram-more a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .instagram h2 {
    font-size: 2.8rem;
  }
}

.newblog-wrap {
  background: var(--newBlogBg);
}
.newblog {
  margin: 0 auto;
  padding: 7vh 4vw;
  max-width: calc(1200px + 8vw);
  color: var(--newBlogText);
}
.newblog h2 {
  position: relative;
  margin: 0 0 4vh 0;
  padding: 0 0 15px 0;
  color: var(--newBlogText);
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
}
.newblog h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--newBlogText);
  transform: translateX(-50%);
}
.newblog-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.newblog-list-item .image {
  margin: 0 0 20px 0;
}
.newblog-list-item .image a img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.newblog-list-item .image a:hover img {
  opacity: 0.7;
}
.newblog-list-item .title {
  font-weight: bold;
}
.newblog-list-item .date {
  opacity: 0.7;
  margin: 8px 0 0 0;
  font-size: 1.2rem;
}
.newblog-more {
  margin: 40px 0 0 0;
  text-align: center;
}
.newblog-more a {
  cursor: pointer;
  display: block;
  margin: 0 auto;
  padding: 20px;
  width: 220px;
  color: var(--newBlogText);
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  border: var(--newBlogText) 1px solid;
  border-radius: 0;
  transition: all 0.3s ease;
}
.newblog-more a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .newblog h2 {
    font-size: 2.8rem;
  }
  .newblog-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4vh 10px;
  }
  .newblog-list-item .image {
    margin: 0 0 10px 0;
  }
}

.not-shop-pablic {
  padding: 200px 0;
  text-align: center;
}
.home .item-list-wrap {
  margin: 0 auto;
  padding: 7vh 4vw;
  max-width: calc(1200px + 8vw);
}
.item-list-wrap h2 {
  position: relative;
  margin: 0 0 4vh 0;
  padding: 0 0 15px 0;
  color: var(--textColorHead);
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
}
.item-list-wrap h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--textColorMain);
  transform: translateX(-50%);
}
.item-list {
  display: grid;
  grid-template-columns: repeat(var(--itemListItemNum), 1fr);
  gap: 40px;
}
.item-list-item {
  position: relative;
}
.item-list-item .label_image {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 50px;
  z-index: 2;
}
.item-list-item .image {
  position: relative;
  margin: 0 0 20px 0;
}
.item-list-item .image a img {
  aspect-ratio: var(--itemListItemAspect);
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.item-list-item .image a:hover {
  opacity: 0.7;
}
.item-list-item .image .soldout {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--noticeColor);
  font-weight: bold;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.item-list-item .text a {
  display: block;
}
.item-list-item .text a:hover {
  opacity: 0.7;
}
.item-list-item .text .name {
  font-weight: bold;
}
.item-list-item .text .price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin: 8px 0 0 0;
}
.item-list-item .text .price .rate {
  margin: 0 5px 0 0;
  padding: 5px;
  color: var(--noticeColor);
  font-size: 1rem;
  font-weight: bold;
  border: var(--noticeColor) 1px solid;
}
.item-list-item .text .price .current {
  color: var(--noticeColor);
}
.item-list-item .text .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 8px 0 0 0;
}
.item-list-item .text .tags div {
  padding: 5px;
  color: var(--textColorMain);
  font-size: 1rem;
  font-weight: bold;
  border: var(--textColorMain) 1px solid;
}
.item-list-more {
  display: none;
  justify-content: center;
  margin: 40px 0 0 0;
}
.item-list-more.show {
  display: flex;
}
.item-list-more span {
  cursor: pointer;
  display: block;
  padding: 20px;
  width: 220px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  border: var(--textColorMain) 1px solid;
  border-radius: 0;
  transition: all 0.3s ease;
}
.item-list-more span:hover {
  opacity: 0.7;
}
.item-list-loading {
  display: none;
  justify-content: center;
  gap: 6px;
  padding: 60px 0;
}
.item-list-loading.show {
  display: flex;
}
.item-list-loading span {
  opacity: 0.5;
  width: 8px;
  height: 8px;
  background: var(--textColorMain);
  animation: 0.9s bounce infinite alternate;
}
.item-list-loading span:nth-child(2) {
  animation-delay: 0.3s;
}
.item-list-loading span:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes bounce {
  to {
    opacity: 0.2;
    transform: translate3d(0, -5px, 0);
  }
}

@media (max-width: 768px) {
  .item-list-wrap h2 {
    font-size: 2.8rem;
  }
  .not-shop-pablic {
    padding: 50px 0;
    text-align: center;
  }
  .item-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4vh 10px;
  }
  .item-list-item .image {
    margin: 0 0 10px 0;
  }
}

/* item
------------------------------------------*/
.item {
  display: flex;
  padding: 4vh 0 0 0;
}
.item-image {
  position: relative;
  width: 65%;
}
.item-detail {
  padding: 0 0 0 60px;
  width: 35%;
}
.item-image .label_image {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 70px;
  z-index: 1;
}
.item-image-slick {
  opacity: 0;
  margin: 0 0 5px 0;
  transition: all 0.3s ease;
}
.item-image-slick.slick-initialized {
  opacity: 1;
}
.item-image-slick img {
  width: 100%;
}
.item-image-slick-thumbnail {
  opacity: 0;
  transition: all 0.3s ease;
}
.item-image-slick-thumbnail.slick-initialized {
  opacity: 1;
}
.item-image-slick-thumbnail .slick-track {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
  width: 100% !important;
  transform: unset !important;
}
.item-image-slick-thumbnail .slick-track:before,
.item-image-slick-thumbnail .slick-track:after {
  display: none;
}
.item-image-slick-thumbnail .slick-slide {
  cursor: pointer;
  opacity: 0.7;
  display: block !important;
  float: none !important;
  width: 100% !important;
  aspect-ratio: 1 / 1;
  transition: all 0.3s ease;
}
.item-image-slick-thumbnail .slick-slide:hover {
  opacity: 1;
}
.item-image-slick-thumbnail .slick-slide.slick-current {
  opacity: 1;
}
.item-image-slick-thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.item-detail h1 {
  margin: 0 0 20px 0;
  color: var(--textColorHead);
  font-size: 2rem;
}
.item-detail .price {
  margin: 0 0 20px 0;
}
.item-detail .price .default {
  font-size: 3rem;
}
.item-detail .price .default span {
  opacity: 0.7;
  margin: 0 0 0 5px;
  font-size: 1.2rem;
}
.item-detail .price div:first-child {
  display: flex;
  align-items: center;
  margin: 0 0 5px 0;
}
.item-detail .price .normal {
  opacity: 0.7;
  font-size: 1.2rem;
  text-decoration: line-through;
}
.item-detail .price .rate {
  margin: 0 0 0 5px;
  padding: 2px 5px;
  color: #fff;
  font-size: 1rem;
  background: var(--noticeColor);
  border-radius: 0;
}
.item-detail .price .current {
  color: var(--noticeColor);
  font-size: 3rem;
}
.item-detail .price .current span {
  opacity: 0.7;
  margin: 0 0 0 5px;
  font-size: 1.2rem;
}
.item-detail .soldout,
.item-detail .coming-soon {
  color: var(--noticeColor);
}
#itemAttention {
  margin: 20px 0;
  font-size: 1.2rem;
  line-height: 1.8;
}
#itemAttention .communityLabel,
#itemAttention .salesPeriod--term,
#itemAttention .preOrder,
#itemAttention .lottery,
#itemAttention .takeout {
  margin: 20px 0;
  padding: 15px;
  color: var(--textColorMain);
  font-weight: bold;
  background: none;
  border: var(--textColorMain) 1px dashed;
}
#itemAttention .communityLabel__title,
#itemAttention .lottery__label,
#itemAttention .takeout__label {
  font-size: 1.4rem !important;
}
#itemAttention .communityLabel .communityLabel__note {
  margin: 0;
  font-size: 1.2rem !important;
}
.item-detail .item-description {
  margin: 20px 0;
  font-size: 1.3rem;

  a {
    text-decoration: underline;
  }
}
.item-detail #purchase_form {
  margin: 4vh 0;
}
.purchaseElement,
.itemOptionElement {
  margin: 0 0 20px 0;
}
.purchaseElement label,
.itemOptionElement label {
  display: block;
  margin: 0 0 8px 0;
  font-weight: bold;
}
.itemOption__caption {
  margin: 3px 0 8px 0;
  font-size: 1rem;
}
.itemOption__caption--error {
  display: block;
  margin: 5px 0 0 0;
  color: #d00;
  font-size: 1.2rem;
}
.itemOption__count {
  margin: 3px 0 0 0;
  font-size: 1rem;
  text-align: right;
}
.ageVerificationWarning {
  opacity: 0.7;
  margin: 20px 0 !important;
  color: var(--textColorMain) !important;
  font-size: 3.1rem !important;
  line-height: 1.3 !important;
}
.easyOverseasSales {
  display: block;
  margin: 3rem 0 0 0;
  padding: 0;

  span.easyOverseasSales__label {
    display: block;
    color: var(--textColorMain);
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
  }

  .easyOverseasSalesArea {
    margin: 2rem 0 0 0;
    text-align: center;

    a.easyOverseasSalesArea__link {
      color: inherit;
      font-size: 1.3rem;
    }
  }
}
.purchaseButton button,
.purchaseButton a:not(.easyOverseasSalesArea__link) {
  display: block;
  margin: 20px 0 0 0;
  padding: 20px;
  width: 100%;
  color: var(--btnTextColor);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  background: var(--btnBgColor);
  border-radius: 0;
  transition: all 0.3s ease;
}
.purchaseButton button:hover,
.purchaseButton a:hover {
  opacity: 0.7;
}
.purchaseButton button:disabled {
  opacity: 0.5;
}
#communityPurchase .communitySignin {
  margin: 4vh 0 !important;
  padding: 15px !important;
  border: var(--textColorMain20) 1px solid;
  border-radius: 0 !important;
}
.item-sns-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.item-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
}
.item-sns .title {
  margin: 0 18px 0 0;
}
.item-sns div a {
  display: flex;
  align-items: center;
}
.item-sns div a img {
  margin: 0 7px 0 0;
  width: 15px;
}
.item-sns div.twitter a img {
  padding: 2px;
  background: #fff;
  border-radius: 4px;
}
#reportBtn {
  font-size: 1.2rem;
}
#appsItemDetailCustom {
  margin: 7vh 0 0 0;
}
#appsItemDetailCustomTag p,
#appsItemDetailCustomTag > div,
#appsItemDetailCustomTag > img {
  margin: 0 0 20px 0;
}
.appsItemDetailCustomTag_heading {
  font-size: 1.6rem;
  font-weight: bold;
}
.appsItemDetailCustomTag_image {
  width: 100%;
}
#appsItemDetailCustomTag iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
.baseCarouselItems .slick-slide {
  position: relative;
}
.baseCarouselItems .slick-slide img {
  width: 100%;
}
.baseCarouselItems .slick-slide .baseCarouselCaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  color: #fff;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.baseCarouselItems .slick-slide .baseCarouselCaption:empty {
  background: none;
}
.baseCarouselItems {
  opacity: 0;
  transition: all 0.3s ease;
}
.baseCarouselItems.slick-initialized {
  opacity: 1;
}
.baseCarouselCaption {
  opacity: 0.7;
  margin: 5px 0 0 0 !important;
  font-size: 1.2rem;
  text-align: center;
}
.baseCarouselItems .slick-prev,
.baseCarouselItems .slick-next {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 33px;
  width: 32px;
  height: 32px;
  color: #fff;
  font-size: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.baseCarouselItems .slick-next {
  right: 0;
}
.baseCarouselItems .slick-prev:before,
.baseCarouselItems .slick-next:before {
  content: "";
  margin: 0 -2px 0 0;
  width: 6px;
  height: 6px;
  border-top: #fff 2px solid;
  border-left: #fff 2px solid;
  transform: rotate(-45deg);
}
.baseCarouselItems .slick-next:before {
  margin: 0 0 0 -2px;
  transform: rotate(135deg);
}
.baseCarouselItems .slick-prev:hover,
.baseCarouselItems .slick-next:hover {
  opacity: 0.7;
}

.related-items {
  margin: 7vh 0 0 0;
}
.related-items h2 {
  position: relative;
  margin: 0 0 4vh 0;
  padding: 0 0 15px 0;
  color: var(--textColorHead);
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
}
.related-items h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--textColorMain);
  transform: translateX(-50%);
}
.related-items ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.related-items ul li .image {
  margin: 0 0 20px 0;
}
.related-items ul li .image a img {
  aspect-ratio: var(--itemListItemAspect);
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.related-items ul li .image a:hover img {
  opacity: 0.7;
}
.related-items ul li .name {
  font-weight: bold;
}
.related-items ul li .price {
  margin: 8px 0 0 0;
}
.review01__title {
  margin: 50px 0 0 0;
}

@media (max-width: 768px) {
  .item {
    display: block;
  }
  .item-image {
    margin: 0 0 7vh 0;
    width: 100%;
  }
  .item-detail {
    padding: 0;
    width: 100%;
  }
  .item-image-slick-thumbnail .slick-track {
    grid-template-columns: repeat(5, 1fr);
  }
  .related-items h2 {
    font-size: 2.8rem;
  }
  .related-items ul {
    gap: 10px;
  }
  .related-items ul li .image {
    margin: 0 0 10px 0;
  }
}

/* common
------------------------------------------*/
.breadcrumb {
  display: flex;
  padding: 10px 0;
  border-bottom: var(--textColorMain20) 1px solid;
}
.breadcrumb li {
  opacity: 0.7;
  font-size: 1rem;
}
.breadcrumb li:not(:last-child):after {
  content: ">";
  margin: 0 10px;
}
.page-title {
  padding: 7vh 0 6vh 0;
  color: var(--textColorHead);
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}
.page-title-category ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -4vh 0 6vh 0;
}
.page-title-category ul li {
  margin: 0 10px;
}
.page-title-category ul li a {
  display: block;
  position: relative;
  padding: 8px 0;
  font-size: 1.2rem;
}
.page-title-category ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--textColorMain);
  transition: all 0.3s ease;
}
.page-title-category ul li a:hover:after {
  width: 100%;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 3rem;
  }
}

/* about
------------------------------------------*/
.about-image {
  margin: 0 0 4vh 0;
}
.about-text a {
  text-decoration: underline;
}
.about-sns {
  display: flex;
  margin: 4vh 0 0 0;
}
.about-sns li {
  margin: 0 10px 0 0;
}
.about-h3 {
  margin: 7vh 0 4vh 0;
  font-size: 3.2rem;
  font-weight: bold;
}
.about-googlemap {
  margin: 7vh 0 0 0;
}
.about-googlemap iframe {
  width: 100% !important;
}

@media (max-width: 768px) {
  .about-h3 {
    font-size: 2.8rem;
  }
}

/* blog
------------------------------------------*/
.blogListMain,
.blogDetail {
  margin: 0 auto;
  max-width: 800px;
}
.blog_inner {
  margin: 0 0 7vh 0;
  padding: 0 !important;
  border: none !important;
}
.blog_inner:last-child {
  margin: 0 !important;
}
.main #about.blogListMain h2,
.main #about.blogDetail .blog_title h2 {
  margin: 0 0 10px 0 !important;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.3 !important;
}
.main #about.blogListMain .blog_publish,
.main #about.blogDetail .blog_publish {
  opacity: 0.7;
  margin: 0 0 4vh 0 !important;
  font-size: 1.2rem !important;
}
.main #about.blogListMain .blog_publish .publish_date,
#about .publish_date {
  font-size: inherit !important;
}
.blog_head_image {
  margin: 0 0 20px 0;
}
.blog_head_image.hide {
  display: none;
}
.blog_head_image img {
  width: 100%;
  transition: all 0.3s ease;
}
.blog_head_image a:hover img {
  opacity: 0.7;
}
.blog_inner .blog_contents {
  overflow: auto !important;
  height: auto !important;
}
.blog_inner .blog_contents .read_more {
  position: relative !important;
  bottom: auto !important;
  margin: 4vh 0 0 0 !important;
  padding: 0 !important;
  background: none !important;
}
.read_more a {
  cursor: pointer;
  display: block;
  margin: 0 auto;
  padding: 20px;
  width: 220px;
  color: var(--btnTextColor) !important;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  background: var(--btnBgColor);
  border-radius: 0;
  transition: all 0.3s ease;
}
.social {
  margin: 7vh 0 0 0 !important;
}
.blog_body > p,
.blog_body > div {
  margin: 20px 0;
}
.blog_body h3 {
  margin: 40px 0 20px 0;
}
.blog_body .youtube,
.blog_body .vimeo {
  width: 100%;
  height: 400px;
}

.paginate-wrp {
  margin: 7vh 0 0 0 !important;
}
.paginate-wrp .paginate {
  justify-content: center;
  gap: 5px;
}
.paginate-wrp .paginate li,
.paginate-wrp .paginate li.current {
  margin: 0 !important;
  font-weight: bold;
  background: none;
  border: none;
}
.paginate-wrp .paginate li a,
.paginate-wrp .paginate li a:hover,
.paginate-wrp .paginate li.current a {
  display: block;
  padding: 10px 12px;
  color: var(--textColorMain);
  font-size: 1.2rem;
  line-height: 1;
  background: none;
  border: var(--textColorMain) 1px solid;
  border-radius: 0;
}
.paginate-wrp .paginate li.current a,
.paginate-wrp .paginate li.current a:hover {
  background: var(--textColorMain20);
}
.paginate-wrp .paginate li a:hover {
  opacity: 0.7;
}
.paginate-wrp .paginate li.prev a,
.paginate-wrp .paginate li.next a {
}

@media (max-width: 768px) {
  .main #about.blogListMain h2,
  .main #about.blogDetail .blog_title h2 {
    font-size: 2.8rem;
  }
  .blog_body .youtube,
  .blog_body .vimeo {
    height: 240px;
  }
}

/* privacy, law, contact
------------------------------------------*/
#privacy,
#law,
.inquirySection {
  margin: 0 auto;
  max-width: 800px;
}
#privacy h2,
#law h2,
.inquirySection h1 {
  padding: 7vh 0 5vh 0;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}
#law h3 {
  margin: 5vh 0 2vh 0;
  font-size: 1.8rem;
  font-weight: bold;
}
#privacy p.privacy_intro {
  margin: 0 0 5vh 0;
}
#privacy dl dt,
#law dl dt {
  margin: 0 0 2vh 0;
  font-size: 1.8rem;
}
#privacy dl dd,
#law dl dd {
  margin: 0 0 5vh 0;
  line-height: 1.8;
}

.inquirySection h1 {
  padding: 7vh 0 1vh 0;
  text-transform: uppercase;
}
.inquirySection p {
  margin: 0 0 7vh 0;
  text-align: center;
}
.inquirySection dl dt {
  margin: 5vh 0 2vh 0;
}
.inquirySection dl dt:first-child {
  margin: 0 0 2vh 0;
}
.inquirySection dl dt span {
  margin: 0 0 0 5px;
  color: var(--noticeColor);
  font-size: 1.2rem;
}
.inquirySection dl dd.error {
  margin: 5px 0 0 0;
  color: #d00;
  font-size: 1.2rem;
}
.inquirySection dl dd input {
  padding: 12px !important;
}
.inquirySection dl dd textarea {
  padding: 12px !important;
  height: 300px;
}
.inquirySection input[type="submit"] {
  cursor: pointer;
  display: block;
  margin: 7vh auto 0 auto;
  padding: 20px;
  width: 220px;
  color: var(--btnTextColor);
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: inherit !important;
  background: var(--btnBgColor);
  border-radius: 0;
  transition: all 0.3s ease;
}
.inquirySection input[type="submit"]:hover {
  opacity: 0.7;
}
#inquiryCompleteSection {
  text-align: center;
}
#inquiryCompleteSection a {
  text-decoration: underline;
}

@media (max-width: 768px) {
  #privacy h2,
  #law h2,
  .inquirySection h1 {
    font-size: 3rem;
  }
}

/* membership
------------------------------------------*/
#membership {
  --checked-color: var(--btnBgColor) !important;
  padding: 30px 0 0 0 !important;
}
.membership .guide .img-wrapper {
  margin: 0 calc(50% - var(--vw) * 50) !important;
  width: calc(var(--vw) * 100) !important;
  height: 500px !important;
}
.membership .guide .img-wrapper .img {
  height: 100% !important;
}
.membership .content {
  padding: 0;
  max-width: 100%;
}
.membership .guide .content .heading,
.membership .login .heading {
  margin: 0 !important;
  padding: 7vh 0;
  color: var(--textColorHead);
  font-size: 4rem !important;
  font-weight: bold !important;
  text-align: center;
  line-height: 1.3 !important;
}
.membership .guide .content .description {
  margin: 0 !important;
}
.membership .guide .content .description > p {
  font-size: 1.4rem !important;
  font-weight: normal !important;
  line-height: 1.8 !important;
  text-align: center;
}
.membership .guide .register {
  margin: 7vh 0 0 0 !important;
  padding: 5vw !important;
  background: var(--textColorMain10) !important;
}
.membership .guide .register .description-link,
.membership .guide .register .login-link,
.membership .login .register-link {
  color: var(--textColorMain) !important;
}
.membership .guide .register .mail-magazine .mail-magazine-wrapper .label {
  color: var(--textColorMain) !important;
}
.membership .guide .register .link,
.membership .login .link {
  color: var(--btnTextColor) !important;
  background: var(--btnBgColor) !important;
}

.membership .flash-message {
  margin: 0 0 30px 0 !important;
}
.membership .mypage .img-wrapper {
  margin: 0 0 30px 0 !important;
}
.membership .mypage .logout {
  color: var(--textColorMain) !important;
  background: none !important;
}
.membership .mypage .card {
  background: var(--textColorMain10) !important;
  border: var(--textColorMain20) 1px solid !important;
}
.membership .mypage .content .bar {
  background: var(--textColorMain20) !important;
}
.membership .mypage .content .definition-description .mail-address,
.membership .mypage .content .definition-description .point-amount {
  background: var(--textColorMain10) !important;
}
.membership .mypage .content .definition-description .edit {
  color: var(--textColorMain) !important;
  background: none !important;
  border: var(--textColorMain) 2px solid !important;
}
.membership .mypage .leave-wrapper .leave {
  color: var(--textColorMain) !important;
  background: none !important;
}
.membership .mypage .leave-modal-wrapper .leave-overlay {
  z-index: 9999 !important;
}
.membership .mypage .leave-modal-wrapper .leave-modal {
  z-index: 10000 !important;
}

@media (max-width: 768px) {
  .membership .guide .img-wrapper {
    height: 200px !important;
  }
  .membership .guide .img-wrapper .img {
    object-fit: cover !important;
  }
  .membership .mypage .img-wrapper .img {
    max-height: 100% !important;
  }
  .membership .mypage .card {
    max-width: 100% !important;
  }
  .membership .guide .content .heading,
  .membership .login .heading {
    font-size: 3rem !important;
  }
}

/* community
------------------------------------------*/
.communityMain {
  padding: 0 !important;
  width: 100% !important;
}
.communityMain h1.communityTitle {
  padding: 7vh 0 5vh 0;
  color: var(--textColorHead);
  font-size: 4rem;
  font-weight: bold;
}
.communityMain .communityContent {
  margin: 0 !important;
  padding: 4vh !important;
  border: var(--textColorMain20) 1px solid !important;
}
.communityMain .communityNav {
  margin: 0 0 0 40px !important;
  width: 380px !important;
}
.communityMain .communityTerm a {
  color: var(--textColorMain) !important;
}
.communityMain .communityOverview {
  width: calc(100% - 420px) !important;
}
.communityMain .communityOverview.width100 {
  width: 100% !important;
}
.communityMain .communitySignin {
  border: var(--textColorMain20) 1px solid !important;
}
.communityMain #limitedItem,
.communityMain #limitedUrl {
  width: 100% !important;
}
.communityMain .communityItemHeader,
.communityMain .communityUrlHeader {
  position: relative !important;
  margin: 7vh 0 4vh 0 !important;
  padding: 0 0 15px 0 !important;
  color: var(--textColorHead) !important;
  font-size: 3.2rem !important;
  font-weight: bold !important;
  font-family: var(--headFontEn), var(--headFontJa), sans-serif !important;
  text-align: center !important;
}
.communityMain .communityItemHeader:after,
.communityMain .communityUrlHeader:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--textColorMain);
  transform: translateX(-50%);
}
.communityMain .communityItems {
  display: grid !important;
  grid-template-columns: repeat(var(--itemListItemNum), 1fr);
  gap: 40px;
}
.communityMain .communityItems .communityItem {
  margin: 0 !important;
}
.communityMain .communityItems .communityItem .communityImageContainer {
  display: block !important;
  margin: 0 0 20px 0;
  width: 100% !important;
  height: auto !important;
}
.communityMain .communityItems .communityItem .communityImageContainer img {
  aspect-ratio: var(--itemListItemAspect);
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.communityMain
  .communityItems
  .communityItem
  .communityImageContainer
  a:hover
  img {
  opacity: 0.7;
}
.communityMain .communityItems .communityItem .communityLabelImage {
  top: -8px !important;
  left: -8px !important;
  width: 50px !important;
  height: auto !important;
}
.communityMain .communityItems .communityItem .communityItemTitle {
  margin: 0 !important;
  width: auto !important;
}
.communityMain .communityItems .communityItem .communityItemPrice {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 5px !important;
  margin: 8px 0 0 0 !important;
  font-size: 1.4rem !important;
}
.communityMain .communityItems .communityItem .communityItemPrice.discount {
  color: var(--noticeColor) !important;
}
.communityMain .communityItems .communityItem .communityItemPrice.discount .discount {
  margin: 0 5px 0 0 !important;
  padding: 5px !important;
  color: var(--noticeColor) !important;
  font-size: 1rem !important;
  font-weight: normal !important;
  background: inherit !important;
  border: var(--noticeColor) 1px solid !important;
  border-radius: 0 !important;
}
.communityMain .communityItems .communityItem .communityItemLabel,
.communityMain .communityItems .communityItem .communityItemLabelBlock {
  display: inline-block !important;
  margin: 8px 0 0 0 !important;
  padding: 5px !important;
  color: var(--textColorMain) !important;
  font-size: 1rem !important;
  font-weight: normal !important;
  background: inherit !important;
  border: var(--textColorMain) 1px solid !important;
  border-radius: 0 !important;
}
.communityMain .communityItems .communityItem .communityItemMetaSub {
  margin: 0 !important;
}
.communityMain #productsLimitedUrl {
  gap: 40px;
}
.communityMain #productsLimitedUrl .urlBox {
  margin: 0 !important;
  width: calc((100% / 3) - (80px / 3)) !important;
  border: none !important;
  background: var(--textColorMain10) !important;
  border-radius: 0 !important;
}
.communityMain .communityModalTextNotice {
  margin: 7vh 0 0 0 !important;
  text-align: center !important;
}
.communityMain .communityModalTextNotice a {
  text-decoration: underline;
}
.communityMain .openLeaveModal {
  margin: 5vh 0 0 0 !important;
  color: var(--textColorMain) !important;
}
.flashMessage {
  margin: 20px 0 0 0;
}

@media (max-width: 768px) {
  .communityMain .communityContent {
    display: block !important;
  }
  .communityMain h1.communityTitle {
    font-size: 3rem !important;
  }
  .communityMain .communityNav {
    margin: 0 !important;
    width: 100% !important;
  }
  .communityMain .communityItemHeader,
  .communityMain .communityUrlHeader {
    font-size: 2.8rem !important;
  }
  .communityMain .communityOverview {
    width: 100% !important;
  }
  .communityMain .communityItems {
    grid-template-columns: repeat(2, 1fr);
    gap: 4vh 10px;
  }
  .communityMain #productsLimitedUrl {
    grid-template-columns: repeat(1, 1fr);
    gap: 4vh 0;
  }
  .communityMain #productsLimitedUrl .urlBox {
    width: 100% !important;
  }
}
